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