28 #define DVBSUB_PAGE_SEGMENT 0x10
29 #define DVBSUB_REGION_SEGMENT 0x11
30 #define DVBSUB_CLUT_SEGMENT 0x12
31 #define DVBSUB_OBJECT_SEGMENT 0x13
32 #define DVBSUB_DISPLAYDEFINITION_SEGMENT 0x14
33 #define DVBSUB_DISPLAY_SEGMENT 0x80
35 #define cm (ff_crop_tab + MAX_NEG_CROP)
39 static void png_save(
const char *filename,
uint8_t *bitmap,
int w,
int h,
40 uint32_t *rgba_palette)
44 char fname[40], fname2[40];
47 snprintf(fname, 40,
"%s.ppm", filename);
49 f = fopen(fname,
"w");
58 for(y = 0; y < h; y++) {
59 for(x = 0; x < w; x++) {
60 v = rgba_palette[bitmap[y * w + x]];
61 putc((v >> 16) & 0xff, f);
62 putc((v >> 8) & 0xff, f);
63 putc((v >> 0) & 0xff, f);
69 snprintf(fname2, 40,
"%s-a.pgm", filename);
71 f = fopen(fname2,
"w");
80 for(y = 0; y < h; y++) {
81 for(x = 0; x < w; x++) {
82 v = rgba_palette[bitmap[y * w + x]];
83 putc((v >> 24) & 0xff, f);
88 snprintf(command, 1024,
"pnmtopng -alpha %s %s > %s.png 2> /dev/null", fname2, fname, filename);
91 snprintf(command, 1024,
"rm %s %s", fname, fname2);
96 static void png_save2(
const char *filename, uint32_t *bitmap,
int w,
int h)
100 char fname[40], fname2[40];
103 snprintf(fname,
sizeof(fname),
"%s.ppm", filename);
105 f = fopen(fname,
"w");
114 for(y = 0; y < h; y++) {
115 for(x = 0; x < w; x++) {
116 v = bitmap[y * w + x];
117 putc((v >> 16) & 0xff, f);
118 putc((v >> 8) & 0xff, f);
119 putc((v >> 0) & 0xff, f);
125 snprintf(fname2,
sizeof(fname2),
"%s-a.pgm", filename);
127 f = fopen(fname2,
"w");
136 for(y = 0; y < h; y++) {
137 for(x = 0; x < w; x++) {
138 v = bitmap[y * w + x];
139 putc((v >> 24) & 0xff, f);
144 snprintf(command,
sizeof(command),
"pnmtopng -alpha %s %s > %s.png 2> /dev/null", fname2, fname, filename);
147 snprintf(command,
sizeof(command),
"rm %s %s", fname, fname2);
152 #define RGBA(r,g,b,a) (((unsigned)(a) << 24) | ((r) << 16) | ((g) << 8) | (b))
253 while (ptr && ptr->
id != object_id) {
264 while (ptr && ptr->
id != clut_id) {
275 while (ptr && ptr->
id != region_id) {
293 obj_disp_ptr = &
object->display_list;
294 obj_disp = *obj_disp_ptr;
296 while (obj_disp && obj_disp != display) {
298 obj_disp = *obj_disp_ptr;
308 while (obj2 !=
object) {
310 obj2_ptr = &obj2->
next;
314 *obj2_ptr = obj2->
next;
372 int i,
r,
g,
b,
a = 0;
391 default_clut.
id = -1;
392 default_clut.
next = NULL;
394 default_clut.
clut4[0] =
RGBA( 0, 0, 0, 0);
395 default_clut.
clut4[1] =
RGBA(255, 255, 255, 255);
396 default_clut.
clut4[2] =
RGBA( 0, 0, 0, 255);
397 default_clut.
clut4[3] =
RGBA(127, 127, 127, 255);
400 for (i = 1; i < 16; i++) {
402 r = (i & 1) ? 255 : 0;
403 g = (i & 2) ? 255 : 0;
404 b = (i & 4) ? 255 : 0;
406 r = (i & 1) ? 127 : 0;
407 g = (i & 2) ? 127 : 0;
408 b = (i & 4) ? 127 : 0;
414 for (i = 1; i < 256; i++) {
416 r = (i & 1) ? 255 : 0;
417 g = (i & 2) ? 255 : 0;
418 b = (i & 4) ? 255 : 0;
423 r = ((i & 1) ? 85 : 0) + ((i & 0x10) ? 170 : 0);
424 g = ((i & 2) ? 85 : 0) + ((i & 0x20) ? 170 : 0);
425 b = ((i & 4) ? 85 : 0) + ((i & 0x40) ? 170 : 0);
429 r = ((i & 1) ? 85 : 0) + ((i & 0x10) ? 170 : 0);
430 g = ((i & 2) ? 85 : 0) + ((i & 0x20) ? 170 : 0);
431 b = ((i & 4) ? 85 : 0) + ((i & 0x40) ? 170 : 0);
435 r = 127 + ((i & 1) ? 43 : 0) + ((i & 0x10) ? 85 : 0);
436 g = 127 + ((i & 2) ? 43 : 0) + ((i & 0x20) ? 85 : 0);
437 b = 127 + ((i & 4) ? 43 : 0) + ((i & 0x40) ? 85 : 0);
441 r = ((i & 1) ? 43 : 0) + ((i & 0x10) ? 85 : 0);
442 g = ((i & 2) ? 43 : 0) + ((i & 0x20) ? 85 : 0);
443 b = ((i & 4) ? 43 : 0) + ((i & 0x40) ? 85 : 0);
478 const uint8_t **srcbuf,
int buf_size,
479 int non_mod,
uint8_t *map_table,
int x_pos)
485 int pixels_read = x_pos;
491 while (
get_bits_count(&gb) < buf_size << 3 && pixels_read < dbuf_len) {
495 if (non_mod != 1 || bits != 1) {
497 *destbuf++ = map_table[
bits];
508 if (non_mod == 1 && bits == 1)
509 pixels_read += run_length;
512 bits = map_table[
bits];
513 while (run_length-- > 0 && pixels_read < dbuf_len) {
526 if (non_mod == 1 && bits == 1)
527 pixels_read += run_length;
530 bits = map_table[
bits];
531 while (run_length-- > 0 && pixels_read < dbuf_len) {
536 }
else if (bits == 3) {
540 if (non_mod == 1 && bits == 1)
541 pixels_read += run_length;
544 bits = map_table[
bits];
545 while (run_length-- > 0 && pixels_read < dbuf_len) {
550 }
else if (bits == 1) {
556 while (run_length-- > 0 && pixels_read < dbuf_len) {
585 const uint8_t **srcbuf,
int buf_size,
586 int non_mod,
uint8_t *map_table,
int x_pos)
592 int pixels_read = x_pos;
598 while (
get_bits_count(&gb) < buf_size << 3 && pixels_read < dbuf_len) {
602 if (non_mod != 1 || bits != 1) {
604 *destbuf++ = map_table[
bits];
614 if (run_length == 0) {
626 while (run_length-- > 0 && pixels_read < dbuf_len) {
636 if (non_mod == 1 && bits == 1)
637 pixels_read += run_length;
640 bits = map_table[
bits];
641 while (run_length-- > 0 && pixels_read < dbuf_len) {
652 if (non_mod == 1 && bits == 1)
653 pixels_read += run_length;
656 bits = map_table[
bits];
657 while (run_length-- > 0 && pixels_read < dbuf_len) {
662 }
else if (bits == 3) {
666 if (non_mod == 1 && bits == 1)
667 pixels_read += run_length;
670 bits = map_table[
bits];
671 while (run_length-- > 0 && pixels_read < dbuf_len) {
676 }
else if (bits == 1) {
682 while (run_length-- > 0 && pixels_read < dbuf_len) {
708 const uint8_t **srcbuf,
int buf_size,
709 int non_mod,
uint8_t *map_table,
int x_pos)
711 const uint8_t *sbuf_end = (*srcbuf) + buf_size;
714 int pixels_read = x_pos;
718 while (*srcbuf < sbuf_end && pixels_read < dbuf_len) {
722 if (non_mod != 1 || bits != 1) {
724 *destbuf++ = map_table[
bits];
731 run_length = bits & 0x7f;
732 if ((bits & 0x80) == 0) {
733 if (run_length == 0) {
741 while (run_length-- > 0 && pixels_read < dbuf_len) {
748 if (non_mod == 1 && bits == 1)
749 pixels_read += run_length;
751 bits = map_table[
bits];
752 else while (run_length-- > 0 && pixels_read < dbuf_len) {
774 uint32_t *clut_table;
776 int offset_x=0, offset_y=0;
780 offset_x = display_def->
x;
781 offset_y = display_def->
y;
791 if (region && region->
dirty)
802 if (sub->num_rects > 0) {
805 for(i=0; i<sub->num_rects; i++)
806 sub->rects[i] =
av_mallocz(
sizeof(*sub->rects[i]));
810 for (display = ctx->display_list; display; display = display->next) {
819 rect = sub->rects[i];
820 rect->
x = display->x_pos + offset_x;
821 rect->
y = display->y_pos + offset_y;
822 rect->
w = region->width;
823 rect->
h = region->height;
824 rect->nb_colors = (1 << region->depth);
826 rect->pict.linesize[0] = region->width;
833 switch (region->depth) {
835 clut_table = clut->
clut4;
838 clut_table = clut->clut256;
842 clut_table = clut->clut16;
847 memcpy(
rect->pict.data[1], clut_table, (1 << region->depth) *
sizeof(uint32_t));
850 memcpy(
rect->pict.data[0], region->pbuf, region->buf_size);
858 const uint8_t *
buf,
int buf_size,
int top_bottom,
int non_mod)
863 const uint8_t *buf_end = buf + buf_size;
868 uint8_t map2to4[] = { 0x0, 0x7, 0x8, 0xf};
869 uint8_t map2to8[] = {0x00, 0x77, 0x88, 0xff};
870 uint8_t map4to8[] = {0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
871 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff};
875 av_dlog(avctx,
"DVB pixel block size %d, %s field:\n", buf_size,
876 top_bottom ?
"bottom" :
"top");
878 for (i = 0; i < buf_size; i++) {
880 av_dlog(avctx,
"0x%8p: ", buf+i);
882 av_dlog(avctx,
"%02x ", buf[i]);
897 x_pos = display->
x_pos;
898 y_pos = display->
y_pos;
902 while (buf < buf_end) {
903 if ((*buf!=0xf0 && x_pos >= region->
width) || y_pos >= region->
height) {
910 if (region->
depth == 8)
912 else if (region->
depth == 4)
918 region->
width, &buf, buf_end - buf,
919 non_mod, map_table, x_pos);
922 if (region->
depth < 4) {
927 if (region->
depth == 8)
933 region->
width, &buf, buf_end - buf,
934 non_mod, map_table, x_pos);
937 if (region->
depth < 8) {
943 region->
width, &buf, buf_end - buf,
944 non_mod, NULL, x_pos);
948 map2to4[0] = (*buf) >> 4;
949 map2to4[1] = (*buf++) & 0xf;
950 map2to4[2] = (*buf) >> 4;
951 map2to4[3] = (*buf++) & 0xf;
954 for (i = 0; i < 4; i++)
958 for (i = 0; i < 16; i++)
963 x_pos = display->
x_pos;
978 const uint8_t *buf_end = buf + buf_size;
982 int top_field_len, bottom_field_len;
984 int coding_method, non_modifying_color;
994 coding_method = ((*buf) >> 2) & 3;
995 non_modifying_color = ((*buf++) >> 1) & 1;
997 if (coding_method == 0) {
1000 bottom_field_len =
AV_RB16(buf);
1003 if (buf + top_field_len + bottom_field_len > buf_end) {
1010 int bfl = bottom_field_len;
1013 non_modifying_color);
1015 if (bottom_field_len > 0)
1016 block = buf + top_field_len;
1018 bfl = top_field_len;
1021 non_modifying_color);
1037 const uint8_t *buf_end = buf + buf_size;
1041 int entry_id,
depth , full_range;
1043 int r,
g,
b, r_add, g_add, b_add;
1045 av_dlog(avctx,
"DVB clut packet:\n");
1047 for (i=0; i < buf_size; i++) {
1048 av_dlog(avctx,
"%02x ", buf[i]);
1057 version = ((*buf)>>4)&15;
1065 memcpy(clut, &default_clut,
sizeof(
DVBSubCLUT));
1074 if (clut->
version != version) {
1078 while (buf + 4 < buf_end) {
1081 depth = (*buf) & 0xe0;
1088 full_range = (*buf++) & 1;
1097 cr = (((buf[0] & 3) << 2) | ((buf[1] >> 6) & 3)) << 4;
1098 cb = (buf[1] << 2) & 0xf0;
1099 alpha = (buf[1] << 6) & 0xc0;
1110 av_dlog(avctx,
"clut %d := (%d,%d,%d,%d)\n", entry_id, r, g, b, alpha);
1111 if (!!(depth & 0x80) + !!(depth & 0x40) + !!(depth & 0x20) > 1) {
1112 av_dlog(avctx,
"More than one bit level marked: %x\n", depth);
1118 clut->
clut4[entry_id] =
RGBA(r,g,b,255 - alpha);
1119 else if (depth & 0x40)
1120 clut->
clut16[entry_id] =
RGBA(r,g,b,255 - alpha);
1121 else if (depth & 0x20)
1122 clut->
clut256[entry_id] =
RGBA(r,g,b,255 - alpha);
1134 const uint8_t *buf_end = buf + buf_size;
1135 int region_id, object_id;
1152 region->
id = region_id;
1159 version = ((*buf)>>4) & 15;
1160 fill = ((*buf++) >> 3) & 1;
1178 region->
depth = 1 << (((*buf++) >> 2) & 7);
1183 region->
clut = *buf++;
1185 if (region->
depth == 8) {
1191 if (region->
depth == 4)
1192 region->
bgcolor = (((*buf++) >> 4) & 15);
1194 region->
bgcolor = (((*buf++) >> 2) & 3);
1206 while (buf + 5 < buf_end) {
1215 object->id = object_id;
1220 object->
type = (*buf) >> 6;
1232 if ((object->
type == 1 || object->
type == 2) && buf+1 < buf_end) {
1241 object->display_list = display;
1252 const uint8_t *buf_end = buf + buf_size;
1262 version = ((*buf)>>4) & 15;
1263 page_state = ((*buf++) >> 2) & 3;
1265 if (ctx->
version == version) {
1272 av_dlog(avctx,
"Page time out %ds, state %d\n", ctx->
time_out, page_state);
1277 if (page_state == 1 || page_state == 2) {
1286 while (buf + 5 < buf_end) {
1290 display = tmp_display_list;
1291 tmp_ptr = &tmp_display_list;
1293 while (display && display->
region_id != region_id) {
1294 tmp_ptr = &display->
next;
1295 display = display->
next;
1308 *tmp_ptr = display->
next;
1313 av_dlog(avctx,
"Region %d, (%d,%d)\n", region_id, display->
x_pos, display->
y_pos);
1316 while (tmp_display_list) {
1317 display = tmp_display_list;
1319 tmp_display_list = display->
next;
1333 uint32_t *clut_table;
1335 int x,
y, y_off, x_off;
1338 static int fileno_index = 0;
1349 x_pos = display->
x_pos;
1350 y_pos = display->
y_pos;
1351 width = region->
width;
1354 if (display->
x_pos < x_pos) {
1355 width += (x_pos - display->
x_pos);
1356 x_pos = display->
x_pos;
1359 if (display->
y_pos < y_pos) {
1360 height += (y_pos - display->
y_pos);
1361 y_pos = display->
y_pos;
1364 if (display->
x_pos + region->
width > x_pos + width) {
1365 width = display->
x_pos + region->
width - x_pos;
1368 if (display->
y_pos + region->
height > y_pos + height) {
1381 x_off = display->
x_pos - x_pos;
1382 y_off = display->
y_pos - y_pos;
1389 switch (region->
depth) {
1391 clut_table = clut->
clut4;
1398 clut_table = clut->
clut16;
1402 for (y = 0; y < region->
height; y++) {
1403 for (x = 0; x < region->
width; x++) {
1404 pbuf[((y + y_off) * width) + x_off + x] =
1405 clut_table[region->
pbuf[y * region->
width + x]];
1411 snprintf(filename,
sizeof(filename),
"dvbs.%d", fileno_index);
1413 png_save2(filename, pbuf, width, height);
1428 int dds_version, info_byte;
1433 info_byte = bytestream_get_byte(&buf);
1434 dds_version = info_byte >> 4;
1435 if (display_def && display_def->
version == dds_version)
1439 display_def =
av_mallocz(
sizeof(*display_def));
1445 display_def->
version = dds_version;
1448 display_def->
width = bytestream_get_be16(&buf) + 1;
1449 display_def->
height = bytestream_get_be16(&buf) + 1;
1458 if (info_byte & 1<<3) {
1459 display_def->
x = bytestream_get_be16(&buf);
1460 display_def->
width = bytestream_get_be16(&buf) - display_def->
x + 1;
1461 display_def->
y = bytestream_get_be16(&buf);
1462 display_def->
height = bytestream_get_be16(&buf) - display_def->
y + 1;
1467 int buf_size,
AVSubtitle *sub,
int *got_output)
1474 save_display_set(ctx);
1480 void *
data,
int *data_size,
1484 int buf_size = avpkt->
size;
1493 int got_segment = 0;
1495 av_dlog(avctx,
"DVB sub packet:\n");
1497 for (i=0; i < buf_size; i++) {
1498 av_dlog(avctx,
"%02x ", buf[i]);
1506 if (buf_size <= 6 || *buf != 0x0f) {
1507 av_dlog(avctx,
"incomplete or broken packet");
1512 p_end = buf + buf_size;
1514 while (p_end - p >= 6 && *p == 0x0f) {
1516 segment_type = *p++;
1523 av_log(avctx,
AV_LOG_DEBUG,
"segment_type:%d page_id:%d segment_length:%d\n", segment_type, page_id, segment_length);
1526 if (p_end - p < segment_length) {
1527 av_dlog(avctx,
"incomplete or broken packet");
1534 switch (segment_type) {
1545 if (ret < 0)
goto end;
1560 av_dlog(avctx,
"Subtitling segment type 0x%x, page id %d, length %d\n",
1561 segment_type, page_id, segment_length);
1566 p += segment_length;
1570 if (got_segment == 15) {
1589 {
"compute_edt",
"compute end of time using pts or timeout", offsetof(
DVBSubContext, compute_edt),
FF_OPT_TYPE_INT, {.i64 = 0}, 0, 1, 0},
1608 .priv_class = &dvbsubdec_class,