2 * DVB subtitle decoding
3 * Copyright (c) 2005 Ian Caulfield
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 #include "bytestream.h"
25 #include "libavutil/colorspace.h"
26 #include "libavutil/opt.h"
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))
154 typedef struct DVBSubCLUT {
160 uint32_t clut256[256];
162 struct DVBSubCLUT *next;
165 static DVBSubCLUT default_clut;
167 typedef struct DVBSubObjectDisplay {
177 struct DVBSubObjectDisplay *region_list_next;
178 struct DVBSubObjectDisplay *object_list_next;
179 } DVBSubObjectDisplay;
181 typedef struct DVBSubObject {
187 DVBSubObjectDisplay *display_list;
189 struct DVBSubObject *next;
192 typedef struct DVBSubRegionDisplay {
198 struct DVBSubRegionDisplay *next;
199 } DVBSubRegionDisplay;
201 typedef struct DVBSubRegion {
216 DVBSubObjectDisplay *display_list;
218 struct DVBSubRegion *next;
221 typedef struct DVBSubDisplayDefinition {
228 } DVBSubDisplayDefinition;
230 typedef struct DVBSubContext {
237 int compute_edt; /**< if 1 end display time calculated using pts
238 if 0 (Default) calculated using time out */
240 DVBSubRegion *region_list;
241 DVBSubCLUT *clut_list;
242 DVBSubObject *object_list;
244 DVBSubRegionDisplay *display_list;
245 DVBSubDisplayDefinition *display_definition;
249 static DVBSubObject* get_object(DVBSubContext *ctx, int object_id)
251 DVBSubObject *ptr = ctx->object_list;
253 while (ptr && ptr->id != object_id) {
260 static DVBSubCLUT* get_clut(DVBSubContext *ctx, int clut_id)
262 DVBSubCLUT *ptr = ctx->clut_list;
264 while (ptr && ptr->id != clut_id) {
271 static DVBSubRegion* get_region(DVBSubContext *ctx, int region_id)
273 DVBSubRegion *ptr = ctx->region_list;
275 while (ptr && ptr->id != region_id) {
282 static void delete_region_display_list(DVBSubContext *ctx, DVBSubRegion *region)
284 DVBSubObject *object, *obj2, **obj2_ptr;
285 DVBSubObjectDisplay *display, *obj_disp, **obj_disp_ptr;
287 while (region->display_list) {
288 display = region->display_list;
290 object = get_object(ctx, display->object_id);
293 obj_disp_ptr = &object->display_list;
294 obj_disp = *obj_disp_ptr;
296 while (obj_disp && obj_disp != display) {
297 obj_disp_ptr = &obj_disp->object_list_next;
298 obj_disp = *obj_disp_ptr;
302 *obj_disp_ptr = obj_disp->object_list_next;
304 if (!object->display_list) {
305 obj2_ptr = &ctx->object_list;
308 while (obj2 != object) {
310 obj2_ptr = &obj2->next;
314 *obj2_ptr = obj2->next;
321 region->display_list = display->region_list_next;
328 static void delete_cluts(DVBSubContext *ctx)
330 while (ctx->clut_list) {
331 DVBSubCLUT *clut = ctx->clut_list;
333 ctx->clut_list = clut->next;
339 static void delete_objects(DVBSubContext *ctx)
341 while (ctx->object_list) {
342 DVBSubObject *object = ctx->object_list;
344 ctx->object_list = object->next;
350 static void delete_regions(DVBSubContext *ctx)
352 while (ctx->region_list) {
353 DVBSubRegion *region = ctx->region_list;
355 ctx->region_list = region->next;
357 delete_region_display_list(ctx, region);
359 av_freep(®ion->pbuf);
364 static av_cold int dvbsub_init_decoder(AVCodecContext *avctx)
366 int i, r, g, b, a = 0;
367 DVBSubContext *ctx = avctx->priv_data;
369 if (!avctx->extradata || (avctx->extradata_size < 4) || ((avctx->extradata_size % 5 != 0) && (avctx->extradata_size != 4))) {
370 av_log(avctx, AV_LOG_WARNING, "Invalid DVB subtitles stream extradata!\n");
371 ctx->composition_id = -1;
372 ctx->ancillary_id = -1;
374 if (avctx->extradata_size > 5) {
375 av_log(avctx, AV_LOG_WARNING, "Decoding first DVB subtitles sub-stream\n");
378 ctx->composition_id = AV_RB16(avctx->extradata);
379 ctx->ancillary_id = AV_RB16(avctx->extradata + 2);
383 ctx->prev_start = AV_NOPTS_VALUE;
385 default_clut.id = -1;
386 default_clut.next = NULL;
388 default_clut.clut4[0] = RGBA( 0, 0, 0, 0);
389 default_clut.clut4[1] = RGBA(255, 255, 255, 255);
390 default_clut.clut4[2] = RGBA( 0, 0, 0, 255);
391 default_clut.clut4[3] = RGBA(127, 127, 127, 255);
393 default_clut.clut16[0] = RGBA( 0, 0, 0, 0);
394 for (i = 1; i < 16; i++) {
396 r = (i & 1) ? 255 : 0;
397 g = (i & 2) ? 255 : 0;
398 b = (i & 4) ? 255 : 0;
400 r = (i & 1) ? 127 : 0;
401 g = (i & 2) ? 127 : 0;
402 b = (i & 4) ? 127 : 0;
404 default_clut.clut16[i] = RGBA(r, g, b, 255);
407 default_clut.clut256[0] = RGBA( 0, 0, 0, 0);
408 for (i = 1; i < 256; i++) {
410 r = (i & 1) ? 255 : 0;
411 g = (i & 2) ? 255 : 0;
412 b = (i & 4) ? 255 : 0;
417 r = ((i & 1) ? 85 : 0) + ((i & 0x10) ? 170 : 0);
418 g = ((i & 2) ? 85 : 0) + ((i & 0x20) ? 170 : 0);
419 b = ((i & 4) ? 85 : 0) + ((i & 0x40) ? 170 : 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 = 127 + ((i & 1) ? 43 : 0) + ((i & 0x10) ? 85 : 0);
430 g = 127 + ((i & 2) ? 43 : 0) + ((i & 0x20) ? 85 : 0);
431 b = 127 + ((i & 4) ? 43 : 0) + ((i & 0x40) ? 85 : 0);
435 r = ((i & 1) ? 43 : 0) + ((i & 0x10) ? 85 : 0);
436 g = ((i & 2) ? 43 : 0) + ((i & 0x20) ? 85 : 0);
437 b = ((i & 4) ? 43 : 0) + ((i & 0x40) ? 85 : 0);
442 default_clut.clut256[i] = RGBA(r, g, b, a);
448 static av_cold int dvbsub_close_decoder(AVCodecContext *avctx)
450 DVBSubContext *ctx = avctx->priv_data;
451 DVBSubRegionDisplay *display;
459 av_freep(&ctx->display_definition);
461 while (ctx->display_list) {
462 display = ctx->display_list;
463 ctx->display_list = display->next;
471 static int dvbsub_read_2bit_string(AVCodecContext *avctx,
472 uint8_t *destbuf, int dbuf_len,
473 const uint8_t **srcbuf, int buf_size,
474 int non_mod, uint8_t *map_table, int x_pos)
480 int pixels_read = x_pos;
482 init_get_bits(&gb, *srcbuf, buf_size << 3);
486 while (get_bits_count(&gb) < buf_size << 3 && pixels_read < dbuf_len) {
487 bits = get_bits(&gb, 2);
490 if (non_mod != 1 || bits != 1) {
492 *destbuf++ = map_table[bits];
498 bits = get_bits1(&gb);
500 run_length = get_bits(&gb, 3) + 3;
501 bits = get_bits(&gb, 2);
503 if (non_mod == 1 && bits == 1)
504 pixels_read += run_length;
507 bits = map_table[bits];
508 while (run_length-- > 0 && pixels_read < dbuf_len) {
514 bits = get_bits1(&gb);
516 bits = get_bits(&gb, 2);
518 run_length = get_bits(&gb, 4) + 12;
519 bits = get_bits(&gb, 2);
521 if (non_mod == 1 && bits == 1)
522 pixels_read += run_length;
525 bits = map_table[bits];
526 while (run_length-- > 0 && pixels_read < dbuf_len) {
531 } else if (bits == 3) {
532 run_length = get_bits(&gb, 8) + 29;
533 bits = get_bits(&gb, 2);
535 if (non_mod == 1 && bits == 1)
536 pixels_read += run_length;
539 bits = map_table[bits];
540 while (run_length-- > 0 && pixels_read < dbuf_len) {
545 } else if (bits == 1) {
551 while (run_length-- > 0 && pixels_read < dbuf_len) {
556 (*srcbuf) += (get_bits_count(&gb) + 7) >> 3;
571 if (get_bits(&gb, 6))
572 av_log(avctx, AV_LOG_ERROR, "line overflow\n");
574 (*srcbuf) += (get_bits_count(&gb) + 7) >> 3;
579 static int dvbsub_read_4bit_string(AVCodecContext *avctx, uint8_t *destbuf, int dbuf_len,
580 const uint8_t **srcbuf, int buf_size,
581 int non_mod, uint8_t *map_table, int x_pos)
587 int pixels_read = x_pos;
589 init_get_bits(&gb, *srcbuf, buf_size << 3);
593 while (get_bits_count(&gb) < buf_size << 3 && pixels_read < dbuf_len) {
594 bits = get_bits(&gb, 4);
597 if (non_mod != 1 || bits != 1) {
599 *destbuf++ = map_table[bits];
605 bits = get_bits1(&gb);
607 run_length = get_bits(&gb, 3);
609 if (run_length == 0) {
610 (*srcbuf) += (get_bits_count(&gb) + 7) >> 3;
621 while (run_length-- > 0 && pixels_read < dbuf_len) {
626 bits = get_bits1(&gb);
628 run_length = get_bits(&gb, 2) + 4;
629 bits = get_bits(&gb, 4);
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) {
642 bits = get_bits(&gb, 2);
644 run_length = get_bits(&gb, 4) + 9;
645 bits = get_bits(&gb, 4);
647 if (non_mod == 1 && bits == 1)
648 pixels_read += run_length;
651 bits = map_table[bits];
652 while (run_length-- > 0 && pixels_read < dbuf_len) {
657 } else if (bits == 3) {
658 run_length = get_bits(&gb, 8) + 25;
659 bits = get_bits(&gb, 4);
661 if (non_mod == 1 && bits == 1)
662 pixels_read += run_length;
665 bits = map_table[bits];
666 while (run_length-- > 0 && pixels_read < dbuf_len) {
671 } else if (bits == 1) {
677 while (run_length-- > 0 && pixels_read < dbuf_len) {
694 if (get_bits(&gb, 8))
695 av_log(avctx, AV_LOG_ERROR, "line overflow\n");
697 (*srcbuf) += (get_bits_count(&gb) + 7) >> 3;
702 static int dvbsub_read_8bit_string(AVCodecContext *avctx,
703 uint8_t *destbuf, int dbuf_len,
704 const uint8_t **srcbuf, int buf_size,
705 int non_mod, uint8_t *map_table, int x_pos)
707 const uint8_t *sbuf_end = (*srcbuf) + buf_size;
710 int pixels_read = x_pos;
714 while (*srcbuf < sbuf_end && pixels_read < dbuf_len) {
718 if (non_mod != 1 || bits != 1) {
720 *destbuf++ = map_table[bits];
727 run_length = bits & 0x7f;
728 if ((bits & 0x80) == 0) {
729 if (run_length == 0) {
737 if (non_mod == 1 && bits == 1)
738 pixels_read += run_length;
741 bits = map_table[bits];
742 while (run_length-- > 0 && pixels_read < dbuf_len) {
751 av_log(avctx, AV_LOG_ERROR, "line overflow\n");
756 static int save_subtitle_set(AVCodecContext *avctx, AVSubtitle *sub, int *got_output)
758 DVBSubContext *ctx = avctx->priv_data;
759 DVBSubRegionDisplay *display;
760 DVBSubDisplayDefinition *display_def = ctx->display_definition;
761 DVBSubRegion *region;
762 AVSubtitleRect *rect;
764 uint32_t *clut_table;
766 int offset_x=0, offset_y=0;
771 offset_x = display_def->x;
772 offset_y = display_def->y;
775 /* Not touching AVSubtitles again*/
777 avpriv_request_sample(ctx, "Different Version of Segment asked Twice\n");
778 return AVERROR_PATCHWELCOME;
780 for (display = ctx->display_list; display; display = display->next) {
781 region = get_region(ctx, display->region_id);
782 if (region && region->dirty)
786 if(ctx->compute_edt == 0) {
787 sub->end_display_time = ctx->time_out * 1000;
789 } else if (ctx->prev_start != AV_NOPTS_VALUE) {
790 sub->end_display_time = av_rescale_q((sub->pts - ctx->prev_start ), AV_TIME_BASE_Q, (AVRational){ 1, 1000 }) - 1;
793 if (sub->num_rects > 0) {
795 sub->rects = av_mallocz_array(sizeof(*sub->rects), sub->num_rects);
797 ret = AVERROR(ENOMEM);
801 for(i=0; i<sub->num_rects; i++)
802 sub->rects[i] = av_mallocz(sizeof(*sub->rects[i]));
806 for (display = ctx->display_list; display; display = display->next) {
807 region = get_region(ctx, display->region_id);
815 rect = sub->rects[i];
816 rect->x = display->x_pos + offset_x;
817 rect->y = display->y_pos + offset_y;
818 rect->w = region->width;
819 rect->h = region->height;
820 rect->nb_colors = (1 << region->depth);
821 rect->type = SUBTITLE_BITMAP;
822 rect->pict.linesize[0] = region->width;
824 clut = get_clut(ctx, region->clut);
827 clut = &default_clut;
829 switch (region->depth) {
831 clut_table = clut->clut4;
834 clut_table = clut->clut256;
838 clut_table = clut->clut16;
842 rect->pict.data[1] = av_mallocz(AVPALETTE_SIZE);
843 if (!rect->pict.data[1]) {
844 ret = AVERROR(ENOMEM);
847 memcpy(rect->pict.data[1], clut_table, (1 << region->depth) * sizeof(uint32_t));
849 rect->pict.data[0] = av_malloc(region->buf_size);
850 if (!rect->pict.data[0]) {
851 ret = AVERROR(ENOMEM);
855 memcpy(rect->pict.data[0], region->pbuf, region->buf_size);
864 for(i=0; i<sub->num_rects; i++) {
865 rect = sub->rects[i];
867 av_freep(&rect->pict.data[0]);
868 av_freep(&rect->pict.data[1]);
870 av_freep(&sub->rects[i]);
872 av_freep(&sub->rects);
878 static void dvbsub_parse_pixel_data_block(AVCodecContext *avctx, DVBSubObjectDisplay *display,
879 const uint8_t *buf, int buf_size, int top_bottom, int non_mod)
881 DVBSubContext *ctx = avctx->priv_data;
883 DVBSubRegion *region = get_region(ctx, display->region_id);
884 const uint8_t *buf_end = buf + buf_size;
889 uint8_t map2to4[] = { 0x0, 0x7, 0x8, 0xf};
890 uint8_t map2to8[] = {0x00, 0x77, 0x88, 0xff};
891 uint8_t map4to8[] = {0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
892 0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff};
896 av_dlog(avctx, "DVB pixel block size %d, %s field:\n", buf_size,
897 top_bottom ? "bottom" : "top");
899 for (i = 0; i < buf_size; i++) {
901 av_dlog(avctx, "0x%8p: ", buf+i);
903 av_dlog(avctx, "%02x ", buf[i]);
905 av_dlog(avctx, "\n");
909 av_dlog(avctx, "\n");
918 x_pos = display->x_pos;
919 y_pos = display->y_pos;
923 while (buf < buf_end) {
924 if ((*buf!=0xf0 && x_pos >= region->width) || y_pos >= region->height) {
925 av_log(avctx, AV_LOG_ERROR, "Invalid object location! %d-%d %d-%d %02x\n", x_pos, region->width, y_pos, region->height, *buf);
931 if (region->depth == 8)
933 else if (region->depth == 4)
938 x_pos = dvbsub_read_2bit_string(avctx, pbuf + (y_pos * region->width),
939 region->width, &buf, buf_end - buf,
940 non_mod, map_table, x_pos);
943 if (region->depth < 4) {
944 av_log(avctx, AV_LOG_ERROR, "4-bit pixel string in %d-bit region!\n", region->depth);
948 if (region->depth == 8)
953 x_pos = dvbsub_read_4bit_string(avctx, pbuf + (y_pos * region->width),
954 region->width, &buf, buf_end - buf,
955 non_mod, map_table, x_pos);
958 if (region->depth < 8) {
959 av_log(avctx, AV_LOG_ERROR, "8-bit pixel string in %d-bit region!\n", region->depth);
963 x_pos = dvbsub_read_8bit_string(avctx, pbuf + (y_pos * region->width),
964 region->width, &buf, buf_end - buf,
965 non_mod, NULL, x_pos);
969 map2to4[0] = (*buf) >> 4;
970 map2to4[1] = (*buf++) & 0xf;
971 map2to4[2] = (*buf) >> 4;
972 map2to4[3] = (*buf++) & 0xf;
975 for (i = 0; i < 4; i++)
979 for (i = 0; i < 16; i++)
984 x_pos = display->x_pos;
988 av_log(avctx, AV_LOG_INFO, "Unknown/unsupported pixel block 0x%x\n", *(buf-1));
994 static int dvbsub_parse_object_segment(AVCodecContext *avctx,
995 const uint8_t *buf, int buf_size)
997 DVBSubContext *ctx = avctx->priv_data;
999 const uint8_t *buf_end = buf + buf_size;
1001 DVBSubObject *object;
1002 DVBSubObjectDisplay *display;
1003 int top_field_len, bottom_field_len;
1005 int coding_method, non_modifying_color;
1007 object_id = AV_RB16(buf);
1010 object = get_object(ctx, object_id);
1013 return AVERROR_INVALIDDATA;
1015 coding_method = ((*buf) >> 2) & 3;
1016 non_modifying_color = ((*buf++) >> 1) & 1;
1018 if (coding_method == 0) {
1019 top_field_len = AV_RB16(buf);
1021 bottom_field_len = AV_RB16(buf);
1024 if (buf + top_field_len + bottom_field_len > buf_end) {
1025 av_log(avctx, AV_LOG_ERROR, "Field data size too large\n");
1026 return AVERROR_INVALIDDATA;
1029 for (display = object->display_list; display; display = display->object_list_next) {
1030 const uint8_t *block = buf;
1031 int bfl = bottom_field_len;
1033 dvbsub_parse_pixel_data_block(avctx, display, block, top_field_len, 0,
1034 non_modifying_color);
1036 if (bottom_field_len > 0)
1037 block = buf + top_field_len;
1039 bfl = top_field_len;
1041 dvbsub_parse_pixel_data_block(avctx, display, block, bfl, 1,
1042 non_modifying_color);
1045 /* } else if (coding_method == 1) {*/
1048 av_log(avctx, AV_LOG_ERROR, "Unknown object coding %d\n", coding_method);
1054 static int dvbsub_parse_clut_segment(AVCodecContext *avctx,
1055 const uint8_t *buf, int buf_size)
1057 DVBSubContext *ctx = avctx->priv_data;
1059 const uint8_t *buf_end = buf + buf_size;
1063 int entry_id, depth , full_range;
1064 int y, cr, cb, alpha;
1065 int r, g, b, r_add, g_add, b_add;
1067 av_dlog(avctx, "DVB clut packet:\n");
1069 for (i=0; i < buf_size; i++) {
1070 av_dlog(avctx, "%02x ", buf[i]);
1072 av_dlog(avctx, "\n");
1076 av_dlog(avctx, "\n");
1079 version = ((*buf)>>4)&15;
1082 clut = get_clut(ctx, clut_id);
1085 clut = av_malloc(sizeof(DVBSubCLUT));
1087 return AVERROR(ENOMEM);
1089 memcpy(clut, &default_clut, sizeof(DVBSubCLUT));
1094 clut->next = ctx->clut_list;
1095 ctx->clut_list = clut;
1098 if (clut->version != version) {
1100 clut->version = version;
1102 while (buf + 4 < buf_end) {
1105 depth = (*buf) & 0xe0;
1108 av_log(avctx, AV_LOG_ERROR, "Invalid clut depth 0x%x!\n", *buf);
1109 return AVERROR_INVALIDDATA;
1112 full_range = (*buf++) & 1;
1121 cr = (((buf[0] & 3) << 2) | ((buf[1] >> 6) & 3)) << 4;
1122 cb = (buf[1] << 2) & 0xf0;
1123 alpha = (buf[1] << 6) & 0xc0;
1131 YUV_TO_RGB1_CCIR(cb, cr);
1132 YUV_TO_RGB2_CCIR(r, g, b, y);
1134 av_dlog(avctx, "clut %d := (%d,%d,%d,%d)\n", entry_id, r, g, b, alpha);
1135 if (!!(depth & 0x80) + !!(depth & 0x40) + !!(depth & 0x20) > 1) {
1136 av_dlog(avctx, "More than one bit level marked: %x\n", depth);
1137 if (avctx->strict_std_compliance > FF_COMPLIANCE_NORMAL)
1138 return AVERROR_INVALIDDATA;
1142 clut->clut4[entry_id] = RGBA(r,g,b,255 - alpha);
1143 else if (depth & 0x40)
1144 clut->clut16[entry_id] = RGBA(r,g,b,255 - alpha);
1145 else if (depth & 0x20)
1146 clut->clut256[entry_id] = RGBA(r,g,b,255 - alpha);
1154 static int dvbsub_parse_region_segment(AVCodecContext *avctx,
1155 const uint8_t *buf, int buf_size)
1157 DVBSubContext *ctx = avctx->priv_data;
1159 const uint8_t *buf_end = buf + buf_size;
1160 int region_id, object_id;
1161 int av_unused version;
1162 DVBSubRegion *region;
1163 DVBSubObject *object;
1164 DVBSubObjectDisplay *display;
1168 return AVERROR_INVALIDDATA;
1172 region = get_region(ctx, region_id);
1175 region = av_mallocz(sizeof(DVBSubRegion));
1177 return AVERROR(ENOMEM);
1179 region->id = region_id;
1180 region->version = -1;
1182 region->next = ctx->region_list;
1183 ctx->region_list = region;
1186 version = ((*buf)>>4) & 15;
1187 fill = ((*buf++) >> 3) & 1;
1189 region->width = AV_RB16(buf);
1191 region->height = AV_RB16(buf);
1194 if (region->width * region->height != region->buf_size) {
1195 av_free(region->pbuf);
1197 region->buf_size = region->width * region->height;
1199 region->pbuf = av_malloc(region->buf_size);
1201 return AVERROR(ENOMEM);
1207 region->depth = 1 << (((*buf++) >> 2) & 7);
1208 if(region->depth<2 || region->depth>8){
1209 av_log(avctx, AV_LOG_ERROR, "region depth %d is invalid\n", region->depth);
1212 region->clut = *buf++;
1214 if (region->depth == 8) {
1215 region->bgcolor = *buf++;
1220 if (region->depth == 4)
1221 region->bgcolor = (((*buf++) >> 4) & 15);
1223 region->bgcolor = (((*buf++) >> 2) & 3);
1226 av_dlog(avctx, "Region %d, (%dx%d)\n", region_id, region->width, region->height);
1229 memset(region->pbuf, region->bgcolor, region->buf_size);
1230 av_dlog(avctx, "Fill region (%d)\n", region->bgcolor);
1233 delete_region_display_list(ctx, region);
1235 while (buf + 5 < buf_end) {
1236 object_id = AV_RB16(buf);
1239 object = get_object(ctx, object_id);
1242 object = av_mallocz(sizeof(DVBSubObject));
1244 return AVERROR(ENOMEM);
1246 object->id = object_id;
1247 object->next = ctx->object_list;
1248 ctx->object_list = object;
1251 object->type = (*buf) >> 6;
1253 display = av_mallocz(sizeof(DVBSubObjectDisplay));
1255 return AVERROR(ENOMEM);
1257 display->object_id = object_id;
1258 display->region_id = region_id;
1260 display->x_pos = AV_RB16(buf) & 0xfff;
1262 display->y_pos = AV_RB16(buf) & 0xfff;
1265 if ((object->type == 1 || object->type == 2) && buf+1 < buf_end) {
1266 display->fgcolor = *buf++;
1267 display->bgcolor = *buf++;
1270 display->region_list_next = region->display_list;
1271 region->display_list = display;
1273 display->object_list_next = object->display_list;
1274 object->display_list = display;
1280 static int dvbsub_parse_page_segment(AVCodecContext *avctx,
1281 const uint8_t *buf, int buf_size, AVSubtitle *sub, int *got_output)
1283 DVBSubContext *ctx = avctx->priv_data;
1284 DVBSubRegionDisplay *display;
1285 DVBSubRegionDisplay *tmp_display_list, **tmp_ptr;
1287 const uint8_t *buf_end = buf + buf_size;
1294 return AVERROR_INVALIDDATA;
1297 version = ((*buf)>>4) & 15;
1298 page_state = ((*buf++) >> 2) & 3;
1300 if (ctx->version == version) {
1304 ctx->time_out = timeout;
1305 ctx->version = version;
1307 av_dlog(avctx, "Page time out %ds, state %d\n", ctx->time_out, page_state);
1309 if(ctx->compute_edt == 1)
1310 save_subtitle_set(avctx, sub, got_output);
1312 if (page_state == 1 || page_state == 2) {
1313 delete_regions(ctx);
1314 delete_objects(ctx);
1318 tmp_display_list = ctx->display_list;
1319 ctx->display_list = NULL;
1321 while (buf + 5 < buf_end) {
1325 display = tmp_display_list;
1326 tmp_ptr = &tmp_display_list;
1328 while (display && display->region_id != region_id) {
1329 tmp_ptr = &display->next;
1330 display = display->next;
1334 display = av_mallocz(sizeof(DVBSubRegionDisplay));
1336 return AVERROR(ENOMEM);
1339 display->region_id = region_id;
1341 display->x_pos = AV_RB16(buf);
1343 display->y_pos = AV_RB16(buf);
1346 *tmp_ptr = display->next;
1348 display->next = ctx->display_list;
1349 ctx->display_list = display;
1351 av_dlog(avctx, "Region %d, (%d,%d)\n", region_id, display->x_pos, display->y_pos);
1354 while (tmp_display_list) {
1355 display = tmp_display_list;
1357 tmp_display_list = display->next;
1367 static void save_display_set(DVBSubContext *ctx)
1369 DVBSubRegion *region;
1370 DVBSubRegionDisplay *display;
1372 uint32_t *clut_table;
1373 int x_pos, y_pos, width, height;
1374 int x, y, y_off, x_off;
1377 static int fileno_index = 0;
1384 for (display = ctx->display_list; display; display = display->next) {
1385 region = get_region(ctx, display->region_id);
1391 x_pos = display->x_pos;
1392 y_pos = display->y_pos;
1393 width = region->width;
1394 height = region->height;
1396 if (display->x_pos < x_pos) {
1397 width += (x_pos - display->x_pos);
1398 x_pos = display->x_pos;
1401 if (display->y_pos < y_pos) {
1402 height += (y_pos - display->y_pos);
1403 y_pos = display->y_pos;
1406 if (display->x_pos + region->width > x_pos + width) {
1407 width = display->x_pos + region->width - x_pos;
1410 if (display->y_pos + region->height > y_pos + height) {
1411 height = display->y_pos + region->height - y_pos;
1418 pbuf = av_malloc(width * height * 4);
1420 return AVERROR(ENOMEM);
1422 for (display = ctx->display_list; display; display = display->next) {
1423 region = get_region(ctx, display->region_id);
1428 x_off = display->x_pos - x_pos;
1429 y_off = display->y_pos - y_pos;
1431 clut = get_clut(ctx, region->clut);
1434 clut = &default_clut;
1436 switch (region->depth) {
1438 clut_table = clut->clut4;
1441 clut_table = clut->clut256;
1445 clut_table = clut->clut16;
1449 for (y = 0; y < region->height; y++) {
1450 for (x = 0; x < region->width; x++) {
1451 pbuf[((y + y_off) * width) + x_off + x] =
1452 clut_table[region->pbuf[y * region->width + x]];
1458 snprintf(filename, sizeof(filename), "dvbs.%d", fileno_index);
1460 png_save2(filename, pbuf, width, height);
1469 static int dvbsub_parse_display_definition_segment(AVCodecContext *avctx,
1473 DVBSubContext *ctx = avctx->priv_data;
1474 DVBSubDisplayDefinition *display_def = ctx->display_definition;
1475 int dds_version, info_byte;
1478 return AVERROR_INVALIDDATA;
1480 info_byte = bytestream_get_byte(&buf);
1481 dds_version = info_byte >> 4;
1482 if (display_def && display_def->version == dds_version)
1483 return 0; // already have this display definition version
1486 display_def = av_mallocz(sizeof(*display_def));
1488 return AVERROR(ENOMEM);
1489 ctx->display_definition = display_def;
1492 display_def->version = dds_version;
1495 display_def->width = bytestream_get_be16(&buf) + 1;
1496 display_def->height = bytestream_get_be16(&buf) + 1;
1497 if (!avctx->width || !avctx->height) {
1498 avctx->width = display_def->width;
1499 avctx->height = display_def->height;
1503 return AVERROR_INVALIDDATA;
1505 if (info_byte & 1<<3) { // display_window_flag
1506 display_def->x = bytestream_get_be16(&buf);
1507 display_def->width = bytestream_get_be16(&buf) - display_def->x + 1;
1508 display_def->y = bytestream_get_be16(&buf);
1509 display_def->height = bytestream_get_be16(&buf) - display_def->y + 1;
1515 static int dvbsub_display_end_segment(AVCodecContext *avctx, const uint8_t *buf,
1516 int buf_size, AVSubtitle *sub,int *got_output)
1518 DVBSubContext *ctx = avctx->priv_data;
1520 if(ctx->compute_edt == 0)
1521 save_subtitle_set(avctx, sub, got_output);
1523 save_display_set(ctx);
1528 static int dvbsub_decode(AVCodecContext *avctx,
1529 void *data, int *data_size,
1532 const uint8_t *buf = avpkt->data;
1533 int buf_size = avpkt->size;
1534 DVBSubContext *ctx = avctx->priv_data;
1535 AVSubtitle *sub = data;
1536 const uint8_t *p, *p_end;
1542 int got_segment = 0;
1544 av_dlog(avctx, "DVB sub packet:\n");
1546 for (i=0; i < buf_size; i++) {
1547 av_dlog(avctx, "%02x ", buf[i]);
1549 av_dlog(avctx, "\n");
1553 av_dlog(avctx, "\n");
1555 if (buf_size <= 6 || *buf != 0x0f) {
1556 av_dlog(avctx, "incomplete or broken packet");
1557 return AVERROR_INVALIDDATA;
1561 p_end = buf + buf_size;
1563 while (p_end - p >= 6 && *p == 0x0f) {
1565 segment_type = *p++;
1566 page_id = AV_RB16(p);
1568 segment_length = AV_RB16(p);
1571 if (avctx->debug & FF_DEBUG_STARTCODE) {
1572 av_log(avctx, AV_LOG_DEBUG, "segment_type:%d page_id:%d segment_length:%d\n", segment_type, page_id, segment_length);
1575 if (p_end - p < segment_length) {
1576 av_dlog(avctx, "incomplete or broken packet");
1581 if (page_id == ctx->composition_id || page_id == ctx->ancillary_id ||
1582 ctx->composition_id == -1 || ctx->ancillary_id == -1) {
1584 switch (segment_type) {
1585 case DVBSUB_PAGE_SEGMENT:
1586 ret = dvbsub_parse_page_segment(avctx, p, segment_length, sub, data_size);
1589 case DVBSUB_REGION_SEGMENT:
1590 ret = dvbsub_parse_region_segment(avctx, p, segment_length);
1593 case DVBSUB_CLUT_SEGMENT:
1594 ret = dvbsub_parse_clut_segment(avctx, p, segment_length);
1595 if (ret < 0) goto end;
1598 case DVBSUB_OBJECT_SEGMENT:
1599 ret = dvbsub_parse_object_segment(avctx, p, segment_length);
1602 case DVBSUB_DISPLAYDEFINITION_SEGMENT:
1603 ret = dvbsub_parse_display_definition_segment(avctx, p,
1606 case DVBSUB_DISPLAY_SEGMENT:
1607 ret = dvbsub_display_end_segment(avctx, p, segment_length, sub, data_size);
1611 av_dlog(avctx, "Subtitling segment type 0x%x, page id %d, length %d\n",
1612 segment_type, page_id, segment_length);
1619 p += segment_length;
1621 // Some streams do not send a display segment but if we have all the other
1622 // segments then we need no further data.
1623 if (got_segment == 15) {
1624 av_log(avctx, AV_LOG_DEBUG, "Missing display_end_segment, emulating\n");
1625 dvbsub_display_end_segment(avctx, p, 0, sub, data_size);
1631 avsubtitle_free(sub);
1634 if(ctx->compute_edt == 1 )
1635 FFSWAP(int64_t, ctx->prev_start, sub->pts);
1641 #define DS AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_SUBTITLE_PARAM
1642 static const AVOption options[] = {
1643 {"compute_edt", "compute end of time using pts or timeout", offsetof(DVBSubContext, compute_edt), FF_OPT_TYPE_INT, {.i64 = 0}, 0, 1, DS},
1646 static const AVClass dvbsubdec_class = {
1647 .class_name = "DVB Sub Decoder",
1648 .item_name = av_default_item_name,
1650 .version = LIBAVUTIL_VERSION_INT,
1653 AVCodec ff_dvbsub_decoder = {
1655 .long_name = NULL_IF_CONFIG_SMALL("DVB subtitles"),
1656 .type = AVMEDIA_TYPE_SUBTITLE,
1657 .id = AV_CODEC_ID_DVB_SUBTITLE,
1658 .priv_data_size = sizeof(DVBSubContext),
1659 .init = dvbsub_init_decoder,
1660 .close = dvbsub_close_decoder,
1661 .decode = dvbsub_decode,
1662 .priv_class = &dvbsubdec_class,