29 #define DVBSUB_PAGE_SEGMENT     0x10 
   30 #define DVBSUB_REGION_SEGMENT   0x11 
   31 #define DVBSUB_CLUT_SEGMENT     0x12 
   32 #define DVBSUB_OBJECT_SEGMENT   0x13 
   33 #define DVBSUB_DISPLAYDEFINITION_SEGMENT 0x14 
   34 #define DVBSUB_DISPLAY_SEGMENT  0x80 
   36 #define cm (ff_crop_tab + MAX_NEG_CROP) 
   40 static void png_save(
const char *filename, 
uint8_t *bitmap, 
int w, 
int h,
 
   41                      uint32_t *rgba_palette)
 
   45     char fname[40], fname2[40];
 
   48     snprintf(fname, 40, 
"%s.ppm", filename);
 
   50     f = fopen(fname, 
"w");
 
   59     for(y = 0; y < 
h; y++) {
 
   60         for(x = 0; x < w; x++) {
 
   61             v = rgba_palette[bitmap[y * w + x]];
 
   62             putc((v >> 16) & 0xff, f);
 
   63             putc((v >> 8) & 0xff, f);
 
   64             putc((v >> 0) & 0xff, f);
 
   70     snprintf(fname2, 40, 
"%s-a.pgm", filename);
 
   72     f = fopen(fname2, 
"w");
 
   81     for(y = 0; y < 
h; y++) {
 
   82         for(x = 0; x < w; x++) {
 
   83             v = rgba_palette[bitmap[y * w + x]];
 
   84             putc((v >> 24) & 0xff, f);
 
   89     snprintf(command, 1024, 
"pnmtopng -alpha %s %s > %s.png 2> /dev/null", fname2, fname, filename);
 
   92     snprintf(command, 1024, 
"rm %s %s", fname, fname2);
 
   97 static void png_save2(
const char *filename, uint32_t *bitmap, 
int w, 
int h)
 
  101     char fname[40], fname2[40];
 
  104     snprintf(fname, 
sizeof(fname), 
"%s.ppm", filename);
 
  106     f = fopen(fname, 
"w");
 
  115     for(y = 0; y < 
h; y++) {
 
  116         for(x = 0; x < w; x++) {
 
  117             v = bitmap[y * w + x];
 
  118             putc((v >> 16) & 0xff, f);
 
  119             putc((v >> 8) & 0xff, f);
 
  120             putc((v >> 0) & 0xff, f);
 
  126     snprintf(fname2, 
sizeof(fname2), 
"%s-a.pgm", filename);
 
  128     f = fopen(fname2, 
"w");
 
  137     for(y = 0; y < 
h; y++) {
 
  138         for(x = 0; x < w; x++) {
 
  139             v = bitmap[y * w + x];
 
  140             putc((v >> 24) & 0xff, f);
 
  145     snprintf(command, 
sizeof(command), 
"pnmtopng -alpha %s %s > %s.png 2> /dev/null", fname2, fname, filename);
 
  148     snprintf(command, 
sizeof(command), 
"rm %s %s", fname, fname2);
 
  153 #define RGBA(r,g,b,a) (((unsigned)(a) << 24) | ((r) << 16) | ((g) << 8) | (b)) 
  256     while (ptr && ptr->
id != object_id) {
 
  267     while (ptr && ptr->
id != clut_id) {
 
  278     while (ptr && ptr->
id != region_id) {
 
  296             obj_disp_ptr = &
object->display_list;
 
  297             obj_disp = *obj_disp_ptr;
 
  299             while (obj_disp && obj_disp != display) {
 
  301                 obj_disp = *obj_disp_ptr;
 
  311                     while (obj2 != 
object) {
 
  313                         obj2_ptr = &obj2->
next;
 
  317                     *obj2_ptr = obj2->
next;
 
  369     int i, 
r, 
g, 
b, 
a = 0;
 
  393     default_clut.
id = -1;
 
  396     default_clut.
clut4[0] = 
RGBA(  0,   0,   0,   0);
 
  397     default_clut.
clut4[1] = 
RGBA(255, 255, 255, 255);
 
  398     default_clut.
clut4[2] = 
RGBA(  0,   0,   0, 255);
 
  399     default_clut.
clut4[3] = 
RGBA(127, 127, 127, 255);
 
  402     for (i = 1; i < 16; i++) {
 
  404             r = (i & 1) ? 255 : 0;
 
  405             g = (i & 2) ? 255 : 0;
 
  406             b = (i & 4) ? 255 : 0;
 
  408             r = (i & 1) ? 127 : 0;
 
  409             g = (i & 2) ? 127 : 0;
 
  410             b = (i & 4) ? 127 : 0;
 
  416     for (i = 1; i < 256; i++) {
 
  418             r = (i & 1) ? 255 : 0;
 
  419             g = (i & 2) ? 255 : 0;
 
  420             b = (i & 4) ? 255 : 0;
 
  425                 r = ((i & 1) ? 85 : 0) + ((i & 0x10) ? 170 : 0);
 
  426                 g = ((i & 2) ? 85 : 0) + ((i & 0x20) ? 170 : 0);
 
  427                 b = ((i & 4) ? 85 : 0) + ((i & 0x40) ? 170 : 0);
 
  431                 r = ((i & 1) ? 85 : 0) + ((i & 0x10) ? 170 : 0);
 
  432                 g = ((i & 2) ? 85 : 0) + ((i & 0x20) ? 170 : 0);
 
  433                 b = ((i & 4) ? 85 : 0) + ((i & 0x40) ? 170 : 0);
 
  437                 r = 127 + ((i & 1) ? 43 : 0) + ((i & 0x10) ? 85 : 0);
 
  438                 g = 127 + ((i & 2) ? 43 : 0) + ((i & 0x20) ? 85 : 0);
 
  439                 b = 127 + ((i & 4) ? 43 : 0) + ((i & 0x40) ? 85 : 0);
 
  443                 r = ((i & 1) ? 43 : 0) + ((i & 0x10) ? 85 : 0);
 
  444                 g = ((i & 2) ? 43 : 0) + ((i & 0x20) ? 85 : 0);
 
  445                 b = ((i & 4) ? 43 : 0) + ((i & 0x40) ? 85 : 0);
 
  480                                    uint8_t *destbuf, 
int dbuf_len,
 
  481                                    const uint8_t **srcbuf, 
int buf_size,
 
  482                                    int non_mod, 
uint8_t *map_table, 
int x_pos)
 
  488     int pixels_read = x_pos;
 
  494     while (
get_bits_count(&gb) < buf_size << 3 && pixels_read < dbuf_len) {
 
  498             if (non_mod != 1 || bits != 1) {
 
  500                     *destbuf++ = map_table[
bits];
 
  511                 if (non_mod == 1 && bits == 1)
 
  512                     pixels_read += run_length;
 
  515                         bits = map_table[
bits];
 
  516                     while (run_length-- > 0 && pixels_read < dbuf_len) {
 
  529                         if (non_mod == 1 && bits == 1)
 
  530                             pixels_read += run_length;
 
  533                                 bits = map_table[
bits];
 
  534                             while (run_length-- > 0 && pixels_read < dbuf_len) {
 
  539                     } 
else if (bits == 3) {
 
  543                         if (non_mod == 1 && bits == 1)
 
  544                             pixels_read += run_length;
 
  547                                 bits = map_table[
bits];
 
  548                             while (run_length-- > 0 && pixels_read < dbuf_len) {
 
  553                     } 
else if (bits == 1) {
 
  559                         while (run_length-- > 0 && pixels_read < dbuf_len) {
 
  588                                    const uint8_t **srcbuf, 
int buf_size,
 
  589                                    int non_mod, 
uint8_t *map_table, 
int x_pos)
 
  595     int pixels_read = x_pos;
 
  601     while (
get_bits_count(&gb) < buf_size << 3 && pixels_read < dbuf_len) {
 
  605             if (non_mod != 1 || bits != 1) {
 
  607                     *destbuf++ = map_table[
bits];
 
  617                 if (run_length == 0) {
 
  629                 while (run_length-- > 0 && pixels_read < dbuf_len) {
 
  639                     if (non_mod == 1 && bits == 1)
 
  640                         pixels_read += run_length;
 
  643                             bits = map_table[
bits];
 
  644                         while (run_length-- > 0 && pixels_read < dbuf_len) {
 
  655                         if (non_mod == 1 && bits == 1)
 
  656                             pixels_read += run_length;
 
  659                                 bits = map_table[
bits];
 
  660                             while (run_length-- > 0 && pixels_read < dbuf_len) {
 
  665                     } 
else if (bits == 3) {
 
  669                         if (non_mod == 1 && bits == 1)
 
  670                             pixels_read += run_length;
 
  673                                 bits = map_table[
bits];
 
  674                             while (run_length-- > 0 && pixels_read < dbuf_len) {
 
  679                     } 
else if (bits == 1) {
 
  685                         while (run_length-- > 0 && pixels_read < dbuf_len) {
 
  711                                    uint8_t *destbuf, 
int dbuf_len,
 
  712                                     const uint8_t **srcbuf, 
int buf_size,
 
  713                                     int non_mod, 
uint8_t *map_table, 
int x_pos)
 
  715     const uint8_t *sbuf_end = (*srcbuf) + buf_size;
 
  718     int pixels_read = x_pos;
 
  722     while (*srcbuf < sbuf_end && pixels_read < dbuf_len) {
 
  726             if (non_mod != 1 || bits != 1) {
 
  728                     *destbuf++ = map_table[
bits];
 
  735             run_length = bits & 0x7f;
 
  736             if ((bits & 0x80) == 0) {
 
  737                 if (run_length == 0) {
 
  745             if (non_mod == 1 && bits == 1)
 
  746                 pixels_read += run_length;
 
  749                     bits = map_table[
bits];
 
  750                 while (run_length-- > 0 && pixels_read < dbuf_len) {
 
  768     int counttab[256] = {0};
 
  771 #define V(x,y) rect->data[0][(x) + (y)*rect->linesize[0]] 
  772     for (y = 0; y<
h; y++) {
 
  773         for (x = 0; x<w; x++) {
 
  775             int vl = x     ? 
V(x-1,y) + 1 : 0;
 
  776             int vr = x+1<w ? 
V(x+1,y) + 1 : 0;
 
  777             int vt = y     ? 
V(x,y-1) + 1 : 0;
 
  778             int vb = y+1<h ? 
V(x,y+1) + 1 : 0;
 
  779             counttab[v-1] += !!((v!=vl) + (v!=vr) + (v!=vt) + (v!=vb));
 
  782 #define L(x,y) list[ rect->data[0][(x) + (y)*rect->linesize[0]] ] 
  784     for (i = 0; i<256; i++) {
 
  785         int scoretab[256] = {0};
 
  788         for (y = 0; y<
h; y++) {
 
  789             for (x = 0; x<w; x++) {
 
  792                 int l_l = x     ? 
L(x-1, y) : 1;
 
  793                 int l_r = x+1<w ? 
L(x+1, y) : 1;
 
  794                 int l_t = y     ? 
L(x, y-1) : 1;
 
  795                 int l_b = y+1<h ? 
L(x, y+1) : 1;
 
  799                 scoretab[v] += l_l + l_r + l_t + l_b;
 
  800                 score = 1024LL*scoretab[v] / counttab[v];
 
  801                 if (score > bestscore) {
 
  810         list_inv[     i ] = bestv;
 
  814     for (i--; i>=0; i--) {
 
  829     uint32_t *clut_table;
 
  831     int offset_x=0, offset_y=0;
 
  836         offset_x = display_def->
x;
 
  837         offset_y = display_def->
y;
 
  847         if (region && region->
dirty)
 
  858     if (sub->num_rects > 0) {
 
  866         for(i=0; i<sub->num_rects; i++)
 
  867             sub->rects[i] = 
av_mallocz(
sizeof(*sub->rects[i]));
 
  871         for (display = 
ctx->display_list; display; display = display->next) {
 
  880             rect = sub->rects[i];
 
  881             rect->
x = display->x_pos + offset_x;
 
  882             rect->
y = display->y_pos + offset_y;
 
  883             rect->
w = region->width;
 
  884             rect->
h = region->height;
 
  885             rect->nb_colors = (1 << region->depth);
 
  887             rect->linesize[0] = region->width;
 
  894             switch (region->depth) {
 
  896                 clut_table = clut->
clut4;
 
  899                 clut_table = clut->clut256;
 
  903                 clut_table = clut->clut16;
 
  908             if (!
rect->data[1]) {
 
  912             memcpy(
rect->data[1], clut_table, (1 << region->depth) * 
sizeof(uint32_t));
 
  915             if (!
rect->data[0]) {
 
  920             memcpy(
rect->data[0], region->pbuf, region->buf_size);
 
  922             if ((clut == &default_clut && 
ctx->compute_clut == -1) || 
ctx->compute_clut == 1)
 
  927             for (j = 0; j < 4; j++) {
 
  929                 rect->pict.linesize[j] = 
rect->linesize[j];
 
  941         for(i=0; i<sub->num_rects; i++) {
 
  942             rect = sub->rects[i];
 
  956                                           const uint8_t *
buf, 
int buf_size, 
int top_bottom, 
int non_mod)
 
  961     const uint8_t *buf_end = buf + buf_size;
 
  966     uint8_t map2to4[] = { 0x0,  0x7,  0x8,  0xf};
 
  967     uint8_t map2to8[] = {0x00, 0x77, 0x88, 0xff};
 
  968     uint8_t map4to8[] = {0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
 
  969                          0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff};
 
  973     ff_dlog(avctx, 
"DVB pixel block size %d, %s field:\n", buf_size,
 
  974             top_bottom ? 
"bottom" : 
"top");
 
  976     for (i = 0; i < buf_size; i++) {
 
  978             ff_dlog(avctx, 
"0x%8p: ", buf+i);
 
  980         ff_dlog(avctx, 
"%02x ", buf[i]);
 
  995     x_pos = display->
x_pos;
 
  996     y_pos = display->
y_pos;
 
 1000     while (buf < buf_end) {
 
 1001         if ((*buf!=0xf0 && x_pos >= region->
width) || y_pos >= region->
height) {
 
 1008             if (region->
depth == 8)
 
 1009                 map_table = map2to8;
 
 1010             else if (region->
depth == 4)
 
 1011                 map_table = map2to4;
 
 1016                                             region->
width, &buf, buf_end - buf,
 
 1017                                             non_mod, map_table, x_pos);
 
 1020             if (region->
depth < 4) {
 
 1025             if (region->
depth == 8)
 
 1026                 map_table = map4to8;
 
 1031                                             region->
width, &buf, buf_end - buf,
 
 1032                                             non_mod, map_table, x_pos);
 
 1035             if (region->
depth < 8) {
 
 1041                                             region->
width, &buf, buf_end - buf,
 
 1042                                             non_mod, 
NULL, x_pos);
 
 1046             map2to4[0] = (*buf) >> 4;
 
 1047             map2to4[1] = (*buf++) & 0xf;
 
 1048             map2to4[2] = (*buf) >> 4;
 
 1049             map2to4[3] = (*buf++) & 0xf;
 
 1052             for (i = 0; i < 4; i++)
 
 1053                 map2to8[i] = *buf++;
 
 1056             for (i = 0; i < 16; i++)
 
 1057                 map4to8[i] = *buf++;
 
 1061             x_pos = display->
x_pos;
 
 1076     const uint8_t *buf_end = buf + buf_size;
 
 1080     int top_field_len, bottom_field_len;
 
 1082     int coding_method, non_modifying_color;
 
 1092     coding_method = ((*buf) >> 2) & 3;
 
 1093     non_modifying_color = ((*buf++) >> 1) & 1;
 
 1095     if (coding_method == 0) {
 
 1098         bottom_field_len = 
AV_RB16(buf);
 
 1101         if (buf + top_field_len + bottom_field_len > buf_end) {
 
 1102             av_log(avctx, 
AV_LOG_ERROR, 
"Field data size %d+%d too large\n", top_field_len, bottom_field_len);
 
 1108             int bfl = bottom_field_len;
 
 1111                                             non_modifying_color);
 
 1113             if (bottom_field_len > 0)
 
 1114                 block = buf + top_field_len;
 
 1116                 bfl = top_field_len;
 
 1119                                             non_modifying_color);
 
 1136     const uint8_t *buf_end = buf + buf_size;
 
 1140     int entry_id, 
depth , full_range;
 
 1142     int r, 
g, 
b, r_add, g_add, b_add;
 
 1144     ff_dlog(avctx, 
"DVB clut packet:\n");
 
 1146     for (i=0; i < buf_size; i++) {
 
 1147         ff_dlog(avctx, 
"%02x ", buf[i]);
 
 1156     version = ((*buf)>>4)&15;
 
 1166         memcpy(clut, &default_clut, 
sizeof(
DVBSubCLUT));
 
 1175     if (clut->
version != version) {
 
 1179     while (buf + 4 < buf_end) {
 
 1182         depth = (*buf) & 0xe0;
 
 1188         full_range = (*buf++) & 1;
 
 1197             cr = (((buf[0] & 3) << 2) | ((buf[1] >> 6) & 3)) << 4;
 
 1198             cb = (buf[1] << 2) & 0xf0;
 
 1199             alpha = (buf[1] << 6) & 0xc0;
 
 1210         ff_dlog(avctx, 
"clut %d := (%d,%d,%d,%d)\n", entry_id, r, g, b, alpha);
 
 1211         if (!!(depth & 0x80) + !!(depth & 0x40) + !!(depth & 0x20) > 1) {
 
 1212             ff_dlog(avctx, 
"More than one bit level marked: %x\n", depth);
 
 1218             clut->
clut4[entry_id] = 
RGBA(r,g,b,255 - alpha);
 
 1219         else if (depth & 0x40)
 
 1220             clut->
clut16[entry_id] = 
RGBA(r,g,b,255 - alpha);
 
 1221         else if (depth & 0x20)
 
 1222             clut->
clut256[entry_id] = 
RGBA(r,g,b,255 - alpha);
 
 1235     const uint8_t *buf_end = buf + buf_size;
 
 1236     int region_id, object_id;
 
 1255         region->
id = region_id;
 
 1262     version = ((*buf)>>4) & 15;
 
 1263     fill = ((*buf++) >> 3) & 1;
 
 1276         if (!region->
pbuf) {
 
 1287     region->
depth = 1 << (((*buf++) >> 2) & 7);
 
 1292     region->
clut = *buf++;
 
 1294     if (region->
depth == 8) {
 
 1300         if (region->
depth == 4)
 
 1301             region->
bgcolor = (((*buf++) >> 4) & 15);
 
 1303             region->
bgcolor = (((*buf++) >> 2) & 3);
 
 1315     while (buf + 5 < buf_end) {
 
 1326             object->id = object_id;
 
 1331         object->
type = (*buf) >> 6;
 
 1345         if ((object->
type == 1 || object->
type == 2) && buf+1 < buf_end) {
 
 1354         object->display_list = display;
 
 1367     const uint8_t *buf_end = buf + buf_size;
 
 1377     version = ((*buf)>>4) & 15;
 
 1378     page_state = ((*buf++) >> 2) & 3;
 
 1380     if (ctx->
version == version) {
 
 1387     ff_dlog(avctx, 
"Page time out %ds, state %d\n", ctx->
time_out, page_state);
 
 1392     if (page_state == 1 || page_state == 2) {
 
 1401     while (buf + 5 < buf_end) {
 
 1405         display = tmp_display_list;
 
 1406         tmp_ptr = &tmp_display_list;
 
 1408         while (display && display->
region_id != region_id) {
 
 1409             tmp_ptr = &display->
next;
 
 1410             display = display->
next;
 
 1426         *tmp_ptr = display->
next;
 
 1431         ff_dlog(avctx, 
"Region %d, (%d,%d)\n", region_id, display->
x_pos, display->
y_pos);
 
 1434     while (tmp_display_list) {
 
 1435         display = tmp_display_list;
 
 1437         tmp_display_list = display->
next;
 
 1452     uint32_t *clut_table;
 
 1454     int x, y, y_off, x_off;
 
 1457     static int fileno_index = 0;
 
 1471             x_pos = display->
x_pos;
 
 1472             y_pos = display->
y_pos;
 
 1473             width = region->
width;
 
 1476             if (display->
x_pos < x_pos) {
 
 1477                 width += (x_pos - display->
x_pos);
 
 1478                 x_pos = display->
x_pos;
 
 1481             if (display->
y_pos < y_pos) {
 
 1482                 height += (y_pos - display->
y_pos);
 
 1483                 y_pos = display->
y_pos;
 
 1486             if (display->
x_pos + region->
width > x_pos + width) {
 
 1487                 width = display->
x_pos + region->
width - x_pos;
 
 1490             if (display->
y_pos + region->
height > y_pos + height) {
 
 1508             x_off = display->
x_pos - x_pos;
 
 1509             y_off = display->
y_pos - y_pos;
 
 1516             switch (region->
depth) {
 
 1518                 clut_table = clut->
clut4;
 
 1525                 clut_table = clut->
clut16;
 
 1529             for (y = 0; y < region->
height; y++) {
 
 1530                 for (x = 0; x < region->
width; x++) {
 
 1531                     pbuf[((y + y_off) * width) + x_off + x] =
 
 1532                         clut_table[region->
pbuf[y * region->
width + x]];
 
 1538         snprintf(filename, 
sizeof(filename), 
"dvbs.%d", fileno_index);
 
 1540         png_save2(filename, pbuf, width, height);
 
 1556     int dds_version, info_byte;
 
 1561     info_byte   = bytestream_get_byte(&buf);
 
 1562     dds_version = info_byte >> 4;
 
 1563     if (display_def && display_def->
version == dds_version)
 
 1567         display_def             = 
av_mallocz(
sizeof(*display_def));
 
 1573     display_def->
version = dds_version;
 
 1576     display_def->
width   = bytestream_get_be16(&buf) + 1;
 
 1577     display_def->
height  = bytestream_get_be16(&buf) + 1;
 
 1583     if (info_byte & 1<<3) { 
 
 1587         display_def->
x = bytestream_get_be16(&buf);
 
 1588         display_def->
width  = bytestream_get_be16(&buf) - display_def->
x + 1;
 
 1589         display_def->
y = bytestream_get_be16(&buf);
 
 1590         display_def->
height = bytestream_get_be16(&buf) - display_def->
y + 1;
 
 1597                                       int buf_size, 
AVSubtitle *sub,
int *got_output)
 
 1604     save_display_set(ctx);
 
 1610                          void *
data, 
int *data_size,
 
 1614     int buf_size = avpkt->
size;
 
 1623     int got_segment = 0;
 
 1626     ff_dlog(avctx, 
"DVB sub packet:\n");
 
 1628     for (i=0; i < buf_size; i++) {
 
 1629         ff_dlog(avctx, 
"%02x ", buf[i]);
 
 1637     if (buf_size <= 6 || *buf != 0x0f) {
 
 1638         ff_dlog(avctx, 
"incomplete or broken packet");
 
 1643     p_end = buf + buf_size;
 
 1645     while (p_end - p >= 6 && *p == 0x0f) {
 
 1647         segment_type = *p++;
 
 1654             av_log(avctx, 
AV_LOG_DEBUG, 
"segment_type:%d page_id:%d segment_length:%d\n", segment_type, page_id, segment_length);
 
 1657         if (p_end - p < segment_length) {
 
 1658             ff_dlog(avctx, 
"incomplete or broken packet");
 
 1666             switch (segment_type) {
 
 1677                 if (ret < 0) 
goto end;
 
 1691                 if (got_segment == 15 && !got_dds && !avctx->
width && !avctx->
height) {
 
 1699                 ff_dlog(avctx, 
"Subtitling segment type 0x%x, page id %d, length %d\n",
 
 1700                         segment_type, page_id, segment_length);
 
 1707         p += segment_length;
 
 1711     if (got_segment == 15) {
 
 1729 #define DS AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_SUBTITLE_PARAM 
 1732     {
"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},
 
 1752     .priv_class     = &dvbsubdec_class,
 
static DVBSubCLUT * get_clut(DVBSubContext *ctx, int clut_id)
#define AVERROR_INVALIDDATA
Invalid data found when processing input. 
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. 
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
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)
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
static double alpha(void *priv, double x, double y)
#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. 
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)
BYTE int const BYTE int int int height
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 numerator/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
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
#define FF_DISABLE_DEPRECATION_WARNINGS
common internal api header. 
static int dvbsub_decode(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt)
#define FF_DEBUG_STARTCODE
#define FF_ENABLE_DEPRECATION_WARNINGS
static int dvbsub_parse_object_segment(AVCodecContext *avctx, const uint8_t *buf, int buf_size)
static void * av_mallocz_array(size_t nmemb, size_t 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. 
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
int strict_std_compliance
strictly follow the standard (MPEG4, ...). 
#define AV_NOPTS_VALUE
Undefined timestamp value.