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