]> git.sesse.net Git - ffmpeg/blob - libavcodec/dvbsubdec.c
Merge commit 'a6defd1f5b1bffcea7aa00ff379a6602cdaf2d05'
[ffmpeg] / libavcodec / dvbsubdec.c
1 /*
2  * DVB subtitle decoding
3  * Copyright (c) 2005 Ian Caulfield
4  *
5  * This file is part of FFmpeg.
6  *
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.
11  *
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.
16  *
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
20  */
21
22 #include "avcodec.h"
23 #include "get_bits.h"
24 #include "bytestream.h"
25 #include "libavutil/colorspace.h"
26 #include "libavutil/opt.h"
27
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
34
35 #define cm (ff_crop_tab + MAX_NEG_CROP)
36
37 #ifdef DEBUG
38 #if 0
39 static void png_save(const char *filename, uint8_t *bitmap, int w, int h,
40                      uint32_t *rgba_palette)
41 {
42     int x, y, v;
43     FILE *f;
44     char fname[40], fname2[40];
45     char command[1024];
46
47     snprintf(fname, 40, "%s.ppm", filename);
48
49     f = fopen(fname, "w");
50     if (!f) {
51         perror(fname);
52         return;
53     }
54     fprintf(f, "P6\n"
55             "%d %d\n"
56             "%d\n",
57             w, h, 255);
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);
64         }
65     }
66     fclose(f);
67
68
69     snprintf(fname2, 40, "%s-a.pgm", filename);
70
71     f = fopen(fname2, "w");
72     if (!f) {
73         perror(fname2);
74         return;
75     }
76     fprintf(f, "P5\n"
77             "%d %d\n"
78             "%d\n",
79             w, h, 255);
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);
84         }
85     }
86     fclose(f);
87
88     snprintf(command, 1024, "pnmtopng -alpha %s %s > %s.png 2> /dev/null", fname2, fname, filename);
89     system(command);
90
91     snprintf(command, 1024, "rm %s %s", fname, fname2);
92     system(command);
93 }
94 #endif
95
96 static void png_save2(const char *filename, uint32_t *bitmap, int w, int h)
97 {
98     int x, y, v;
99     FILE *f;
100     char fname[40], fname2[40];
101     char command[1024];
102
103     snprintf(fname, sizeof(fname), "%s.ppm", filename);
104
105     f = fopen(fname, "w");
106     if (!f) {
107         perror(fname);
108         return;
109     }
110     fprintf(f, "P6\n"
111             "%d %d\n"
112             "%d\n",
113             w, h, 255);
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);
120         }
121     }
122     fclose(f);
123
124
125     snprintf(fname2, sizeof(fname2), "%s-a.pgm", filename);
126
127     f = fopen(fname2, "w");
128     if (!f) {
129         perror(fname2);
130         return;
131     }
132     fprintf(f, "P5\n"
133             "%d %d\n"
134             "%d\n",
135             w, h, 255);
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);
140         }
141     }
142     fclose(f);
143
144     snprintf(command, sizeof(command), "pnmtopng -alpha %s %s > %s.png 2> /dev/null", fname2, fname, filename);
145     system(command);
146
147     snprintf(command, sizeof(command), "rm %s %s", fname, fname2);
148     system(command);
149 }
150 #endif
151
152 #define RGBA(r,g,b,a) (((unsigned)(a) << 24) | ((r) << 16) | ((g) << 8) | (b))
153
154 typedef struct DVBSubCLUT {
155     int id;
156     int version;
157
158     uint32_t clut4[4];
159     uint32_t clut16[16];
160     uint32_t clut256[256];
161
162     struct DVBSubCLUT *next;
163 } DVBSubCLUT;
164
165 static DVBSubCLUT default_clut;
166
167 typedef struct DVBSubObjectDisplay {
168     int object_id;
169     int region_id;
170
171     int x_pos;
172     int y_pos;
173
174     int fgcolor;
175     int bgcolor;
176
177     struct DVBSubObjectDisplay *region_list_next;
178     struct DVBSubObjectDisplay *object_list_next;
179 } DVBSubObjectDisplay;
180
181 typedef struct DVBSubObject {
182     int id;
183     int version;
184
185     int type;
186
187     DVBSubObjectDisplay *display_list;
188
189     struct DVBSubObject *next;
190 } DVBSubObject;
191
192 typedef struct DVBSubRegionDisplay {
193     int region_id;
194
195     int x_pos;
196     int y_pos;
197
198     struct DVBSubRegionDisplay *next;
199 } DVBSubRegionDisplay;
200
201 typedef struct DVBSubRegion {
202     int id;
203     int version;
204
205     int width;
206     int height;
207     int depth;
208
209     int clut;
210     int bgcolor;
211
212     uint8_t *pbuf;
213     int buf_size;
214     int dirty;
215
216     DVBSubObjectDisplay *display_list;
217
218     struct DVBSubRegion *next;
219 } DVBSubRegion;
220
221 typedef struct DVBSubDisplayDefinition {
222     int version;
223
224     int x;
225     int y;
226     int width;
227     int height;
228 } DVBSubDisplayDefinition;
229
230 typedef struct DVBSubContext {
231     AVClass *class;
232     int composition_id;
233     int ancillary_id;
234
235     int version;
236     int time_out;
237     int compute_edt; /**< if 1 end display time calculated using pts
238                           if 0 (Default) calculated using time out */
239     int64_t prev_start;
240     DVBSubRegion *region_list;
241     DVBSubCLUT   *clut_list;
242     DVBSubObject *object_list;
243
244     DVBSubRegionDisplay *display_list;
245     DVBSubDisplayDefinition *display_definition;
246 } DVBSubContext;
247
248
249 static DVBSubObject* get_object(DVBSubContext *ctx, int object_id)
250 {
251     DVBSubObject *ptr = ctx->object_list;
252
253     while (ptr && ptr->id != object_id) {
254         ptr = ptr->next;
255     }
256
257     return ptr;
258 }
259
260 static DVBSubCLUT* get_clut(DVBSubContext *ctx, int clut_id)
261 {
262     DVBSubCLUT *ptr = ctx->clut_list;
263
264     while (ptr && ptr->id != clut_id) {
265         ptr = ptr->next;
266     }
267
268     return ptr;
269 }
270
271 static DVBSubRegion* get_region(DVBSubContext *ctx, int region_id)
272 {
273     DVBSubRegion *ptr = ctx->region_list;
274
275     while (ptr && ptr->id != region_id) {
276         ptr = ptr->next;
277     }
278
279     return ptr;
280 }
281
282 static void delete_region_display_list(DVBSubContext *ctx, DVBSubRegion *region)
283 {
284     DVBSubObject *object, *obj2, **obj2_ptr;
285     DVBSubObjectDisplay *display, *obj_disp, **obj_disp_ptr;
286
287     while (region->display_list) {
288         display = region->display_list;
289
290         object = get_object(ctx, display->object_id);
291
292         if (object) {
293             obj_disp_ptr = &object->display_list;
294             obj_disp = *obj_disp_ptr;
295
296             while (obj_disp && obj_disp != display) {
297                 obj_disp_ptr = &obj_disp->object_list_next;
298                 obj_disp = *obj_disp_ptr;
299             }
300
301             if (obj_disp) {
302                 *obj_disp_ptr = obj_disp->object_list_next;
303
304                 if (!object->display_list) {
305                     obj2_ptr = &ctx->object_list;
306                     obj2 = *obj2_ptr;
307
308                     while (obj2 != object) {
309                         assert(obj2);
310                         obj2_ptr = &obj2->next;
311                         obj2 = *obj2_ptr;
312                     }
313
314                     *obj2_ptr = obj2->next;
315
316                     av_freep(&obj2);
317                 }
318             }
319         }
320
321         region->display_list = display->region_list_next;
322
323         av_freep(&display);
324     }
325
326 }
327
328 static void delete_cluts(DVBSubContext *ctx)
329 {
330     while (ctx->clut_list) {
331         DVBSubCLUT *clut = ctx->clut_list;
332
333         ctx->clut_list = clut->next;
334
335         av_freep(&clut);
336     }
337 }
338
339 static void delete_objects(DVBSubContext *ctx)
340 {
341     while (ctx->object_list) {
342         DVBSubObject *object = ctx->object_list;
343
344         ctx->object_list = object->next;
345
346         av_freep(&object);
347     }
348 }
349
350 static void delete_regions(DVBSubContext *ctx)
351 {
352     while (ctx->region_list) {
353         DVBSubRegion *region = ctx->region_list;
354
355         ctx->region_list = region->next;
356
357         delete_region_display_list(ctx, region);
358
359         av_freep(&region->pbuf);
360         av_freep(&region);
361     }
362 }
363
364 static av_cold int dvbsub_init_decoder(AVCodecContext *avctx)
365 {
366     int i, r, g, b, a = 0;
367     DVBSubContext *ctx = avctx->priv_data;
368
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;
373     } else {
374         if (avctx->extradata_size > 5) {
375             av_log(avctx, AV_LOG_WARNING, "Decoding first DVB subtitles sub-stream\n");
376         }
377
378         ctx->composition_id = AV_RB16(avctx->extradata);
379         ctx->ancillary_id   = AV_RB16(avctx->extradata + 2);
380     }
381
382     ctx->version = -1;
383     ctx->prev_start = AV_NOPTS_VALUE;
384
385     default_clut.id = -1;
386     default_clut.next = NULL;
387
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);
392
393     default_clut.clut16[0] = RGBA(  0,   0,   0,   0);
394     for (i = 1; i < 16; i++) {
395         if (i < 8) {
396             r = (i & 1) ? 255 : 0;
397             g = (i & 2) ? 255 : 0;
398             b = (i & 4) ? 255 : 0;
399         } else {
400             r = (i & 1) ? 127 : 0;
401             g = (i & 2) ? 127 : 0;
402             b = (i & 4) ? 127 : 0;
403         }
404         default_clut.clut16[i] = RGBA(r, g, b, 255);
405     }
406
407     default_clut.clut256[0] = RGBA(  0,   0,   0,   0);
408     for (i = 1; i < 256; i++) {
409         if (i < 8) {
410             r = (i & 1) ? 255 : 0;
411             g = (i & 2) ? 255 : 0;
412             b = (i & 4) ? 255 : 0;
413             a = 63;
414         } else {
415             switch (i & 0x88) {
416             case 0x00:
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);
420                 a = 255;
421                 break;
422             case 0x08:
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);
426                 a = 127;
427                 break;
428             case 0x80:
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);
432                 a = 255;
433                 break;
434             case 0x88:
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);
438                 a = 255;
439                 break;
440             }
441         }
442         default_clut.clut256[i] = RGBA(r, g, b, a);
443     }
444
445     return 0;
446 }
447
448 static av_cold int dvbsub_close_decoder(AVCodecContext *avctx)
449 {
450     DVBSubContext *ctx = avctx->priv_data;
451     DVBSubRegionDisplay *display;
452
453     delete_regions(ctx);
454
455     delete_objects(ctx);
456
457     delete_cluts(ctx);
458
459     av_freep(&ctx->display_definition);
460
461     while (ctx->display_list) {
462         display = ctx->display_list;
463         ctx->display_list = display->next;
464
465         av_freep(&display);
466     }
467
468     return 0;
469 }
470
471 static int dvbsub_read_2bit_string(uint8_t *destbuf, int dbuf_len,
472                                    const uint8_t **srcbuf, int buf_size,
473                                    int non_mod, uint8_t *map_table, int x_pos)
474 {
475     GetBitContext gb;
476
477     int bits;
478     int run_length;
479     int pixels_read = x_pos;
480
481     init_get_bits(&gb, *srcbuf, buf_size << 3);
482
483     destbuf += x_pos;
484
485     while (get_bits_count(&gb) < buf_size << 3 && pixels_read < dbuf_len) {
486         bits = get_bits(&gb, 2);
487
488         if (bits) {
489             if (non_mod != 1 || bits != 1) {
490                 if (map_table)
491                     *destbuf++ = map_table[bits];
492                 else
493                     *destbuf++ = bits;
494             }
495             pixels_read++;
496         } else {
497             bits = get_bits1(&gb);
498             if (bits == 1) {
499                 run_length = get_bits(&gb, 3) + 3;
500                 bits = get_bits(&gb, 2);
501
502                 if (non_mod == 1 && bits == 1)
503                     pixels_read += run_length;
504                 else {
505                     if (map_table)
506                         bits = map_table[bits];
507                     while (run_length-- > 0 && pixels_read < dbuf_len) {
508                         *destbuf++ = bits;
509                         pixels_read++;
510                     }
511                 }
512             } else {
513                 bits = get_bits1(&gb);
514                 if (bits == 0) {
515                     bits = get_bits(&gb, 2);
516                     if (bits == 2) {
517                         run_length = get_bits(&gb, 4) + 12;
518                         bits = get_bits(&gb, 2);
519
520                         if (non_mod == 1 && bits == 1)
521                             pixels_read += run_length;
522                         else {
523                             if (map_table)
524                                 bits = map_table[bits];
525                             while (run_length-- > 0 && pixels_read < dbuf_len) {
526                                 *destbuf++ = bits;
527                                 pixels_read++;
528                             }
529                         }
530                     } else if (bits == 3) {
531                         run_length = get_bits(&gb, 8) + 29;
532                         bits = get_bits(&gb, 2);
533
534                         if (non_mod == 1 && bits == 1)
535                             pixels_read += run_length;
536                         else {
537                             if (map_table)
538                                 bits = map_table[bits];
539                             while (run_length-- > 0 && pixels_read < dbuf_len) {
540                                 *destbuf++ = bits;
541                                 pixels_read++;
542                             }
543                         }
544                     } else if (bits == 1) {
545                         if (map_table)
546                             bits = map_table[0];
547                         else
548                             bits = 0;
549                         run_length = 2;
550                         while (run_length-- > 0 && pixels_read < dbuf_len) {
551                             *destbuf++ = bits;
552                             pixels_read++;
553                         }
554                     } else {
555                         (*srcbuf) += (get_bits_count(&gb) + 7) >> 3;
556                         return pixels_read;
557                     }
558                 } else {
559                     if (map_table)
560                         bits = map_table[0];
561                     else
562                         bits = 0;
563                     *destbuf++ = bits;
564                     pixels_read++;
565                 }
566             }
567         }
568     }
569
570     if (get_bits(&gb, 6))
571         av_log(0, AV_LOG_ERROR, "DVBSub error: line overflow\n");
572
573     (*srcbuf) += (get_bits_count(&gb) + 7) >> 3;
574
575     return pixels_read;
576 }
577
578 static int dvbsub_read_4bit_string(uint8_t *destbuf, int dbuf_len,
579                                    const uint8_t **srcbuf, int buf_size,
580                                    int non_mod, uint8_t *map_table, int x_pos)
581 {
582     GetBitContext gb;
583
584     int bits;
585     int run_length;
586     int pixels_read = x_pos;
587
588     init_get_bits(&gb, *srcbuf, buf_size << 3);
589
590     destbuf += x_pos;
591
592     while (get_bits_count(&gb) < buf_size << 3 && pixels_read < dbuf_len) {
593         bits = get_bits(&gb, 4);
594
595         if (bits) {
596             if (non_mod != 1 || bits != 1) {
597                 if (map_table)
598                     *destbuf++ = map_table[bits];
599                 else
600                     *destbuf++ = bits;
601             }
602             pixels_read++;
603         } else {
604             bits = get_bits1(&gb);
605             if (bits == 0) {
606                 run_length = get_bits(&gb, 3);
607
608                 if (run_length == 0) {
609                     (*srcbuf) += (get_bits_count(&gb) + 7) >> 3;
610                     return pixels_read;
611                 }
612
613                 run_length += 2;
614
615                 if (map_table)
616                     bits = map_table[0];
617                 else
618                     bits = 0;
619
620                 while (run_length-- > 0 && pixels_read < dbuf_len) {
621                     *destbuf++ = bits;
622                     pixels_read++;
623                 }
624             } else {
625                 bits = get_bits1(&gb);
626                 if (bits == 0) {
627                     run_length = get_bits(&gb, 2) + 4;
628                     bits = get_bits(&gb, 4);
629
630                     if (non_mod == 1 && bits == 1)
631                         pixels_read += run_length;
632                     else {
633                         if (map_table)
634                             bits = map_table[bits];
635                         while (run_length-- > 0 && pixels_read < dbuf_len) {
636                             *destbuf++ = bits;
637                             pixels_read++;
638                         }
639                     }
640                 } else {
641                     bits = get_bits(&gb, 2);
642                     if (bits == 2) {
643                         run_length = get_bits(&gb, 4) + 9;
644                         bits = get_bits(&gb, 4);
645
646                         if (non_mod == 1 && bits == 1)
647                             pixels_read += run_length;
648                         else {
649                             if (map_table)
650                                 bits = map_table[bits];
651                             while (run_length-- > 0 && pixels_read < dbuf_len) {
652                                 *destbuf++ = bits;
653                                 pixels_read++;
654                             }
655                         }
656                     } else if (bits == 3) {
657                         run_length = get_bits(&gb, 8) + 25;
658                         bits = get_bits(&gb, 4);
659
660                         if (non_mod == 1 && bits == 1)
661                             pixels_read += run_length;
662                         else {
663                             if (map_table)
664                                 bits = map_table[bits];
665                             while (run_length-- > 0 && pixels_read < dbuf_len) {
666                                 *destbuf++ = bits;
667                                 pixels_read++;
668                             }
669                         }
670                     } else if (bits == 1) {
671                         if (map_table)
672                             bits = map_table[0];
673                         else
674                             bits = 0;
675                         run_length = 2;
676                         while (run_length-- > 0 && pixels_read < dbuf_len) {
677                             *destbuf++ = bits;
678                             pixels_read++;
679                         }
680                     } else {
681                         if (map_table)
682                             bits = map_table[0];
683                         else
684                             bits = 0;
685                         *destbuf++ = bits;
686                         pixels_read ++;
687                     }
688                 }
689             }
690         }
691     }
692
693     if (get_bits(&gb, 8))
694         av_log(0, AV_LOG_ERROR, "DVBSub error: line overflow\n");
695
696     (*srcbuf) += (get_bits_count(&gb) + 7) >> 3;
697
698     return pixels_read;
699 }
700
701 static int dvbsub_read_8bit_string(uint8_t *destbuf, int dbuf_len,
702                                     const uint8_t **srcbuf, int buf_size,
703                                     int non_mod, uint8_t *map_table, int x_pos)
704 {
705     const uint8_t *sbuf_end = (*srcbuf) + buf_size;
706     int bits;
707     int run_length;
708     int pixels_read = x_pos;
709
710     destbuf += x_pos;
711
712     while (*srcbuf < sbuf_end && pixels_read < dbuf_len) {
713         bits = *(*srcbuf)++;
714
715         if (bits) {
716             if (non_mod != 1 || bits != 1) {
717                 if (map_table)
718                     *destbuf++ = map_table[bits];
719                 else
720                     *destbuf++ = bits;
721             }
722             pixels_read++;
723         } else {
724             bits = *(*srcbuf)++;
725             run_length = bits & 0x7f;
726             if ((bits & 0x80) == 0) {
727                 if (run_length == 0) {
728                     return pixels_read;
729                 }
730
731                 if (map_table)
732                     bits = map_table[0];
733                 else
734                     bits = 0;
735                 while (run_length-- > 0 && pixels_read < dbuf_len) {
736                     *destbuf++ = bits;
737                     pixels_read++;
738                 }
739             } else {
740                 bits = *(*srcbuf)++;
741
742                 if (non_mod == 1 && bits == 1)
743                     pixels_read += run_length;
744                 if (map_table)
745                     bits = map_table[bits];
746                 else while (run_length-- > 0 && pixels_read < dbuf_len) {
747                     *destbuf++ = bits;
748                     pixels_read++;
749                 }
750             }
751         }
752     }
753
754     if (*(*srcbuf)++)
755         av_log(0, AV_LOG_ERROR, "DVBSub error: line overflow\n");
756
757     return pixels_read;
758 }
759
760 static void save_subtitle_set(AVCodecContext *avctx, AVSubtitle *sub, int *got_output)
761 {
762     DVBSubContext *ctx = avctx->priv_data;
763     DVBSubRegionDisplay *display;
764     DVBSubDisplayDefinition *display_def = ctx->display_definition;
765     DVBSubRegion *region;
766     AVSubtitleRect *rect;
767     DVBSubCLUT *clut;
768     uint32_t *clut_table;
769     int i;
770     int offset_x=0, offset_y=0;
771
772
773     if (display_def) {
774         offset_x = display_def->x;
775         offset_y = display_def->y;
776     }
777
778     /* Not touching AVSubtitles again*/
779     if(sub->num_rects) {
780         avpriv_request_sample(ctx, "Different Version of Segment asked Twice\n");
781         return;
782     }
783     for (display = ctx->display_list; display; display = display->next) {
784         region = get_region(ctx, display->region_id);
785         if (region && region->dirty)
786             sub->num_rects++;
787     }
788
789     if(ctx->compute_edt == 0) {
790         sub->end_display_time = ctx->time_out * 1000;
791         *got_output = 1;
792     } else if (ctx->prev_start != AV_NOPTS_VALUE) {
793         sub->end_display_time = av_rescale_q((sub->pts - ctx->prev_start ), AV_TIME_BASE_Q, (AVRational){ 1, 1000 }) - 1;
794         *got_output = 1;
795     }
796     if (sub->num_rects > 0) {
797
798         sub->rects = av_mallocz_array(sizeof(*sub->rects), sub->num_rects);
799         for(i=0; i<sub->num_rects; i++)
800             sub->rects[i] = av_mallocz(sizeof(*sub->rects[i]));
801
802         i = 0;
803
804         for (display = ctx->display_list; display; display = display->next) {
805             region = get_region(ctx, display->region_id);
806
807             if (!region)
808                 continue;
809
810             if (!region->dirty)
811                 continue;
812
813             rect = sub->rects[i];
814             rect->x = display->x_pos + offset_x;
815             rect->y = display->y_pos + offset_y;
816             rect->w = region->width;
817             rect->h = region->height;
818             rect->nb_colors = (1 << region->depth);
819             rect->type      = SUBTITLE_BITMAP;
820             rect->pict.linesize[0] = region->width;
821
822             clut = get_clut(ctx, region->clut);
823
824             if (!clut)
825                 clut = &default_clut;
826
827             switch (region->depth) {
828             case 2:
829                 clut_table = clut->clut4;
830                 break;
831             case 8:
832                 clut_table = clut->clut256;
833                 break;
834             case 4:
835             default:
836                 clut_table = clut->clut16;
837                 break;
838             }
839
840             rect->pict.data[1] = av_mallocz(AVPALETTE_SIZE);
841             memcpy(rect->pict.data[1], clut_table, (1 << region->depth) * sizeof(uint32_t));
842
843             rect->pict.data[0] = av_malloc(region->buf_size);
844             memcpy(rect->pict.data[0], region->pbuf, region->buf_size);
845
846             i++;
847         }
848     }
849 }
850
851 static void dvbsub_parse_pixel_data_block(AVCodecContext *avctx, DVBSubObjectDisplay *display,
852                                           const uint8_t *buf, int buf_size, int top_bottom, int non_mod)
853 {
854     DVBSubContext *ctx = avctx->priv_data;
855
856     DVBSubRegion *region = get_region(ctx, display->region_id);
857     const uint8_t *buf_end = buf + buf_size;
858     uint8_t *pbuf;
859     int x_pos, y_pos;
860     int i;
861
862     uint8_t map2to4[] = { 0x0,  0x7,  0x8,  0xf};
863     uint8_t map2to8[] = {0x00, 0x77, 0x88, 0xff};
864     uint8_t map4to8[] = {0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
865                          0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff};
866     uint8_t *map_table;
867
868 #if 0
869     av_dlog(avctx, "DVB pixel block size %d, %s field:\n", buf_size,
870             top_bottom ? "bottom" : "top");
871
872     for (i = 0; i < buf_size; i++) {
873         if (i % 16 == 0)
874             av_dlog(avctx, "0x%8p: ", buf+i);
875
876         av_dlog(avctx, "%02x ", buf[i]);
877         if (i % 16 == 15)
878             av_dlog(avctx, "\n");
879     }
880
881     if (i % 16)
882         av_dlog(avctx, "\n");
883 #endif
884
885     if (!region)
886         return;
887
888     pbuf = region->pbuf;
889     region->dirty = 1;
890
891     x_pos = display->x_pos;
892     y_pos = display->y_pos;
893
894     y_pos += top_bottom;
895
896     while (buf < buf_end) {
897         if ((*buf!=0xf0 && x_pos >= region->width) || y_pos >= region->height) {
898             av_log(avctx, AV_LOG_ERROR, "Invalid object location! %d-%d %d-%d %02x\n", x_pos, region->width, y_pos, region->height, *buf);
899             return;
900         }
901
902         switch (*buf++) {
903         case 0x10:
904             if (region->depth == 8)
905                 map_table = map2to8;
906             else if (region->depth == 4)
907                 map_table = map2to4;
908             else
909                 map_table = NULL;
910
911             x_pos = dvbsub_read_2bit_string(pbuf + (y_pos * region->width),
912                                             region->width, &buf, buf_end - buf,
913                                             non_mod, map_table, x_pos);
914             break;
915         case 0x11:
916             if (region->depth < 4) {
917                 av_log(avctx, AV_LOG_ERROR, "4-bit pixel string in %d-bit region!\n", region->depth);
918                 return;
919             }
920
921             if (region->depth == 8)
922                 map_table = map4to8;
923             else
924                 map_table = NULL;
925
926             x_pos = dvbsub_read_4bit_string(pbuf + (y_pos * region->width),
927                                             region->width, &buf, buf_end - buf,
928                                             non_mod, map_table, x_pos);
929             break;
930         case 0x12:
931             if (region->depth < 8) {
932                 av_log(avctx, AV_LOG_ERROR, "8-bit pixel string in %d-bit region!\n", region->depth);
933                 return;
934             }
935
936             x_pos = dvbsub_read_8bit_string(pbuf + (y_pos * region->width),
937                                             region->width, &buf, buf_end - buf,
938                                             non_mod, NULL, x_pos);
939             break;
940
941         case 0x20:
942             map2to4[0] = (*buf) >> 4;
943             map2to4[1] = (*buf++) & 0xf;
944             map2to4[2] = (*buf) >> 4;
945             map2to4[3] = (*buf++) & 0xf;
946             break;
947         case 0x21:
948             for (i = 0; i < 4; i++)
949                 map2to8[i] = *buf++;
950             break;
951         case 0x22:
952             for (i = 0; i < 16; i++)
953                 map4to8[i] = *buf++;
954             break;
955
956         case 0xf0:
957             x_pos = display->x_pos;
958             y_pos += 2;
959             break;
960         default:
961             av_log(avctx, AV_LOG_INFO, "Unknown/unsupported pixel block 0x%x\n", *(buf-1));
962         }
963     }
964
965 }
966
967 static void dvbsub_parse_object_segment(AVCodecContext *avctx,
968                                         const uint8_t *buf, int buf_size)
969 {
970     DVBSubContext *ctx = avctx->priv_data;
971
972     const uint8_t *buf_end = buf + buf_size;
973     int object_id;
974     DVBSubObject *object;
975     DVBSubObjectDisplay *display;
976     int top_field_len, bottom_field_len;
977
978     int coding_method, non_modifying_color;
979
980     object_id = AV_RB16(buf);
981     buf += 2;
982
983     object = get_object(ctx, object_id);
984
985     if (!object)
986         return;
987
988     coding_method = ((*buf) >> 2) & 3;
989     non_modifying_color = ((*buf++) >> 1) & 1;
990
991     if (coding_method == 0) {
992         top_field_len = AV_RB16(buf);
993         buf += 2;
994         bottom_field_len = AV_RB16(buf);
995         buf += 2;
996
997         if (buf + top_field_len + bottom_field_len > buf_end) {
998             av_log(avctx, AV_LOG_ERROR, "Field data size too large\n");
999             return;
1000         }
1001
1002         for (display = object->display_list; display; display = display->object_list_next) {
1003             const uint8_t *block = buf;
1004             int bfl = bottom_field_len;
1005
1006             dvbsub_parse_pixel_data_block(avctx, display, block, top_field_len, 0,
1007                                             non_modifying_color);
1008
1009             if (bottom_field_len > 0)
1010                 block = buf + top_field_len;
1011             else
1012                 bfl = top_field_len;
1013
1014             dvbsub_parse_pixel_data_block(avctx, display, block, bfl, 1,
1015                                             non_modifying_color);
1016         }
1017
1018 /*  } else if (coding_method == 1) {*/
1019
1020     } else {
1021         av_log(avctx, AV_LOG_ERROR, "Unknown object coding %d\n", coding_method);
1022     }
1023
1024 }
1025
1026 static int dvbsub_parse_clut_segment(AVCodecContext *avctx,
1027                                         const uint8_t *buf, int buf_size)
1028 {
1029     DVBSubContext *ctx = avctx->priv_data;
1030
1031     const uint8_t *buf_end = buf + buf_size;
1032     int i, clut_id;
1033     int version;
1034     DVBSubCLUT *clut;
1035     int entry_id, depth , full_range;
1036     int y, cr, cb, alpha;
1037     int r, g, b, r_add, g_add, b_add;
1038
1039     av_dlog(avctx, "DVB clut packet:\n");
1040
1041     for (i=0; i < buf_size; i++) {
1042         av_dlog(avctx, "%02x ", buf[i]);
1043         if (i % 16 == 15)
1044             av_dlog(avctx, "\n");
1045     }
1046
1047     if (i % 16)
1048         av_dlog(avctx, "\n");
1049
1050     clut_id = *buf++;
1051     version = ((*buf)>>4)&15;
1052     buf += 1;
1053
1054     clut = get_clut(ctx, clut_id);
1055
1056     if (!clut) {
1057         clut = av_malloc(sizeof(DVBSubCLUT));
1058
1059         memcpy(clut, &default_clut, sizeof(DVBSubCLUT));
1060
1061         clut->id = clut_id;
1062         clut->version = -1;
1063
1064         clut->next = ctx->clut_list;
1065         ctx->clut_list = clut;
1066     }
1067
1068     if (clut->version != version) {
1069
1070     clut->version = version;
1071
1072     while (buf + 4 < buf_end) {
1073         entry_id = *buf++;
1074
1075         depth = (*buf) & 0xe0;
1076
1077         if (depth == 0) {
1078             av_log(avctx, AV_LOG_ERROR, "Invalid clut depth 0x%x!\n", *buf);
1079             return 0;
1080         }
1081
1082         full_range = (*buf++) & 1;
1083
1084         if (full_range) {
1085             y = *buf++;
1086             cr = *buf++;
1087             cb = *buf++;
1088             alpha = *buf++;
1089         } else {
1090             y = buf[0] & 0xfc;
1091             cr = (((buf[0] & 3) << 2) | ((buf[1] >> 6) & 3)) << 4;
1092             cb = (buf[1] << 2) & 0xf0;
1093             alpha = (buf[1] << 6) & 0xc0;
1094
1095             buf += 2;
1096         }
1097
1098         if (y == 0)
1099             alpha = 0xff;
1100
1101         YUV_TO_RGB1_CCIR(cb, cr);
1102         YUV_TO_RGB2_CCIR(r, g, b, y);
1103
1104         av_dlog(avctx, "clut %d := (%d,%d,%d,%d)\n", entry_id, r, g, b, alpha);
1105         if (!!(depth & 0x80) + !!(depth & 0x40) + !!(depth & 0x20) > 1) {
1106             av_dlog(avctx, "More than one bit level marked: %x\n", depth);
1107             if (avctx->strict_std_compliance > FF_COMPLIANCE_NORMAL)
1108                 return AVERROR_INVALIDDATA;
1109         }
1110
1111         if (depth & 0x80)
1112             clut->clut4[entry_id] = RGBA(r,g,b,255 - alpha);
1113         else if (depth & 0x40)
1114             clut->clut16[entry_id] = RGBA(r,g,b,255 - alpha);
1115         else if (depth & 0x20)
1116             clut->clut256[entry_id] = RGBA(r,g,b,255 - alpha);
1117     }
1118     }
1119     return 0;
1120 }
1121
1122
1123 static void dvbsub_parse_region_segment(AVCodecContext *avctx,
1124                                         const uint8_t *buf, int buf_size)
1125 {
1126     DVBSubContext *ctx = avctx->priv_data;
1127
1128     const uint8_t *buf_end = buf + buf_size;
1129     int region_id, object_id;
1130     int av_unused version;
1131     DVBSubRegion *region;
1132     DVBSubObject *object;
1133     DVBSubObjectDisplay *display;
1134     int fill;
1135
1136     if (buf_size < 10)
1137         return;
1138
1139     region_id = *buf++;
1140
1141     region = get_region(ctx, region_id);
1142
1143     if (!region) {
1144         region = av_mallocz(sizeof(DVBSubRegion));
1145
1146         region->id = region_id;
1147         region->version = -1;
1148
1149         region->next = ctx->region_list;
1150         ctx->region_list = region;
1151     }
1152
1153     version = ((*buf)>>4) & 15;
1154     fill = ((*buf++) >> 3) & 1;
1155
1156     region->width = AV_RB16(buf);
1157     buf += 2;
1158     region->height = AV_RB16(buf);
1159     buf += 2;
1160
1161     if (region->width * region->height != region->buf_size) {
1162         av_free(region->pbuf);
1163
1164         region->buf_size = region->width * region->height;
1165
1166         region->pbuf = av_malloc(region->buf_size);
1167
1168         fill = 1;
1169         region->dirty = 0;
1170     }
1171
1172     region->depth = 1 << (((*buf++) >> 2) & 7);
1173     if(region->depth<2 || region->depth>8){
1174         av_log(avctx, AV_LOG_ERROR, "region depth %d is invalid\n", region->depth);
1175         region->depth= 4;
1176     }
1177     region->clut = *buf++;
1178
1179     if (region->depth == 8) {
1180         region->bgcolor = *buf++;
1181         buf += 1;
1182     } else {
1183         buf += 1;
1184
1185         if (region->depth == 4)
1186             region->bgcolor = (((*buf++) >> 4) & 15);
1187         else
1188             region->bgcolor = (((*buf++) >> 2) & 3);
1189     }
1190
1191     av_dlog(avctx, "Region %d, (%dx%d)\n", region_id, region->width, region->height);
1192
1193     if (fill) {
1194         memset(region->pbuf, region->bgcolor, region->buf_size);
1195         av_dlog(avctx, "Fill region (%d)\n", region->bgcolor);
1196     }
1197
1198     delete_region_display_list(ctx, region);
1199
1200     while (buf + 5 < buf_end) {
1201         object_id = AV_RB16(buf);
1202         buf += 2;
1203
1204         object = get_object(ctx, object_id);
1205
1206         if (!object) {
1207             object = av_mallocz(sizeof(DVBSubObject));
1208
1209             object->id = object_id;
1210             object->next = ctx->object_list;
1211             ctx->object_list = object;
1212         }
1213
1214         object->type = (*buf) >> 6;
1215
1216         display = av_mallocz(sizeof(DVBSubObjectDisplay));
1217
1218         display->object_id = object_id;
1219         display->region_id = region_id;
1220
1221         display->x_pos = AV_RB16(buf) & 0xfff;
1222         buf += 2;
1223         display->y_pos = AV_RB16(buf) & 0xfff;
1224         buf += 2;
1225
1226         if ((object->type == 1 || object->type == 2) && buf+1 < buf_end) {
1227             display->fgcolor = *buf++;
1228             display->bgcolor = *buf++;
1229         }
1230
1231         display->region_list_next = region->display_list;
1232         region->display_list = display;
1233
1234         display->object_list_next = object->display_list;
1235         object->display_list = display;
1236     }
1237 }
1238
1239 static void dvbsub_parse_page_segment(AVCodecContext *avctx,
1240                                         const uint8_t *buf, int buf_size, AVSubtitle *sub, int *got_output)
1241 {
1242     DVBSubContext *ctx = avctx->priv_data;
1243     DVBSubRegionDisplay *display;
1244     DVBSubRegionDisplay *tmp_display_list, **tmp_ptr;
1245
1246     const uint8_t *buf_end = buf + buf_size;
1247     int region_id;
1248     int page_state;
1249     int timeout;
1250     int version;
1251
1252     if (buf_size < 1)
1253         return;
1254
1255     timeout = *buf++;
1256     version = ((*buf)>>4) & 15;
1257     page_state = ((*buf++) >> 2) & 3;
1258
1259     if (ctx->version == version) {
1260         return;
1261     }
1262
1263     ctx->time_out = timeout;
1264     ctx->version = version;
1265
1266     av_dlog(avctx, "Page time out %ds, state %d\n", ctx->time_out, page_state);
1267
1268     if(ctx->compute_edt == 1)
1269         save_subtitle_set(avctx, sub, got_output);
1270
1271     if (page_state == 1 || page_state == 2) {
1272         delete_regions(ctx);
1273         delete_objects(ctx);
1274         delete_cluts(ctx);
1275     }
1276
1277     tmp_display_list = ctx->display_list;
1278     ctx->display_list = NULL;
1279
1280     while (buf + 5 < buf_end) {
1281         region_id = *buf++;
1282         buf += 1;
1283
1284         display = tmp_display_list;
1285         tmp_ptr = &tmp_display_list;
1286
1287         while (display && display->region_id != region_id) {
1288             tmp_ptr = &display->next;
1289             display = display->next;
1290         }
1291
1292         if (!display)
1293             display = av_mallocz(sizeof(DVBSubRegionDisplay));
1294
1295         display->region_id = region_id;
1296
1297         display->x_pos = AV_RB16(buf);
1298         buf += 2;
1299         display->y_pos = AV_RB16(buf);
1300         buf += 2;
1301
1302         *tmp_ptr = display->next;
1303
1304         display->next = ctx->display_list;
1305         ctx->display_list = display;
1306
1307         av_dlog(avctx, "Region %d, (%d,%d)\n", region_id, display->x_pos, display->y_pos);
1308     }
1309
1310     while (tmp_display_list) {
1311         display = tmp_display_list;
1312
1313         tmp_display_list = display->next;
1314
1315         av_freep(&display);
1316     }
1317
1318 }
1319
1320
1321 #ifdef DEBUG
1322 static void save_display_set(DVBSubContext *ctx)
1323 {
1324     DVBSubRegion *region;
1325     DVBSubRegionDisplay *display;
1326     DVBSubCLUT *clut;
1327     uint32_t *clut_table;
1328     int x_pos, y_pos, width, height;
1329     int x, y, y_off, x_off;
1330     uint32_t *pbuf;
1331     char filename[32];
1332     static int fileno_index = 0;
1333
1334     x_pos = -1;
1335     y_pos = -1;
1336     width = 0;
1337     height = 0;
1338
1339     for (display = ctx->display_list; display; display = display->next) {
1340         region = get_region(ctx, display->region_id);
1341
1342         if (x_pos == -1) {
1343             x_pos = display->x_pos;
1344             y_pos = display->y_pos;
1345             width = region->width;
1346             height = region->height;
1347         } else {
1348             if (display->x_pos < x_pos) {
1349                 width += (x_pos - display->x_pos);
1350                 x_pos = display->x_pos;
1351             }
1352
1353             if (display->y_pos < y_pos) {
1354                 height += (y_pos - display->y_pos);
1355                 y_pos = display->y_pos;
1356             }
1357
1358             if (display->x_pos + region->width > x_pos + width) {
1359                 width = display->x_pos + region->width - x_pos;
1360             }
1361
1362             if (display->y_pos + region->height > y_pos + height) {
1363                 height = display->y_pos + region->height - y_pos;
1364             }
1365         }
1366     }
1367
1368     if (x_pos >= 0) {
1369
1370         pbuf = av_malloc(width * height * 4);
1371
1372         for (display = ctx->display_list; display; display = display->next) {
1373             region = get_region(ctx, display->region_id);
1374
1375             x_off = display->x_pos - x_pos;
1376             y_off = display->y_pos - y_pos;
1377
1378             clut = get_clut(ctx, region->clut);
1379
1380             if (!clut)
1381                 clut = &default_clut;
1382
1383             switch (region->depth) {
1384             case 2:
1385                 clut_table = clut->clut4;
1386                 break;
1387             case 8:
1388                 clut_table = clut->clut256;
1389                 break;
1390             case 4:
1391             default:
1392                 clut_table = clut->clut16;
1393                 break;
1394             }
1395
1396             for (y = 0; y < region->height; y++) {
1397                 for (x = 0; x < region->width; x++) {
1398                     pbuf[((y + y_off) * width) + x_off + x] =
1399                         clut_table[region->pbuf[y * region->width + x]];
1400                 }
1401             }
1402
1403         }
1404
1405         snprintf(filename, sizeof(filename), "dvbs.%d", fileno_index);
1406
1407         png_save2(filename, pbuf, width, height);
1408
1409         av_freep(&pbuf);
1410     }
1411
1412     fileno_index++;
1413 }
1414 #endif
1415
1416 static void dvbsub_parse_display_definition_segment(AVCodecContext *avctx,
1417                                                     const uint8_t *buf,
1418                                                     int buf_size)
1419 {
1420     DVBSubContext *ctx = avctx->priv_data;
1421     DVBSubDisplayDefinition *display_def = ctx->display_definition;
1422     int dds_version, info_byte;
1423
1424     if (buf_size < 5)
1425         return;
1426
1427     info_byte   = bytestream_get_byte(&buf);
1428     dds_version = info_byte >> 4;
1429     if (display_def && display_def->version == dds_version)
1430         return; // already have this display definition version
1431
1432     if (!display_def) {
1433         display_def             = av_mallocz(sizeof(*display_def));
1434         ctx->display_definition = display_def;
1435     }
1436     if (!display_def)
1437         return;
1438
1439     display_def->version = dds_version;
1440     display_def->x       = 0;
1441     display_def->y       = 0;
1442     display_def->width   = bytestream_get_be16(&buf) + 1;
1443     display_def->height  = bytestream_get_be16(&buf) + 1;
1444     if (!avctx->width || !avctx->height) {
1445         avctx->width  = display_def->width;
1446         avctx->height = display_def->height;
1447     }
1448
1449     if (buf_size < 13)
1450         return;
1451
1452     if (info_byte & 1<<3) { // display_window_flag
1453         display_def->x = bytestream_get_be16(&buf);
1454         display_def->width  = bytestream_get_be16(&buf) - display_def->x + 1;
1455         display_def->y = bytestream_get_be16(&buf);
1456         display_def->height = bytestream_get_be16(&buf) - display_def->y + 1;
1457     }
1458 }
1459
1460 static void dvbsub_display_end_segment(AVCodecContext *avctx, const uint8_t *buf,
1461                                         int buf_size, AVSubtitle *sub,int *got_output)
1462 {
1463     DVBSubContext *ctx = avctx->priv_data;
1464
1465     if(ctx->compute_edt == 0)
1466         save_subtitle_set(avctx, sub, got_output);
1467 #ifdef DEBUG
1468     save_display_set(ctx);
1469 #endif
1470
1471 }
1472
1473 static int dvbsub_decode(AVCodecContext *avctx,
1474                          void *data, int *data_size,
1475                          AVPacket *avpkt)
1476 {
1477     const uint8_t *buf = avpkt->data;
1478     int buf_size = avpkt->size;
1479     DVBSubContext *ctx = avctx->priv_data;
1480     AVSubtitle *sub = data;
1481     const uint8_t *p, *p_end;
1482     int segment_type;
1483     int page_id;
1484     int segment_length;
1485     int i;
1486     int ret = 0;
1487     int got_segment = 0;
1488
1489     av_dlog(avctx, "DVB sub packet:\n");
1490
1491     for (i=0; i < buf_size; i++) {
1492         av_dlog(avctx, "%02x ", buf[i]);
1493         if (i % 16 == 15)
1494             av_dlog(avctx, "\n");
1495     }
1496
1497     if (i % 16)
1498         av_dlog(avctx, "\n");
1499
1500     if (buf_size <= 6 || *buf != 0x0f) {
1501         av_dlog(avctx, "incomplete or broken packet");
1502         return -1;
1503     }
1504
1505     p = buf;
1506     p_end = buf + buf_size;
1507
1508     while (p_end - p >= 6 && *p == 0x0f) {
1509         p += 1;
1510         segment_type = *p++;
1511         page_id = AV_RB16(p);
1512         p += 2;
1513         segment_length = AV_RB16(p);
1514         p += 2;
1515
1516         if (avctx->debug & FF_DEBUG_STARTCODE) {
1517             av_log(avctx, AV_LOG_DEBUG, "segment_type:%d page_id:%d segment_length:%d\n", segment_type, page_id, segment_length);
1518         }
1519
1520         if (p_end - p < segment_length) {
1521             av_dlog(avctx, "incomplete or broken packet");
1522             ret = -1;
1523             goto end;
1524         }
1525
1526         if (page_id == ctx->composition_id || page_id == ctx->ancillary_id ||
1527             ctx->composition_id == -1 || ctx->ancillary_id == -1) {
1528             switch (segment_type) {
1529             case DVBSUB_PAGE_SEGMENT:
1530                 dvbsub_parse_page_segment(avctx, p, segment_length, sub, data_size);
1531                 got_segment |= 1;
1532                 break;
1533             case DVBSUB_REGION_SEGMENT:
1534                 dvbsub_parse_region_segment(avctx, p, segment_length);
1535                 got_segment |= 2;
1536                 break;
1537             case DVBSUB_CLUT_SEGMENT:
1538                 ret = dvbsub_parse_clut_segment(avctx, p, segment_length);
1539                 if (ret < 0) goto end;
1540                 got_segment |= 4;
1541                 break;
1542             case DVBSUB_OBJECT_SEGMENT:
1543                 dvbsub_parse_object_segment(avctx, p, segment_length);
1544                 got_segment |= 8;
1545                 break;
1546             case DVBSUB_DISPLAYDEFINITION_SEGMENT:
1547                 dvbsub_parse_display_definition_segment(avctx, p, segment_length);
1548                 break;
1549             case DVBSUB_DISPLAY_SEGMENT:
1550                 dvbsub_display_end_segment(avctx, p, segment_length, sub, data_size);
1551                 got_segment |= 16;
1552                 break;
1553             default:
1554                 av_dlog(avctx, "Subtitling segment type 0x%x, page id %d, length %d\n",
1555                         segment_type, page_id, segment_length);
1556                 break;
1557             }
1558         }
1559
1560         p += segment_length;
1561     }
1562     // Some streams do not send a display segment but if we have all the other
1563     // segments then we need no further data.
1564     if (got_segment == 15) {
1565         av_log(avctx, AV_LOG_DEBUG, "Missing display_end_segment, emulating\n");
1566         dvbsub_display_end_segment(avctx, p, 0, sub, data_size);
1567     }
1568
1569 end:
1570     if(ret < 0) {
1571         *data_size = 0;
1572         avsubtitle_free(sub);
1573         return ret;
1574     } else {
1575         if(ctx->compute_edt == 1 )
1576             FFSWAP(int64_t, ctx->prev_start, sub->pts);
1577     }
1578
1579     return p - buf;
1580 }
1581
1582 #define DS AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_SUBTITLE_PARAM
1583 static const AVOption options[] = {
1584     {"compute_edt", "compute end of time using pts or timeout", offsetof(DVBSubContext, compute_edt), FF_OPT_TYPE_INT, {.i64 = 0}, 0, 1, DS},
1585     {NULL}
1586 };
1587 static const AVClass dvbsubdec_class = {
1588     .class_name = "DVB Sub Decoder",
1589     .item_name  = av_default_item_name,
1590     .option     = options,
1591     .version    = LIBAVUTIL_VERSION_INT,
1592 };
1593
1594 AVCodec ff_dvbsub_decoder = {
1595     .name           = "dvbsub",
1596     .long_name      = NULL_IF_CONFIG_SMALL("DVB subtitles"),
1597     .type           = AVMEDIA_TYPE_SUBTITLE,
1598     .id             = AV_CODEC_ID_DVB_SUBTITLE,
1599     .priv_data_size = sizeof(DVBSubContext),
1600     .init           = dvbsub_init_decoder,
1601     .close          = dvbsub_close_decoder,
1602     .decode         = dvbsub_decode,
1603     .priv_class     = &dvbsubdec_class,
1604 };