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