Go to the source code of this file.
|
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 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) |
|
§ PUTBITS2
Value:{\
bitbuf |= (val) << bitcnt;\
bitcnt -= 2;\
if (bitcnt < 0) {\
bitcnt = 6;\
*q++ = bitbuf;\
bitbuf = 0;\
}\
}
Definition at line 30 of file dvbsub.c.
Referenced by dvb_encode_rle2().
§ PUTBITS4
Value:{\
bitbuf |= (val) << bitcnt;\
bitcnt -= 4;\
if (bitcnt < 0) {\
bitcnt = 4;\
*q++ = bitbuf;\
bitbuf = 0;\
}\
}
Definition at line 117 of file dvbsub.c.
Referenced by dvb_encode_rle4().
§ dvb_encode_rle2()
static void dvb_encode_rle2 |
( |
uint8_t ** |
pq, |
|
|
const uint8_t * |
bitmap, |
|
|
int |
linesize, |
|
|
int |
w, |
|
|
int |
h |
|
) |
| |
|
static |
§ dvb_encode_rle4()
static void dvb_encode_rle4 |
( |
uint8_t ** |
pq, |
|
|
const uint8_t * |
bitmap, |
|
|
int |
linesize, |
|
|
int |
w, |
|
|
int |
h |
|
) |
| |
|
static |
§ encode_dvb_subtitles()
§ dvbsub_encode()
§ ff_dvbsub_encoder
Initial value:= {
.name = "dvbsub",
}
static int dvbsub_encode(AVCodecContext *avctx, unsigned char *buf, int buf_size, const AVSubtitle *sub)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition at line 405 of file dvbsub.c.