FFmpeg
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 int dvb_encode_rle2 (uint8_t **pq, int buf_size, const uint8_t *bitmap, int linesize, int w, int h)
 
static int dvb_encode_rle4 (uint8_t **pq, int buf_size, const uint8_t *bitmap, int linesize, int w, int h)
 
static int dvb_encode_rle8 (uint8_t **pq, int buf_size, const uint8_t *bitmap, int linesize, int w, int h)
 
static int encode_dvb_subtitles (AVCodecContext *avctx, uint8_t *outbuf, int buf_size, 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;\
}\
}
if(ret)
static double val(void *priv, double ch)
Definition: aeval.c:76

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;\
}\
}
if(ret)
static double val(void *priv, double ch)
Definition: aeval.c:76

Definition at line 123 of file dvbsub.c.

Referenced by dvb_encode_rle4().

Function Documentation

static int dvb_encode_rle2 ( uint8_t **  pq,
int  buf_size,
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 int dvb_encode_rle4 ( uint8_t **  pq,
int  buf_size,
const uint8_t bitmap,
int  linesize,
int  w,
int  h 
)
static

Definition at line 135 of file dvbsub.c.

Referenced by encode_dvb_subtitles().

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

Definition at line 210 of file dvbsub.c.

Referenced by encode_dvb_subtitles().

static int encode_dvb_subtitles ( AVCodecContext avctx,
uint8_t outbuf,
int  buf_size,
const AVSubtitle h 
)
static

Definition at line 271 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 512 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:153
static int dvbsub_encode(AVCodecContext *avctx, unsigned char *buf, int buf_size, const AVSubtitle *sub)
Definition: dvbsub.c:512

Definition at line 522 of file dvbsub.c.