FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
dvbsub.c File Reference
#include "avcodec.h"
#include "bytestream.h"
#include "libavutil/colorspace.h"

Go to the source code of this file.

Data Structures

struct  DVBSubtitleContext
 

Macros

#define PUTBITS2(val)
 
#define PUTBITS4(val)
 

Functions

static void dvb_encode_rle2 (uint8_t **pq, const uint8_t *bitmap, int linesize, int w, int h)
 
static void dvb_encode_rle4 (uint8_t **pq, const uint8_t *bitmap, int linesize, int w, int h)
 
static void dvb_encode_rle8 (uint8_t **pq, const uint8_t *bitmap, int linesize, int w, int h)
 
static int encode_dvb_subtitles (DVBSubtitleContext *s, uint8_t *outbuf, const AVSubtitle *h)
 
static int dvbsub_encode (AVCodecContext *avctx, unsigned char *buf, int buf_size, const AVSubtitle *sub)
 

Variables

AVCodec ff_dvbsub_encoder
 

Macro Definition Documentation

#define PUTBITS2 (   val)
Value:
{\
bitbuf |= (val) << bitcnt;\
bitcnt -= 2;\
if (bitcnt < 0) {\
bitcnt = 6;\
*q++ = bitbuf;\
bitbuf = 0;\
}\
}
const char const char void * val
Definition: avisynth_c.h:771
if(ret< 0)
Definition: vf_mcdeint.c:282

Definition at line 29 of file dvbsub.c.

Referenced by dvb_encode_rle2().

#define PUTBITS4 (   val)
Value:
{\
bitbuf |= (val) << bitcnt;\
bitcnt -= 4;\
if (bitcnt < 0) {\
bitcnt = 4;\
*q++ = bitbuf;\
bitbuf = 0;\
}\
}
const char const char void * val
Definition: avisynth_c.h:771
if(ret< 0)
Definition: vf_mcdeint.c:282

Definition at line 116 of file dvbsub.c.

Referenced by dvb_encode_rle4().

Function Documentation

static void dvb_encode_rle2 ( uint8_t **  pq,
const uint8_t bitmap,
int  linesize,
int  w,
int  h 
)
static

Definition at line 40 of file dvbsub.c.

Referenced by encode_dvb_subtitles().

static void dvb_encode_rle4 ( uint8_t **  pq,
const uint8_t bitmap,
int  linesize,
int  w,
int  h 
)
static

Definition at line 128 of file dvbsub.c.

Referenced by encode_dvb_subtitles().

static void dvb_encode_rle8 ( uint8_t **  pq,
const uint8_t bitmap,
int  linesize,
int  w,
int  h 
)
static

Definition at line 196 of file dvbsub.c.

Referenced by encode_dvb_subtitles().

static int encode_dvb_subtitles ( DVBSubtitleContext s,
uint8_t outbuf,
const AVSubtitle h 
)
static

Definition at line 250 of file dvbsub.c.

Referenced by dvbsub_encode().

static int dvbsub_encode ( AVCodecContext avctx,
unsigned char *  buf,
int  buf_size,
const AVSubtitle sub 
)
static

Definition at line 442 of file dvbsub.c.

Variable Documentation

AVCodec ff_dvbsub_encoder
Initial value:
= {
.name = "dvbsub",
.long_name = NULL_IF_CONFIG_SMALL("DVB subtitles"),
.priv_data_size = sizeof(DVBSubtitleContext),
.encode_sub = dvbsub_encode,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
static int dvbsub_encode(AVCodecContext *avctx, unsigned char *buf, int buf_size, const AVSubtitle *sub)
Definition: dvbsub.c:442

Definition at line 453 of file dvbsub.c.