]> git.sesse.net Git - ffmpeg/blob - libavcodec/dvdsubdec.c
avpacket: fix setting AVPacket.data in av_packet_ref()
[ffmpeg] / libavcodec / dvdsubdec.c
1 /*
2  * DVD subtitle decoding
3  * Copyright (c) 2005 Fabrice Bellard
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 "internal.h"
25
26 #include "libavutil/attributes.h"
27 #include "libavutil/colorspace.h"
28 #include "libavutil/imgutils.h"
29 #include "libavutil/avstring.h"
30
31 typedef struct DVDSubContext {
32     uint32_t palette[16];
33     int      has_palette;
34 } DVDSubContext;
35
36 static void yuv_a_to_rgba(const uint8_t *ycbcr, const uint8_t *alpha, uint32_t *rgba, int num_values)
37 {
38     const uint8_t *cm = ff_crop_tab + MAX_NEG_CROP;
39     uint8_t r, g, b;
40     int i, y, cb, cr;
41     int r_add, g_add, b_add;
42
43     for (i = num_values; i > 0; i--) {
44         y = *ycbcr++;
45         cr = *ycbcr++;
46         cb = *ycbcr++;
47         YUV_TO_RGB1_CCIR(cb, cr);
48         YUV_TO_RGB2_CCIR(r, g, b, y);
49         *rgba++ = (*alpha++ << 24) | (r << 16) | (g << 8) | b;
50     }
51 }
52
53 static int decode_run_2bit(GetBitContext *gb, int *color)
54 {
55     unsigned int v, t;
56
57     v = 0;
58     for (t = 1; v < t && t <= 0x40; t <<= 2)
59         v = (v << 4) | get_bits(gb, 4);
60     *color = v & 3;
61     if (v < 4) { /* Code for fill rest of line */
62         return INT_MAX;
63     }
64     return v >> 2;
65 }
66
67 static int decode_run_8bit(GetBitContext *gb, int *color)
68 {
69     int len;
70     int has_run = get_bits1(gb);
71     if (get_bits1(gb))
72         *color = get_bits(gb, 8);
73     else
74         *color = get_bits(gb, 2);
75     if (has_run) {
76         if (get_bits1(gb)) {
77             len = get_bits(gb, 7);
78             if (len == 0)
79                 len = INT_MAX;
80             else
81                 len += 9;
82         } else
83             len = get_bits(gb, 3) + 2;
84     } else
85         len = 1;
86     return len;
87 }
88
89 static int decode_rle(uint8_t *bitmap, int linesize, int w, int h,
90                       const uint8_t *buf, int start, int buf_size, int is_8bit)
91 {
92     GetBitContext gb;
93     int bit_len;
94     int x, y, len, color;
95     uint8_t *d;
96
97     bit_len = (buf_size - start) * 8;
98     init_get_bits(&gb, buf + start, bit_len);
99
100     x = 0;
101     y = 0;
102     d = bitmap;
103     for(;;) {
104         if (get_bits_count(&gb) > bit_len)
105             return -1;
106         if (is_8bit)
107             len = decode_run_8bit(&gb, &color);
108         else
109             len = decode_run_2bit(&gb, &color);
110         len = FFMIN(len, w - x);
111         memset(d + x, color, len);
112         x += len;
113         if (x >= w) {
114             y++;
115             if (y >= h)
116                 break;
117             d += linesize;
118             x = 0;
119             /* byte align */
120             align_get_bits(&gb);
121         }
122     }
123     return 0;
124 }
125
126 static void guess_palette(DVDSubContext* ctx,
127                           uint32_t *rgba_palette,
128                           uint8_t *colormap,
129                           uint8_t *alpha,
130                           uint32_t subtitle_color)
131 {
132     uint8_t color_used[16] = { 0 };
133     int nb_opaque_colors, i, level, j, r, g, b;
134
135     if (ctx->has_palette) {
136         for (i = 0; i < 4; i++)
137             rgba_palette[i] = (ctx->palette[colormap[i]] & 0x00ffffff)
138                               | ((alpha[i] * 17) << 24);
139         return;
140     }
141
142     for(i = 0; i < 4; i++)
143         rgba_palette[i] = 0;
144
145     nb_opaque_colors = 0;
146     for(i = 0; i < 4; i++) {
147         if (alpha[i] != 0 && !color_used[colormap[i]]) {
148             color_used[colormap[i]] = 1;
149             nb_opaque_colors++;
150         }
151     }
152
153     if (nb_opaque_colors == 0)
154         return;
155
156     j = nb_opaque_colors;
157     memset(color_used, 0, 16);
158     for(i = 0; i < 4; i++) {
159         if (alpha[i] != 0) {
160             if (!color_used[colormap[i]])  {
161                 level = (0xff * j) / nb_opaque_colors;
162                 r = (((subtitle_color >> 16) & 0xff) * level) >> 8;
163                 g = (((subtitle_color >> 8) & 0xff) * level) >> 8;
164                 b = (((subtitle_color >> 0) & 0xff) * level) >> 8;
165                 rgba_palette[i] = b | (g << 8) | (r << 16) | ((alpha[i] * 17) << 24);
166                 color_used[colormap[i]] = (i + 1);
167                 j--;
168             } else {
169                 rgba_palette[i] = (rgba_palette[color_used[colormap[i]] - 1] & 0x00ffffff) |
170                                     ((alpha[i] * 17) << 24);
171             }
172         }
173     }
174 }
175
176 #define READ_OFFSET(a) (big_offsets ? AV_RB32(a) : AV_RB16(a))
177
178 static int decode_dvd_subtitles(DVDSubContext *ctx, AVSubtitle *sub_header,
179                                 const uint8_t *buf, int buf_size)
180 {
181     int cmd_pos, pos, cmd, x1, y1, x2, y2, next_cmd_pos;
182     int big_offsets, offset_size, is_8bit = 0;
183     const uint8_t *yuv_palette = 0;
184     uint8_t colormap[4] = { 0 }, alpha[256] = { 0 };
185     int date;
186     int i;
187     int is_menu = 0;
188     int64_t offset1, offset2;
189
190     if (buf_size < 10)
191         return -1;
192     memset(sub_header, 0, sizeof(*sub_header));
193
194     if (AV_RB16(buf) == 0) {   /* HD subpicture with 4-byte offsets */
195         big_offsets = 1;
196         offset_size = 4;
197         cmd_pos = 6;
198     } else {
199         big_offsets = 0;
200         offset_size = 2;
201         cmd_pos = 2;
202     }
203
204     cmd_pos = READ_OFFSET(buf + cmd_pos);
205
206     while (cmd_pos > 0 && cmd_pos < buf_size - 2 - offset_size) {
207         date = AV_RB16(buf + cmd_pos);
208         next_cmd_pos = READ_OFFSET(buf + cmd_pos + 2);
209         ff_dlog(NULL, "cmd_pos=0x%04x next=0x%04x date=%d\n",
210                 cmd_pos, next_cmd_pos, date);
211         pos = cmd_pos + 2 + offset_size;
212         offset1 = -1;
213         offset2 = -1;
214         x1 = y1 = x2 = y2 = 0;
215         while (pos < buf_size) {
216             cmd = buf[pos++];
217             ff_dlog(NULL, "cmd=%02x\n", cmd);
218             switch(cmd) {
219             case 0x00:
220                 /* menu subpicture */
221                 is_menu = 1;
222                 break;
223             case 0x01:
224                 /* set start date */
225                 sub_header->start_display_time = (date << 10) / 90;
226                 break;
227             case 0x02:
228                 /* set end date */
229                 sub_header->end_display_time = (date << 10) / 90;
230                 break;
231             case 0x03:
232                 /* set colormap */
233                 if ((buf_size - pos) < 2)
234                     goto fail;
235                 colormap[3] = buf[pos] >> 4;
236                 colormap[2] = buf[pos] & 0x0f;
237                 colormap[1] = buf[pos + 1] >> 4;
238                 colormap[0] = buf[pos + 1] & 0x0f;
239                 pos += 2;
240                 break;
241             case 0x04:
242                 /* set alpha */
243                 if ((buf_size - pos) < 2)
244                     goto fail;
245                 alpha[3] = buf[pos] >> 4;
246                 alpha[2] = buf[pos] & 0x0f;
247                 alpha[1] = buf[pos + 1] >> 4;
248                 alpha[0] = buf[pos + 1] & 0x0f;
249                 pos += 2;
250             ff_dlog(NULL, "alpha=%x%x%x%x\n", alpha[0],alpha[1],alpha[2],alpha[3]);
251                 break;
252             case 0x05:
253             case 0x85:
254                 if ((buf_size - pos) < 6)
255                     goto fail;
256                 x1 = (buf[pos] << 4) | (buf[pos + 1] >> 4);
257                 x2 = ((buf[pos + 1] & 0x0f) << 8) | buf[pos + 2];
258                 y1 = (buf[pos + 3] << 4) | (buf[pos + 4] >> 4);
259                 y2 = ((buf[pos + 4] & 0x0f) << 8) | buf[pos + 5];
260                 if (cmd & 0x80)
261                     is_8bit = 1;
262                 ff_dlog(NULL, "x1=%d x2=%d y1=%d y2=%d\n", x1, x2, y1, y2);
263                 pos += 6;
264                 break;
265             case 0x06:
266                 if ((buf_size - pos) < 4)
267                     goto fail;
268                 offset1 = AV_RB16(buf + pos);
269                 offset2 = AV_RB16(buf + pos + 2);
270                 ff_dlog(NULL, "offset1=0x%04x offset2=0x%04x\n", offset1, offset2);
271                 pos += 4;
272                 break;
273             case 0x86:
274                 if ((buf_size - pos) < 8)
275                     goto fail;
276                 offset1 = AV_RB32(buf + pos);
277                 offset2 = AV_RB32(buf + pos + 4);
278                 ff_dlog(NULL, "offset1=0x%04x offset2=0x%04x\n", offset1, offset2);
279                 pos += 8;
280                 break;
281
282             case 0x83:
283                 /* HD set palette */
284                 if ((buf_size - pos) < 768)
285                     goto fail;
286                 yuv_palette = buf + pos;
287                 pos += 768;
288                 break;
289             case 0x84:
290                 /* HD set contrast (alpha) */
291                 if ((buf_size - pos) < 256)
292                     goto fail;
293                 for (i = 0; i < 256; i++)
294                     alpha[i] = 0xFF - buf[pos+i];
295                 pos += 256;
296                 break;
297
298             case 0xff:
299                 goto the_end;
300             default:
301                 ff_dlog(NULL, "unrecognised subpicture command 0x%x\n", cmd);
302                 goto the_end;
303             }
304         }
305     the_end:
306         if (offset1 >= buf_size || offset2 >= buf_size)
307             goto fail;
308
309         if (offset1 >= 0) {
310             int w, h;
311             uint8_t *bitmap;
312
313             /* decode the bitmap */
314             w = x2 - x1 + 1;
315             if (w < 0)
316                 w = 0;
317             h = y2 - y1;
318             if (h < 0)
319                 h = 0;
320             if (w > 0 && h > 0) {
321                 if (sub_header->rects) {
322                     for (i = 0; i < sub_header->num_rects; i++) {
323                         av_freep(&sub_header->rects[i]->data[0]);
324                         av_freep(&sub_header->rects[i]->data[1]);
325                         av_freep(&sub_header->rects[i]);
326                     }
327                     av_freep(&sub_header->rects);
328                     sub_header->num_rects = 0;
329                 }
330
331                 sub_header->rects = av_mallocz(sizeof(*sub_header->rects));
332                 if (!sub_header->rects)
333                     goto fail;
334                 sub_header->rects[0] = av_mallocz(sizeof(AVSubtitleRect));
335                 if (!sub_header->rects[0])
336                     goto fail;
337                 sub_header->num_rects = 1;
338                 bitmap = sub_header->rects[0]->data[0] = av_malloc(w * h);
339                 if (!bitmap)
340                     goto fail;
341                 decode_rle(bitmap, w * 2, w, (h + 1) / 2,
342                            buf, offset1, buf_size, is_8bit);
343                 decode_rle(bitmap + w, w * 2, w, h / 2,
344                            buf, offset2, buf_size, is_8bit);
345                 sub_header->rects[0]->data[1] = av_mallocz(AVPALETTE_SIZE);
346                 if (!sub_header->rects[0]->data[1])
347                     goto fail;
348                 if (is_8bit) {
349                     if (yuv_palette == 0)
350                         goto fail;
351                     sub_header->rects[0]->nb_colors = 256;
352                     yuv_a_to_rgba(yuv_palette, alpha,
353                                   (uint32_t *)sub_header->rects[0]->data[1],
354                                   256);
355                 } else {
356                     sub_header->rects[0]->nb_colors = 4;
357                     guess_palette(ctx,
358                                   (uint32_t *)sub_header->rects[0]->data[1],
359                                   colormap, alpha, 0xffff00);
360                 }
361                 sub_header->rects[0]->x = x1;
362                 sub_header->rects[0]->y = y1;
363                 sub_header->rects[0]->w = w;
364                 sub_header->rects[0]->h = h;
365                 sub_header->rects[0]->type = SUBTITLE_BITMAP;
366                 sub_header->rects[0]->linesize[0] = w;
367
368 #if FF_API_AVPICTURE
369 FF_DISABLE_DEPRECATION_WARNINGS
370 {
371                 int j;
372                 AVSubtitleRect *rect;
373                 rect = sub_header->rects[0];
374                 for (j = 0; j < 4; j++) {
375                     rect->pict.data[j] = rect->data[j];
376                     rect->pict.linesize[j] = rect->linesize[j];
377                 }
378 }
379 FF_ENABLE_DEPRECATION_WARNINGS
380 #endif
381             }
382         }
383         if (next_cmd_pos == cmd_pos)
384             break;
385         cmd_pos = next_cmd_pos;
386     }
387     if (sub_header->num_rects > 0)
388         return is_menu;
389  fail:
390     if (!sub_header->rects) {
391         for (i = 0; i < sub_header->num_rects; i++) {
392             av_freep(&sub_header->rects[i]->data[0]);
393             av_freep(&sub_header->rects[i]->data[1]);
394             av_freep(&sub_header->rects[i]);
395         }
396         av_freep(&sub_header->rects);
397         sub_header->num_rects = 0;
398     }
399     return -1;
400 }
401
402 static int is_transp(const uint8_t *buf, int pitch, int n,
403                      const uint8_t *transp_color)
404 {
405     int i;
406     for(i = 0; i < n; i++) {
407         if (!transp_color[*buf])
408             return 0;
409         buf += pitch;
410     }
411     return 1;
412 }
413
414 /* return 0 if empty rectangle, 1 if non empty */
415 static int find_smallest_bounding_rectangle(AVSubtitle *s)
416 {
417     uint8_t transp_color[256] = { 0 };
418     int y1, y2, x1, x2, y, w, h, i;
419     uint8_t *bitmap;
420
421     if (s->num_rects == 0 || !s->rects || s->rects[0]->w <= 0 || s->rects[0]->h <= 0)
422         return 0;
423
424     for(i = 0; i < s->rects[0]->nb_colors; i++) {
425         if ((((uint32_t *)s->rects[0]->data[1])[i] >> 24) == 0)
426             transp_color[i] = 1;
427     }
428     y1 = 0;
429     while (y1 < s->rects[0]->h && is_transp(s->rects[0]->data[0] + y1 * s->rects[0]->linesize[0],
430                                   1, s->rects[0]->w, transp_color))
431         y1++;
432     if (y1 == s->rects[0]->h) {
433         av_freep(&s->rects[0]->data[0]);
434         s->rects[0]->w = s->rects[0]->h = 0;
435         return 0;
436     }
437
438     y2 = s->rects[0]->h - 1;
439     while (y2 > 0 && is_transp(s->rects[0]->data[0] + y2 * s->rects[0]->linesize[0], 1,
440                                s->rects[0]->w, transp_color))
441         y2--;
442     x1 = 0;
443     while (x1 < (s->rects[0]->w - 1) && is_transp(s->rects[0]->data[0] + x1, s->rects[0]->linesize[0],
444                                         s->rects[0]->h, transp_color))
445         x1++;
446     x2 = s->rects[0]->w - 1;
447     while (x2 > 0 && is_transp(s->rects[0]->data[0] + x2, s->rects[0]->linesize[0], s->rects[0]->h,
448                                   transp_color))
449         x2--;
450     w = x2 - x1 + 1;
451     h = y2 - y1 + 1;
452     bitmap = av_malloc(w * h);
453     if (!bitmap)
454         return 1;
455     for(y = 0; y < h; y++) {
456         memcpy(bitmap + w * y, s->rects[0]->data[0] + x1 + (y1 + y) * s->rects[0]->linesize[0], w);
457     }
458     av_freep(&s->rects[0]->data[0]);
459     s->rects[0]->data[0] = bitmap;
460     s->rects[0]->linesize[0] = w;
461     s->rects[0]->w = w;
462     s->rects[0]->h = h;
463     s->rects[0]->x += x1;
464     s->rects[0]->y += y1;
465     return 1;
466 }
467
468 #ifdef DEBUG
469 static void ppm_save(const char *filename, uint8_t *bitmap, int w, int h,
470                      uint32_t *rgba_palette)
471 {
472     int x, y, v;
473     FILE *f;
474
475     f = fopen(filename, "w");
476     if (!f) {
477         perror(filename);
478         exit(1);
479     }
480     fprintf(f, "P6\n"
481             "%d %d\n"
482             "%d\n",
483             w, h, 255);
484     for(y = 0; y < h; y++) {
485         for(x = 0; x < w; x++) {
486             v = rgba_palette[bitmap[y * w + x]];
487             putc((v >> 16) & 0xff, f);
488             putc((v >> 8) & 0xff, f);
489             putc((v >> 0) & 0xff, f);
490         }
491     }
492     fclose(f);
493 }
494 #endif
495
496 static int dvdsub_decode(AVCodecContext *avctx,
497                          void *data, int *data_size,
498                          AVPacket *avpkt)
499 {
500     DVDSubContext *ctx = avctx->priv_data;
501     const uint8_t *buf = avpkt->data;
502     int buf_size = avpkt->size;
503     AVSubtitle *sub = data;
504     int is_menu;
505
506     is_menu = decode_dvd_subtitles(ctx, sub, buf, buf_size);
507
508     if (is_menu < 0) {
509     no_subtitle:
510         *data_size = 0;
511
512         return buf_size;
513     }
514     if (!is_menu && find_smallest_bounding_rectangle(sub) == 0)
515         goto no_subtitle;
516
517 #if defined(DEBUG)
518     ff_dlog(NULL, "start=%d ms end =%d ms\n",
519             sub->start_display_time,
520             sub->end_display_time);
521     ppm_save("/tmp/a.ppm", sub->rects[0]->data[0],
522              sub->rects[0]->w, sub->rects[0]->h, sub->rects[0]->data[1]);
523 #endif
524
525     *data_size = 1;
526     return buf_size;
527 }
528
529 static av_cold int dvdsub_init(AVCodecContext *avctx)
530 {
531     DVDSubContext *ctx = avctx->priv_data;
532     char *data, *cur;
533     int ret = 0;
534
535     if (!avctx->extradata || !avctx->extradata_size)
536         return 0;
537
538     data = av_malloc(avctx->extradata_size + 1);
539     if (!data)
540         return AVERROR(ENOMEM);
541     memcpy(data, avctx->extradata, avctx->extradata_size);
542     data[avctx->extradata_size] = '\0';
543     cur = data;
544
545     while (*cur) {
546         if (strncmp("palette:", cur, 8) == 0) {
547             int i;
548             char *p = cur + 8;
549             ctx->has_palette = 1;
550             for (i = 0; i < 16; i++) {
551                 ctx->palette[i] = strtoul(p, &p, 16);
552                 while (*p == ',' || av_isspace(*p))
553                     p++;
554             }
555         } else if (!strncmp("size:", cur, 5)) {
556             int w, h;
557             if (sscanf(cur + 5, "%dx%d", &w, &h) == 2) {
558                ret = ff_set_dimensions(avctx, w, h);
559                if (ret < 0)
560                    goto fail;
561             }
562         }
563         cur += strcspn(cur, "\n\r");
564         cur += strspn(cur, "\n\r");
565     }
566
567 fail:
568     av_free(data);
569     return ret;
570 }
571
572 AVCodec ff_dvdsub_decoder = {
573     .name           = "dvdsub",
574     .long_name      = NULL_IF_CONFIG_SMALL("DVD subtitles"),
575     .type           = AVMEDIA_TYPE_SUBTITLE,
576     .id             = AV_CODEC_ID_DVD_SUBTITLE,
577     .priv_data_size = sizeof(DVDSubContext),
578     .init           = dvdsub_init,
579     .decode         = dvdsub_decode,
580 };