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