Go to the source code of this file.
|
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 | dvbsub_encode (AVCodecContext *avctx, uint8_t *outbuf, int buf_size, const AVSubtitle *h) |
|
◆ PUTBITS2
Value:{\
bitbuf |= (
val) << bitcnt;\
bitcnt -= 2;\
if (bitcnt < 0) {\
bitcnt = 6;\
*q++ = bitbuf;\
bitbuf = 0;\
}\
}
Definition at line 30 of file dvbsubenc.c.
◆ PUTBITS4
Value:{\
bitbuf |= (
val) << bitcnt;\
bitcnt -= 4;\
if (bitcnt < 0) {\
bitcnt = 4;\
*q++ = bitbuf;\
bitbuf = 0;\
}\
}
Definition at line 124 of file dvbsubenc.c.
◆ dvb_encode_rle2()
static int dvb_encode_rle2 |
( |
uint8_t ** |
pq, |
|
|
int |
buf_size, |
|
|
const uint8_t * |
bitmap, |
|
|
int |
linesize, |
|
|
int |
w, |
|
|
int |
h |
|
) |
| |
|
static |
◆ dvb_encode_rle4()
static int dvb_encode_rle4 |
( |
uint8_t ** |
pq, |
|
|
int |
buf_size, |
|
|
const uint8_t * |
bitmap, |
|
|
int |
linesize, |
|
|
int |
w, |
|
|
int |
h |
|
) |
| |
|
static |
◆ dvb_encode_rle8()
static int dvb_encode_rle8 |
( |
uint8_t ** |
pq, |
|
|
int |
buf_size, |
|
|
const uint8_t * |
bitmap, |
|
|
int |
linesize, |
|
|
int |
w, |
|
|
int |
h |
|
) |
| |
|
static |
◆ dvbsub_encode()
◆ ff_dvbsub_encoder
Initial value:= {
.p.name = "dvbsub",
}
Definition at line 509 of file dvbsubenc.c.