27 #define DVBSUB_PAGE_SEGMENT     0x10    28 #define DVBSUB_REGION_SEGMENT   0x11    29 #define DVBSUB_CLUT_SEGMENT     0x12    30 #define DVBSUB_OBJECT_SEGMENT   0x13    31 #define DVBSUB_DISPLAYDEFINITION_SEGMENT 0x14    32 #define DVBSUB_DISPLAY_SEGMENT  0x80    34 #define cm (ff_cropTbl + 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))   251     while (ptr && ptr->
id != object_id) {
   262     while (ptr && ptr->
id != clut_id) {
   273     while (ptr && ptr->
id != region_id) {
   291             obj_disp_ptr = &
object->display_list;
   292             obj_disp = *obj_disp_ptr;
   294             while (obj_disp && obj_disp != display) {
   296                 obj_disp = *obj_disp_ptr;
   306                     while (obj2 != 
object) {
   308                         obj2_ptr = &obj2->
next;
   312                     *obj2_ptr = obj2->
next;
   370     int i, 
r, 
g, 
b, 
a = 0;
   384     default_clut.
id = -1;
   387     default_clut.
clut4[0] = 
RGBA(  0,   0,   0,   0);
   388     default_clut.
clut4[1] = 
RGBA(255, 255, 255, 255);
   389     default_clut.
clut4[2] = 
RGBA(  0,   0,   0, 255);
   390     default_clut.
clut4[3] = 
RGBA(127, 127, 127, 255);
   393     for (i = 1; i < 16; i++) {
   395             r = (i & 1) ? 255 : 0;
   396             g = (i & 2) ? 255 : 0;
   397             b = (i & 4) ? 255 : 0;
   399             r = (i & 1) ? 127 : 0;
   400             g = (i & 2) ? 127 : 0;
   401             b = (i & 4) ? 127 : 0;
   407     for (i = 1; i < 256; i++) {
   409             r = (i & 1) ? 255 : 0;
   410             g = (i & 2) ? 255 : 0;
   411             b = (i & 4) ? 255 : 0;
   416                 r = ((i & 1) ? 85 : 0) + ((i & 0x10) ? 170 : 0);
   417                 g = ((i & 2) ? 85 : 0) + ((i & 0x20) ? 170 : 0);
   418                 b = ((i & 4) ? 85 : 0) + ((i & 0x40) ? 170 : 0);
   422                 r = ((i & 1) ? 85 : 0) + ((i & 0x10) ? 170 : 0);
   423                 g = ((i & 2) ? 85 : 0) + ((i & 0x20) ? 170 : 0);
   424                 b = ((i & 4) ? 85 : 0) + ((i & 0x40) ? 170 : 0);
   428                 r = 127 + ((i & 1) ? 43 : 0) + ((i & 0x10) ? 85 : 0);
   429                 g = 127 + ((i & 2) ? 43 : 0) + ((i & 0x20) ? 85 : 0);
   430                 b = 127 + ((i & 4) ? 43 : 0) + ((i & 0x40) ? 85 : 0);
   434                 r = ((i & 1) ? 43 : 0) + ((i & 0x10) ? 85 : 0);
   435                 g = ((i & 2) ? 43 : 0) + ((i & 0x20) ? 85 : 0);
   436                 b = ((i & 4) ? 43 : 0) + ((i & 0x40) ? 85 : 0);
   471                                    const uint8_t **srcbuf, 
int buf_size,
   472                                    int non_mod, 
uint8_t *map_table, 
int x_pos)
   478     int pixels_read = x_pos;
   484     while (
get_bits_count(&gb) < buf_size << 3 && pixels_read < dbuf_len) {
   488             if (non_mod != 1 || bits != 1) {
   490                     *destbuf++ = map_table[
bits];
   501                 if (non_mod == 1 && bits == 1)
   502                     pixels_read += run_length;
   505                         bits = map_table[
bits];
   506                     while (run_length-- > 0 && pixels_read < dbuf_len) {
   519                         if (non_mod == 1 && bits == 1)
   520                             pixels_read += run_length;
   523                                 bits = map_table[
bits];
   524                             while (run_length-- > 0 && pixels_read < dbuf_len) {
   529                     } 
else if (bits == 3) {
   533                         if (non_mod == 1 && bits == 1)
   534                             pixels_read += run_length;
   537                                 bits = map_table[
bits];
   538                             while (run_length-- > 0 && pixels_read < dbuf_len) {
   543                     } 
else if (bits == 1) {
   549                         while (run_length-- > 0 && pixels_read < dbuf_len) {
   578                                    const uint8_t **srcbuf, 
int buf_size,
   579                                    int non_mod, 
uint8_t *map_table, 
int x_pos)
   585     int pixels_read = x_pos;
   591     while (
get_bits_count(&gb) < buf_size << 3 && pixels_read < dbuf_len) {
   595             if (non_mod != 1 || bits != 1) {
   597                     *destbuf++ = map_table[
bits];
   607                 if (run_length == 0) {
   619                 while (run_length-- > 0 && pixels_read < dbuf_len) {
   629                     if (non_mod == 1 && bits == 1)
   630                         pixels_read += run_length;
   633                             bits = map_table[
bits];
   634                         while (run_length-- > 0 && pixels_read < dbuf_len) {
   645                         if (non_mod == 1 && bits == 1)
   646                             pixels_read += run_length;
   649                                 bits = map_table[
bits];
   650                             while (run_length-- > 0 && pixels_read < dbuf_len) {
   655                     } 
else if (bits == 3) {
   659                         if (non_mod == 1 && bits == 1)
   660                             pixels_read += run_length;
   663                                 bits = map_table[
bits];
   664                             while (run_length-- > 0 && pixels_read < dbuf_len) {
   669                     } 
else if (bits == 1) {
   675                         while (run_length-- > 0 && pixels_read < dbuf_len) {
   701                                     const uint8_t **srcbuf, 
int buf_size,
   702                                     int non_mod, 
uint8_t *map_table, 
int x_pos)
   704     const uint8_t *sbuf_end = (*srcbuf) + buf_size;
   707     int pixels_read = x_pos;
   711     while (*srcbuf < sbuf_end && pixels_read < dbuf_len) {
   715             if (non_mod != 1 || bits != 1) {
   717                     *destbuf++ = map_table[
bits];
   724             run_length = bits & 0x7f;
   725             if ((bits & 0x80) == 0) {
   726                 if (run_length == 0) {
   734                 while (run_length-- > 0 && pixels_read < dbuf_len) {
   741                 if (non_mod == 1 && bits == 1)
   742                     pixels_read += run_length;
   744                     bits = map_table[
bits];
   745                 else while (run_length-- > 0 && pixels_read < dbuf_len) {
   762                                           const uint8_t *
buf, 
int buf_size, 
int top_bottom, 
int non_mod)
   767     const uint8_t *buf_end = buf + buf_size;
   772     uint8_t map2to4[] = { 0x0,  0x7,  0x8,  0xf};
   773     uint8_t map2to8[] = {0x00, 0x77, 0x88, 0xff};
   774     uint8_t map4to8[] = {0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
   775                          0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff};
   779     av_dlog(avctx, 
"DVB pixel block size %d, %s field:\n", buf_size,
   780             top_bottom ? 
"bottom" : 
"top");
   782     for (i = 0; i < buf_size; i++) {
   784             av_dlog(avctx, 
"0x%8p: ", buf+i);
   786         av_dlog(avctx, 
"%02x ", buf[i]);
   801     x_pos = display->
x_pos;
   802     y_pos = display->
y_pos;
   806     while (buf < buf_end) {
   807         if ((*buf!=0xf0 && x_pos >= region->
width) || y_pos >= region->
height) {
   814             if (region->
depth == 8)
   816             else if (region->
depth == 4)
   822                                             region->
width, &buf, buf_end - buf,
   823                                             non_mod, map_table, x_pos);
   826             if (region->
depth < 4) {
   831             if (region->
depth == 8)
   837                                             region->
width, &buf, buf_end - buf,
   838                                             non_mod, map_table, x_pos);
   841             if (region->
depth < 8) {
   847                                             region->
width, &buf, buf_end - buf,
   848                                             non_mod, 
NULL, x_pos);
   852             map2to4[0] = (*buf) >> 4;
   853             map2to4[1] = (*buf++) & 0xf;
   854             map2to4[2] = (*buf) >> 4;
   855             map2to4[3] = (*buf++) & 0xf;
   858             for (i = 0; i < 4; i++)
   862             for (i = 0; i < 16; i++)
   867             x_pos = display->
x_pos;
   882     const uint8_t *buf_end = buf + buf_size;
   886     int top_field_len, bottom_field_len;
   888     int coding_method, non_modifying_color;
   898     coding_method = ((*buf) >> 2) & 3;
   899     non_modifying_color = ((*buf++) >> 1) & 1;
   901     if (coding_method == 0) {
   904         bottom_field_len = 
AV_RB16(buf);
   907         if (buf + top_field_len + bottom_field_len > buf_end) {
   914             int bfl = bottom_field_len;
   917                                             non_modifying_color);
   919             if (bottom_field_len > 0)
   920                 block = buf + top_field_len;
   925                                             non_modifying_color);
   941     const uint8_t *buf_end = buf + buf_size;
   945     int entry_id, 
depth , full_range;
   947     int r, 
g, 
b, r_add, g_add, b_add;
   949     av_dlog(avctx, 
"DVB clut packet:\n");
   951     for (i=0; i < buf_size; i++) {
   952         av_dlog(avctx, 
"%02x ", buf[i]);
   961     version = ((*buf)>>4)&15;
   969         memcpy(clut, &default_clut, 
sizeof(
DVBSubCLUT));
   978     if (clut->
version != version) {
   982     while (buf + 4 < buf_end) {
   985         depth = (*buf) & 0xe0;
   992         full_range = (*buf++) & 1;
  1001             cr = (((buf[0] & 3) << 2) | ((buf[1] >> 6) & 3)) << 4;
  1002             cb = (buf[1] << 2) & 0xf0;
  1003             alpha = (buf[1] << 6) & 0xc0;
  1014         av_dlog(avctx, 
"clut %d := (%d,%d,%d,%d)\n", entry_id, r, g, b, alpha);
  1017             clut->
clut4[entry_id] = 
RGBA(r,g,b,255 - alpha);
  1019             clut->
clut16[entry_id] = 
RGBA(r,g,b,255 - alpha);
  1021             clut->
clut256[entry_id] = 
RGBA(r,g,b,255 - alpha);
  1032     const uint8_t *buf_end = buf + buf_size;
  1033     int region_id, object_id;
  1050         region->
id = region_id;
  1057     version = ((*buf)>>4) & 15;
  1058     fill = ((*buf++) >> 3) & 1;
  1076     region->
depth = 1 << (((*buf++) >> 2) & 7);
  1081     region->
clut = *buf++;
  1083     if (region->
depth == 8) {
  1089         if (region->
depth == 4)
  1090             region->
bgcolor = (((*buf++) >> 4) & 15);
  1092             region->
bgcolor = (((*buf++) >> 2) & 3);
  1104     while (buf + 5 < buf_end) {
  1113             object->id = object_id;
  1118         object->
type = (*buf) >> 6;
  1130         if ((object->
type == 1 || object->
type == 2) && buf+1 < buf_end) {
  1139         object->display_list = display;
  1150     const uint8_t *buf_end = buf + buf_size;
  1160     version = ((*buf)>>4) & 15;
  1161     page_state = ((*buf++) >> 2) & 3;
  1163     if (ctx->
version != version) {
  1168     av_dlog(avctx, 
"Page time out %ds, state %d\n", ctx->
time_out, page_state);
  1170     if (page_state == 1 || page_state == 2) {
  1180     while (buf + 5 < buf_end) {
  1184         display = tmp_display_list;
  1185         tmp_ptr = &tmp_display_list;
  1187         while (display && display->
region_id != region_id) {
  1188             tmp_ptr = &display->
next;
  1189             display = display->
next;
  1202         *tmp_ptr = display->
next;
  1208         av_dlog(avctx, 
"Region %d, (%d,%d)\n", region_id, display->
x_pos, display->
y_pos);
  1211     while (tmp_display_list) {
  1212         display = tmp_display_list;
  1214         tmp_display_list = display->
next;
  1229     uint32_t *clut_table;
  1231     int x, 
y, y_off, x_off;
  1234     static int fileno_index = 0;
  1245             x_pos = display->
x_pos;
  1246             y_pos = display->
y_pos;
  1247             width = region->
width;
  1250             if (display->
x_pos < x_pos) {
  1251                 width += (x_pos - display->
x_pos);
  1252                 x_pos = display->
x_pos;
  1255             if (display->
y_pos < y_pos) {
  1256                 height += (y_pos - display->
y_pos);
  1257                 y_pos = display->
y_pos;
  1260             if (display->
x_pos + region->
width > x_pos + width) {
  1261                 width = display->
x_pos + region->
width - x_pos;
  1264             if (display->
y_pos + region->
height > y_pos + height) {
  1277             x_off = display->
x_pos - x_pos;
  1278             y_off = display->
y_pos - y_pos;
  1285             switch (region->
depth) {
  1287                 clut_table = clut->
clut4;
  1294                 clut_table = clut->
clut16;
  1298             for (y = 0; y < region->
height; y++) {
  1299                 for (x = 0; x < region->
width; x++) {
  1300                     pbuf[((y + y_off) * width) + x_off + 
x] =
  1301                         clut_table[region->
pbuf[y * region->
width + 
x]];
  1307         snprintf(filename, 
sizeof(filename), 
"dvbs.%d", fileno_index);
  1309         png_save2(filename, pbuf, width, height);
  1324     int dds_version, info_byte;
  1329     info_byte   = bytestream_get_byte(&buf);
  1330     dds_version = info_byte >> 4;
  1331     if (display_def && display_def->
version == dds_version)
  1335         display_def             = 
av_mallocz(
sizeof(*display_def));
  1341     display_def->
version = dds_version;
  1344     display_def->
width   = bytestream_get_be16(&buf) + 1;
  1345     display_def->
height  = bytestream_get_be16(&buf) + 1;
  1354     if (info_byte & 1<<3) { 
  1355         display_def->
x = bytestream_get_be16(&buf);
  1356         display_def->
y = bytestream_get_be16(&buf);
  1357         display_def->
width  = bytestream_get_be16(&buf) - display_def->
x + 1;
  1358         display_def->
height = bytestream_get_be16(&buf) - display_def->
y + 1;
  1372     uint32_t *clut_table;
  1374     int offset_x=0, offset_y=0;
  1379         offset_x = display_def->
x;
  1380         offset_y = display_def->
y;
  1402         rect->
x = display->
x_pos + offset_x;
  1403         rect->
y = display->
y_pos + offset_y;
  1415         switch (region->
depth) {
  1417             clut_table = clut->
clut4;
  1424             clut_table = clut->
clut16;
  1429         memcpy(rect->
pict.
data[1], clut_table, (1 << region->
depth) * 
sizeof(uint32_t));
  1440     save_display_set(ctx);
  1447                          void *
data, 
int *data_size,
  1451     int buf_size = avpkt->
size;
  1459     int got_segment = 0;
  1461     av_dlog(avctx, 
"DVB sub packet:\n");
  1463     for (i=0; i < buf_size; i++) {
  1464         av_dlog(avctx, 
"%02x ", buf[i]);
  1472     if (buf_size <= 6 || *buf != 0x0f) {
  1473         av_dlog(avctx, 
"incomplete or broken packet");
  1478     p_end = buf + buf_size;
  1480     while (p_end - p >= 6 && *p == 0x0f) {
  1482         segment_type = *p++;
  1488         if (p_end - p < segment_length) {
  1489             av_dlog(avctx, 
"incomplete or broken packet");
  1495             switch (segment_type) {
  1520                 av_dlog(avctx, 
"Subtitling segment type 0x%x, page id %d, length %d\n",
  1521                         segment_type, page_id, segment_length);
  1526         p += segment_length;
  1530     if (got_segment == 15 && sub)
 
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
static DVBSubCLUT * get_clut(DVBSubContext *ctx, int clut_id)
static void dvbsub_parse_clut_segment(AVCodecContext *avctx, const uint8_t *buf, int buf_size)
int linesize[AV_NUM_DATA_POINTERS]
number of bytes per line 
struct DVBSubRegion DVBSubRegion
static void dvbsub_parse_pixel_data_block(AVCodecContext *avctx, DVBSubObjectDisplay *display, const uint8_t *buf, int buf_size, int top_bottom, int non_mod)
int x
top left corner of pict, undefined when pict is not set 
static DVBSubRegion * get_region(DVBSubContext *ctx, int region_id)
static int dvbsub_display_end_segment(AVCodecContext *avctx, const uint8_t *buf, int buf_size, AVSubtitle *sub)
DVBSubRegionDisplay * display_list
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits. 
#define YUV_TO_RGB1_CCIR(cb1, cr1)
static av_cold int init(AVCodecContext *avctx)
#define AV_LOG_WARNING
Something somehow does not look correct. 
static void dvbsub_parse_region_segment(AVCodecContext *avctx, const uint8_t *buf, int buf_size)
int nb_colors
number of colors in pict, undefined when pict is not set 
struct DVBSubRegionDisplay DVBSubRegionDisplay
Various defines for YUV<->RGB conversion. 
av_dlog(ac->avr,"%d samples - audio_convert: %s to %s (%s)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt), use_generic?ac->func_descr_generic:ac->func_descr)
static void dvbsub_parse_page_segment(AVCodecContext *avctx, const uint8_t *buf, int buf_size)
output residual component w
void av_freep(void *arg)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc() and set the pointer ...
int w
width of pict, undefined when pict is not set 
static void delete_cluts(DVBSubContext *ctx)
struct DVBSubCLUT DVBSubCLUT
uint8_t * data[AV_NUM_DATA_POINTERS]
uint8_t * extradata
some codecs need / can use extradata like Huffman tables. 
static int get_bits_count(const GetBitContext *s)
bitstream reader API header. 
int h
height of pict, undefined when pict is not set 
DVBSubRegion * region_list
static void delete_regions(DVBSubContext *ctx)
#define DVBSUB_DISPLAYDEFINITION_SEGMENT
struct DVBSubRegion * next
static double alpha(void *priv, double x, double y)
void av_free(void *ptr)
Free a memory block which has been allocated with av_malloc(z)() or av_realloc(). ...
static int dvbsub_read_2bit_string(uint8_t *destbuf, int dbuf_len, const uint8_t **srcbuf, int buf_size, int non_mod, uint8_t *map_table, int x_pos)
int y
top left corner of pict, undefined when pict is not set 
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static DVBSubCLUT default_clut
void av_log(void *avcl, int level, const char *fmt,...)
const char * name
Name of the codec implementation. 
uint32_t end_display_time
static void dvbsub_parse_display_definition_segment(AVCodecContext *avctx, const uint8_t *buf, int buf_size)
struct DVBSubObject * next
AVCodec ff_dvbsub_decoder
A bitmap, pict will be set. 
AVPicture pict
data+linesize for the bitmap of this subtitle. 
DVBSubObjectDisplay * display_list
struct DVBSubObjectDisplay * region_list_next
int width
picture width / height. 
DVBSubObjectDisplay * display_list
static void delete_objects(DVBSubContext *ctx)
DVBSubDisplayDefinition * display_definition
#define DVBSUB_CLUT_SEGMENT
main external API structure. 
static void close(AVCodecParserContext *s)
static int command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered. 
static DVBSubObject * get_object(DVBSubContext *ctx, int object_id)
static int dvbsub_read_4bit_string(uint8_t *destbuf, int dbuf_len, const uint8_t **srcbuf, int buf_size, int non_mod, uint8_t *map_table, int x_pos)
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)
void * av_malloc(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
#define DVBSUB_DISPLAY_SEGMENT
struct DVBSubRegionDisplay * next
synthesis window for stochastic i
#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. 
struct DVBSubObjectDisplay DVBSubObjectDisplay
#define DVBSUB_PAGE_SEGMENT
static av_cold int dvbsub_init_decoder(AVCodecContext *avctx)
#define DVBSUB_REGION_SEGMENT
struct DVBSubContext DVBSubContext
struct DVBSubObject DVBSubObject
static int dvbsub_read_8bit_string(uint8_t *destbuf, int dbuf_len, const uint8_t **srcbuf, int buf_size, int non_mod, uint8_t *map_table, int x_pos)
first frame pointer p_end
static int dvbsub_decode(AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt)
static void dvbsub_parse_object_segment(AVCodecContext *avctx, const uint8_t *buf, int buf_size)
DVBSubObject * object_list
struct DVBSubDisplayDefinition DVBSubDisplayDefinition
static int decode(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
#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. 
FFmpeg currently uses a custom build system