30 #define DVBSUB_PAGE_SEGMENT 0x10
31 #define DVBSUB_REGION_SEGMENT 0x11
32 #define DVBSUB_CLUT_SEGMENT 0x12
33 #define DVBSUB_OBJECT_SEGMENT 0x13
34 #define DVBSUB_DISPLAYDEFINITION_SEGMENT 0x14
35 #define DVBSUB_DISPLAY_SEGMENT 0x80
37 #define cm (ff_crop_tab + MAX_NEG_CROP)
39 #define RGBA(r,g,b,a) (((unsigned)(a) << 24) | ((r) << 16) | ((g) << 8) | (b))
142 while (ptr && ptr->
id != object_id) {
153 while (ptr && ptr->
id != clut_id) {
164 while (ptr && ptr->
id != region_id) {
182 obj_disp_ptr = &
object->display_list;
183 obj_disp = *obj_disp_ptr;
185 while (obj_disp && obj_disp != display) {
187 obj_disp = *obj_disp_ptr;
197 while (obj2 !=
object) {
199 obj2_ptr = &obj2->
next;
203 *obj2_ptr = obj2->
next;
255 int i,
r,
g,
b,
a = 0;
279 default_clut.
id = -1;
282 default_clut.
clut4[0] =
RGBA( 0, 0, 0, 0);
283 default_clut.
clut4[1] =
RGBA(255, 255, 255, 255);
284 default_clut.
clut4[2] =
RGBA( 0, 0, 0, 255);
285 default_clut.
clut4[3] =
RGBA(127, 127, 127, 255);
288 for (i = 1; i < 16; i++) {
290 r = (i & 1) ? 255 : 0;
291 g = (i & 2) ? 255 : 0;
292 b = (i & 4) ? 255 : 0;
294 r = (i & 1) ? 127 : 0;
295 g = (i & 2) ? 127 : 0;
296 b = (i & 4) ? 127 : 0;
302 for (i = 1; i < 256; i++) {
304 r = (i & 1) ? 255 : 0;
305 g = (i & 2) ? 255 : 0;
306 b = (i & 4) ? 255 : 0;
311 r = ((i & 1) ? 85 : 0) + ((i & 0x10) ? 170 : 0);
312 g = ((i & 2) ? 85 : 0) + ((i & 0x20) ? 170 : 0);
313 b = ((i & 4) ? 85 : 0) + ((i & 0x40) ? 170 : 0);
317 r = ((i & 1) ? 85 : 0) + ((i & 0x10) ? 170 : 0);
318 g = ((i & 2) ? 85 : 0) + ((i & 0x20) ? 170 : 0);
319 b = ((i & 4) ? 85 : 0) + ((i & 0x40) ? 170 : 0);
323 r = 127 + ((i & 1) ? 43 : 0) + ((i & 0x10) ? 85 : 0);
324 g = 127 + ((i & 2) ? 43 : 0) + ((i & 0x20) ? 85 : 0);
325 b = 127 + ((i & 4) ? 43 : 0) + ((i & 0x40) ? 85 : 0);
329 r = ((i & 1) ? 43 : 0) + ((i & 0x10) ? 85 : 0);
330 g = ((i & 2) ? 43 : 0) + ((i & 0x20) ? 85 : 0);
331 b = ((i & 4) ? 43 : 0) + ((i & 0x40) ? 85 : 0);
366 uint8_t *destbuf,
int dbuf_len,
367 const uint8_t **srcbuf,
int buf_size,
368 int non_mod,
uint8_t *map_table,
int x_pos)
374 int pixels_read = x_pos;
380 while (
get_bits_count(&gb) < buf_size << 3 && pixels_read < dbuf_len) {
384 if (non_mod != 1 || bits != 1) {
386 *destbuf++ = map_table[
bits];
397 if (non_mod == 1 && bits == 1)
398 pixels_read += run_length;
401 bits = map_table[
bits];
402 while (run_length-- > 0 && pixels_read < dbuf_len) {
415 if (non_mod == 1 && bits == 1)
416 pixels_read += run_length;
419 bits = map_table[
bits];
420 while (run_length-- > 0 && pixels_read < dbuf_len) {
425 }
else if (bits == 3) {
429 if (non_mod == 1 && bits == 1)
430 pixels_read += run_length;
433 bits = map_table[
bits];
434 while (run_length-- > 0 && pixels_read < dbuf_len) {
439 }
else if (bits == 1) {
445 while (run_length-- > 0 && pixels_read < dbuf_len) {
474 const uint8_t **srcbuf,
int buf_size,
475 int non_mod,
uint8_t *map_table,
int x_pos)
481 int pixels_read = x_pos;
487 while (
get_bits_count(&gb) < buf_size << 3 && pixels_read < dbuf_len) {
491 if (non_mod != 1 || bits != 1) {
493 *destbuf++ = map_table[
bits];
503 if (run_length == 0) {
515 while (run_length-- > 0 && pixels_read < dbuf_len) {
525 if (non_mod == 1 && bits == 1)
526 pixels_read += run_length;
529 bits = map_table[
bits];
530 while (run_length-- > 0 && pixels_read < dbuf_len) {
541 if (non_mod == 1 && bits == 1)
542 pixels_read += run_length;
545 bits = map_table[
bits];
546 while (run_length-- > 0 && pixels_read < dbuf_len) {
551 }
else if (bits == 3) {
555 if (non_mod == 1 && bits == 1)
556 pixels_read += run_length;
559 bits = map_table[
bits];
560 while (run_length-- > 0 && pixels_read < dbuf_len) {
565 }
else if (bits == 1) {
571 while (run_length-- > 0 && pixels_read < dbuf_len) {
597 uint8_t *destbuf,
int dbuf_len,
598 const uint8_t **srcbuf,
int buf_size,
599 int non_mod,
uint8_t *map_table,
int x_pos)
601 const uint8_t *sbuf_end = (*srcbuf) + buf_size;
604 int pixels_read = x_pos;
608 while (*srcbuf < sbuf_end && pixels_read < dbuf_len) {
612 if (non_mod != 1 || bits != 1) {
614 *destbuf++ = map_table[
bits];
621 run_length = bits & 0x7f;
622 if ((bits & 0x80) == 0) {
623 if (run_length == 0) {
631 if (non_mod == 1 && bits == 1)
632 pixels_read += run_length;
635 bits = map_table[
bits];
636 while (run_length-- > 0 && pixels_read < dbuf_len) {
654 int counttab[256] = {0};
657 #define V(x,y) rect->data[0][(x) + (y)*rect->linesize[0]]
658 for (y = 0; y<
h; y++) {
659 for (x = 0; x<w; x++) {
661 int vl = x ?
V(x-1,y) + 1 : 0;
662 int vr = x+1<w ?
V(x+1,y) + 1 : 0;
663 int vt = y ?
V(x,y-1) + 1 : 0;
664 int vb = y+1<h ?
V(x,y+1) + 1 : 0;
665 counttab[v-1] += !!((v!=vl) + (v!=vr) + (v!=vt) + (v!=vb));
668 #define L(x,y) list[ rect->data[0][(x) + (y)*rect->linesize[0]] ]
670 for (i = 0; i<256; i++) {
671 int scoretab[256] = {0};
674 for (y = 0; y<
h; y++) {
675 for (x = 0; x<w; x++) {
678 int l_l = x ?
L(x-1, y) : 1;
679 int l_r = x+1<w ?
L(x+1, y) : 1;
680 int l_t = y ?
L(x, y-1) : 1;
681 int l_b = y+1<h ?
L(x, y+1) : 1;
685 scoretab[v] += l_l + l_r + l_t + l_b;
686 score = 1024LL*scoretab[v] / counttab[v];
687 if (score > bestscore) {
696 list_inv[ i ] = bestv;
699 count =
FFMAX(i - 1, 1);
700 for (i--; i>=0; i--) {
715 uint32_t *clut_table;
717 int offset_x=0, offset_y=0;
722 offset_x = display_def->
x;
723 offset_y = display_def->
y;
733 if (region && region->
dirty)
744 if (sub->num_rects > 0) {
752 for(i=0; i<sub->num_rects; i++)
753 sub->rects[i] =
av_mallocz(
sizeof(*sub->rects[i]));
757 for (display =
ctx->display_list; display; display = display->next) {
766 rect = sub->rects[i];
767 rect->
x = display->x_pos + offset_x;
768 rect->
y = display->y_pos + offset_y;
769 rect->
w = region->width;
770 rect->
h = region->height;
771 rect->nb_colors = (1 << region->depth);
773 rect->linesize[0] = region->width;
780 switch (region->depth) {
782 clut_table = clut->
clut4;
785 clut_table = clut->clut256;
789 clut_table = clut->clut16;
794 if (!
rect->data[1]) {
798 memcpy(
rect->data[1], clut_table, (1 << region->depth) *
sizeof(uint32_t));
801 if (!
rect->data[0]) {
806 memcpy(
rect->data[0], region->pbuf, region->buf_size);
808 if ((clut == &default_clut &&
ctx->compute_clut == -1) ||
ctx->compute_clut == 1)
815 for (j = 0; j < 4; j++) {
817 rect->pict.linesize[j] =
rect->linesize[j];
830 for(i=0; i<sub->num_rects; i++) {
831 rect = sub->rects[i];
845 const uint8_t *
buf,
int buf_size,
int top_bottom,
int non_mod)
850 const uint8_t *buf_end = buf + buf_size;
855 uint8_t map2to4[] = { 0x0, 0x7, 0x8, 0xf};
856 uint8_t map2to8[] = {0x00, 0x77, 0x88, 0xff};
857 uint8_t map4to8[] = {0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
858 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff};
862 ff_dlog(avctx,
"DVB pixel block size %d, %s field:\n", buf_size,
863 top_bottom ?
"bottom" :
"top");
865 for (i = 0; i < buf_size; i++) {
867 ff_dlog(avctx,
"0x%8p: ", buf+i);
869 ff_dlog(avctx,
"%02x ", buf[i]);
884 x_pos = display->
x_pos;
885 y_pos = display->
y_pos;
889 while (buf < buf_end) {
890 if ((*buf!=0xf0 && x_pos >= region->
width) || y_pos >= region->
height) {
897 if (region->
depth == 8)
899 else if (region->
depth == 4)
905 region->
width, &buf, buf_end - buf,
906 non_mod, map_table, x_pos);
909 if (region->
depth < 4) {
914 if (region->
depth == 8)
920 region->
width, &buf, buf_end - buf,
921 non_mod, map_table, x_pos);
924 if (region->
depth < 8) {
930 region->
width, &buf, buf_end - buf,
931 non_mod,
NULL, x_pos);
935 map2to4[0] = (*buf) >> 4;
936 map2to4[1] = (*buf++) & 0xf;
937 map2to4[2] = (*buf) >> 4;
938 map2to4[3] = (*buf++) & 0xf;
941 for (i = 0; i < 4; i++)
945 for (i = 0; i < 16; i++)
950 x_pos = display->
x_pos;
965 const uint8_t *buf_end = buf + buf_size;
969 int top_field_len, bottom_field_len;
971 int coding_method, non_modifying_color;
981 coding_method = ((*buf) >> 2) & 3;
982 non_modifying_color = ((*buf++) >> 1) & 1;
984 if (coding_method == 0) {
987 bottom_field_len =
AV_RB16(buf);
990 if (buf + top_field_len + bottom_field_len > buf_end) {
991 av_log(avctx,
AV_LOG_ERROR,
"Field data size %d+%d too large\n", top_field_len, bottom_field_len);
997 int bfl = bottom_field_len;
1000 non_modifying_color);
1002 if (bottom_field_len > 0)
1003 block = buf + top_field_len;
1005 bfl = top_field_len;
1008 non_modifying_color);
1025 const uint8_t *buf_end = buf + buf_size;
1029 int entry_id, depth , full_range;
1031 int r,
g,
b, r_add, g_add, b_add;
1033 ff_dlog(avctx,
"DVB clut packet:\n");
1035 for (i=0; i < buf_size; i++) {
1036 ff_dlog(avctx,
"%02x ", buf[i]);
1045 version = ((*buf)>>4)&15;
1055 memcpy(clut, &default_clut,
sizeof(
DVBSubCLUT));
1064 if (clut->
version != version) {
1068 while (buf + 4 < buf_end) {
1071 depth = (*buf) & 0xe0;
1077 full_range = (*buf++) & 1;
1086 cr = (((buf[0] & 3) << 2) | ((buf[1] >> 6) & 3)) << 4;
1087 cb = (buf[1] << 2) & 0xf0;
1088 alpha = (buf[1] << 6) & 0xc0;
1099 ff_dlog(avctx,
"clut %d := (%d,%d,%d,%d)\n", entry_id, r, g, b, alpha);
1100 if (!!(depth & 0x80) + !!(depth & 0x40) + !!(depth & 0x20) > 1) {
1101 ff_dlog(avctx,
"More than one bit level marked: %x\n", depth);
1106 if (depth & 0x80 && entry_id < 4)
1107 clut->
clut4[entry_id] =
RGBA(r,g,b,255 - alpha);
1108 else if (depth & 0x40 && entry_id < 16)
1109 clut->
clut16[entry_id] =
RGBA(r,g,b,255 - alpha);
1110 else if (depth & 0x20)
1111 clut->
clut256[entry_id] =
RGBA(r,g,b,255 - alpha);
1124 const uint8_t *buf_end = buf + buf_size;
1125 int region_id, object_id;
1145 region->
id = region_id;
1152 version = ((*buf)>>4) & 15;
1153 fill = ((*buf++) >> 3) & 1;
1161 if (ret >= 0 && region->
width * region->
height * 2 > 320 * 1024 * 8) {
1176 if (!region->
pbuf) {
1187 region->
depth = 1 << (((*buf++) >> 2) & 7);
1192 region->
clut = *buf++;
1194 if (region->
depth == 8) {
1200 if (region->
depth == 4)
1201 region->
bgcolor = (((*buf++) >> 4) & 15);
1203 region->
bgcolor = (((*buf++) >> 2) & 3);
1215 while (buf + 5 < buf_end) {
1226 object->id = object_id;
1231 object->
type = (*buf) >> 6;
1245 if ((object->
type == 1 || object->
type == 2) && buf+1 < buf_end) {
1254 object->display_list = display;
1267 const uint8_t *buf_end = buf + buf_size;
1277 version = ((*buf)>>4) & 15;
1278 page_state = ((*buf++) >> 2) & 3;
1280 if (ctx->
version == version) {
1287 ff_dlog(avctx,
"Page time out %ds, state %d\n", ctx->
time_out, page_state);
1292 if (page_state == 1 || page_state == 2) {
1301 while (buf + 5 < buf_end) {
1306 while (display && display->
region_id != region_id) {
1307 display = display->
next;
1314 display = tmp_display_list;
1315 tmp_ptr = &tmp_display_list;
1317 while (display && display->
region_id != region_id) {
1318 tmp_ptr = &display->
next;
1319 display = display->
next;
1335 *tmp_ptr = display->
next;
1340 ff_dlog(avctx,
"Region %d, (%d,%d)\n", region_id, display->
x_pos, display->
y_pos);
1343 while (tmp_display_list) {
1344 display = tmp_display_list;
1346 tmp_display_list = display->
next;
1356 static void png_save(
DVBSubContext *
ctx,
const char *filename, uint32_t *bitmap,
int w,
int h)
1360 char fname[40], fname2[40];
1363 snprintf(fname,
sizeof(fname),
"%s.ppm", filename);
1365 f = fopen(fname,
"w");
1374 for(y = 0; y <
h; y++) {
1375 for(x = 0; x < w; x++) {
1376 v = bitmap[y * w + x];
1377 putc((v >> 16) & 0xff, f);
1378 putc((v >> 8) & 0xff, f);
1379 putc((v >> 0) & 0xff, f);
1385 snprintf(fname2,
sizeof(fname2),
"%s-a.pgm", filename);
1387 f = fopen(fname2,
"w");
1396 for(y = 0; y <
h; y++) {
1397 for(x = 0; x < w; x++) {
1398 v = bitmap[y * w + x];
1399 putc((v >> 24) & 0xff, f);
1404 snprintf(command,
sizeof(command),
"pnmtopng -alpha %s %s > %s.png 2> /dev/null", fname2, fname, filename);
1405 if (system(command) != 0) {
1410 snprintf(command,
sizeof(command),
"rm %s %s", fname, fname2);
1411 if (system(command) != 0) {
1422 uint32_t *clut_table;
1424 int x, y, y_off, x_off;
1427 static int fileno_index = 0;
1441 x_pos = display->
x_pos;
1442 y_pos = display->
y_pos;
1443 width = region->
width;
1446 if (display->
x_pos < x_pos) {
1447 width += (x_pos - display->
x_pos);
1448 x_pos = display->
x_pos;
1451 if (display->
y_pos < y_pos) {
1452 height += (y_pos - display->
y_pos);
1453 y_pos = display->
y_pos;
1456 if (display->
x_pos + region->
width > x_pos + width) {
1457 width = display->
x_pos + region->
width - x_pos;
1460 if (display->
y_pos + region->
height > y_pos + height) {
1478 x_off = display->
x_pos - x_pos;
1479 y_off = display->
y_pos - y_pos;
1486 switch (region->
depth) {
1488 clut_table = clut->
clut4;
1495 clut_table = clut->
clut16;
1499 for (y = 0; y < region->
height; y++) {
1500 for (x = 0; x < region->
width; x++) {
1501 pbuf[((y + y_off) * width) + x_off + x] =
1502 clut_table[region->
pbuf[y * region->
width + x]];
1508 snprintf(filename,
sizeof(filename),
"dvbs.%d", fileno_index);
1510 png_save(ctx, filename, pbuf, width, height);
1526 int dds_version, info_byte;
1531 info_byte = bytestream_get_byte(&buf);
1532 dds_version = info_byte >> 4;
1533 if (display_def && display_def->
version == dds_version)
1537 display_def =
av_mallocz(
sizeof(*display_def));
1543 display_def->
version = dds_version;
1546 display_def->
width = bytestream_get_be16(&buf) + 1;
1547 display_def->
height = bytestream_get_be16(&buf) + 1;
1553 if (info_byte & 1<<3) {
1557 display_def->
x = bytestream_get_be16(&buf);
1558 display_def->
width = bytestream_get_be16(&buf) - display_def->
x + 1;
1559 display_def->
y = bytestream_get_be16(&buf);
1560 display_def->
height = bytestream_get_be16(&buf) - display_def->
y + 1;
1567 int buf_size,
AVSubtitle *sub,
int *got_output)
1574 save_display_set(ctx);
1580 void *
data,
int *data_size,
1584 int buf_size = avpkt->
size;
1593 int got_segment = 0;
1596 ff_dlog(avctx,
"DVB sub packet:\n");
1598 for (i=0; i < buf_size; i++) {
1599 ff_dlog(avctx,
"%02x ", buf[i]);
1607 if (buf_size <= 6 || *buf != 0x0f) {
1608 ff_dlog(avctx,
"incomplete or broken packet");
1613 p_end = buf + buf_size;
1615 while (p_end - p >= 6 && *p == 0x0f) {
1617 segment_type = *p++;
1624 av_log(avctx,
AV_LOG_DEBUG,
"segment_type:%d page_id:%d segment_length:%d\n", segment_type, page_id, segment_length);
1627 if (p_end - p < segment_length) {
1628 ff_dlog(avctx,
"incomplete or broken packet");
1636 switch (segment_type) {
1647 if (ret < 0)
goto end;
1661 if (got_segment == 15 && !got_dds && !avctx->
width && !avctx->
height) {
1669 ff_dlog(avctx,
"Subtitling segment type 0x%x, page id %d, length %d\n",
1670 segment_type, page_id, segment_length);
1677 p += segment_length;
1681 if (got_segment == 15) {
1699 #define DS AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_SUBTITLE_PARAM
1702 {
"compute_clut",
"compute clut when not available(-1) or always(1) or never(0)", offsetof(
DVBSubContext, compute_clut),
AV_OPT_TYPE_BOOL, {.i64 = -1}, -1, 1,
DS},
1722 .priv_class = &dvbsubdec_class,
static DVBSubCLUT * get_clut(DVBSubContext *ctx, int clut_id)
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
static float alpha(float a)
static int dvbsub_read_8bit_string(AVCodecContext *avctx, uint8_t *destbuf, int dbuf_len, const uint8_t **srcbuf, int buf_size, int non_mod, uint8_t *map_table, int x_pos)
static void dvbsub_parse_pixel_data_block(AVCodecContext *avctx, DVBSubObjectDisplay *display, const uint8_t *buf, int buf_size, int top_bottom, int non_mod)
static DVBSubRegion * get_region(DVBSubContext *ctx, int region_id)
ptrdiff_t const GLvoid * data
DVBSubRegionDisplay * display_list
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
#define AV_LOG_WARNING
Something somehow does not look correct.
#define LIBAVUTIL_VERSION_INT
#define YUV_TO_RGB1_CCIR(cb1, cr1)
static av_cold int init(AVCodecContext *avctx)
Various defines for YUV<->RGB conversion.
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
static int dvbsub_parse_page_segment(AVCodecContext *avctx, const uint8_t *buf, int buf_size, AVSubtitle *sub, int *got_output)
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_WB24 unsigned int_TMPL AV_RB16
static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, FILE *outfile)
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
#define av_assert0(cond)
assert() equivalent, that is always enabled.
static double cb(void *priv, double x, double y)
void void avpriv_request_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
static int dvbsub_read_4bit_string(AVCodecContext *avctx, uint8_t *destbuf, int dbuf_len, const uint8_t **srcbuf, int buf_size, int non_mod, uint8_t *map_table, int x_pos)
static void delete_cluts(DVBSubContext *ctx)
8 bits with AV_PIX_FMT_RGB32 palette
static av_cold int end(AVCodecContext *avctx)
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
static const AVClass dvbsubdec_class
static int get_bits_count(const GetBitContext *s)
bitstream reader API header.
DVBSubRegion * region_list
static void delete_regions(DVBSubContext *ctx)
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
#define DVBSUB_DISPLAYDEFINITION_SEGMENT
struct DVBSubRegion * next
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
static DVBSubCLUT default_clut
static int dvbsub_parse_display_definition_segment(AVCodecContext *avctx, const uint8_t *buf, int buf_size)
const char * name
Name of the codec implementation.
int64_t max_pixels
The number of pixels per image to maximally accept.
static void * av_mallocz_array(size_t nmemb, size_t size)
uint32_t end_display_time
int64_t pts
Same as packet pts, in AV_TIME_BASE.
struct DVBSubObject * next
AVCodec ff_dvbsub_decoder
A bitmap, pict will be set.
DVBSubObjectDisplay * display_list
struct DVBSubObjectDisplay * region_list_next
int width
picture width / height.
static int dvbsub_parse_clut_segment(AVCodecContext *avctx, const uint8_t *buf, int buf_size)
static int save_subtitle_set(AVCodecContext *avctx, AVSubtitle *sub, int *got_output)
DVBSubObjectDisplay * display_list
static void delete_objects(DVBSubContext *ctx)
DVBSubDisplayDefinition * display_definition
uint8_t * data[4]
data+linesize for the bitmap of this subtitle.
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
#define AV_LOG_INFO
Standard information.
#define DVBSUB_CLUT_SEGMENT
Libavcodec external API header.
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
main external API structure.
static int dvbsub_display_end_segment(AVCodecContext *avctx, const uint8_t *buf, int buf_size, AVSubtitle *sub, int *got_output)
static int command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
void avsubtitle_free(AVSubtitle *sub)
Free all allocated data in the given subtitle struct.
static DVBSubObject * get_object(DVBSubContext *ctx, int object_id)
static unsigned int get_bits1(GetBitContext *s)
static void delete_region_display_list(DVBSubContext *ctx, DVBSubRegion *region)
Describe the class of an AVClass context structure.
#define DVBSUB_DISPLAY_SEGMENT
struct DVBSubRegionDisplay * next
#define FF_COMPLIANCE_NORMAL
Rational number (pair of numerator and denominator).
#define YUV_TO_RGB2_CCIR(r, g, b, y1)
struct DVBSubObjectDisplay * object_list_next
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
#define DVBSUB_PAGE_SEGMENT
static av_cold int dvbsub_init_decoder(AVCodecContext *avctx)
static const AVOption options[]
static void compute_default_clut(AVSubtitleRect *rect, int w, int h)
#define DVBSUB_REGION_SEGMENT
#define FF_DISABLE_DEPRECATION_WARNINGS
common internal api header.
static int dvbsub_decode(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt)
int av_image_check_size2(unsigned int w, unsigned int h, int64_t max_pixels, enum AVPixelFormat pix_fmt, int log_offset, void *log_ctx)
Check if the given dimension of an image is valid, meaning that all bytes of a plane of an image with...
#define FF_DEBUG_STARTCODE
#define FF_ENABLE_DEPRECATION_WARNINGS
static int dvbsub_parse_object_segment(AVCodecContext *avctx, const uint8_t *buf, int buf_size)
DVBSubObject * object_list
static int dvbsub_read_2bit_string(AVCodecContext *avctx, uint8_t *destbuf, int dbuf_len, const uint8_t **srcbuf, int buf_size, int non_mod, uint8_t *map_table, int x_pos)
static int dvbsub_parse_region_segment(AVCodecContext *avctx, const uint8_t *buf, int buf_size)
#define FFSWAP(type, a, b)
int compute_edt
if 1 end display time calculated using pts if 0 (Default) calculated using time out ...
#define DVBSUB_OBJECT_SEGMENT
static double cr(void *priv, double x, double y)
static av_cold int dvbsub_close_decoder(AVCodecContext *avctx)
This structure stores compressed data.
int strict_std_compliance
strictly follow the standard (MPEG-4, ...).
#define AV_NOPTS_VALUE
Undefined timestamp value.