]> git.sesse.net Git - ffmpeg/blob - libavcodec/dolby_e_parse.c
avcodec/dolby_e: split decoder and parser more thoroughly
[ffmpeg] / libavcodec / dolby_e_parse.c
1 /*
2  * Copyright (C) 2017 foo86
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #include "get_bits.h"
22 #include "put_bits.h"
23 #include "dolby_e.h"
24
25 static const uint8_t nb_programs_tab[MAX_PROG_CONF + 1] = {
26     2, 3, 2, 3, 4, 5, 4, 5, 6, 7, 8, 1, 2, 3, 3, 4, 5, 6, 1, 2, 3, 4, 1, 1
27 };
28
29 static const uint8_t nb_channels_tab[MAX_PROG_CONF + 1] = {
30     8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 6, 6, 6, 6, 6, 6, 6, 4, 4, 4, 4, 8, 8
31 };
32
33 static int skip_input(DBEContext *s, int nb_words)
34 {
35     if (nb_words > s->input_size) {
36         return AVERROR_INVALIDDATA;
37     }
38
39     s->input      += nb_words * s->word_bytes;
40     s->input_size -= nb_words;
41     return 0;
42 }
43
44 static int parse_key(DBEContext *s)
45 {
46     if (s->key_present) {
47         const uint8_t *key = s->input;
48         int      ret = skip_input(s, 1);
49         if (ret < 0)
50             return ret;
51         return AV_RB24(key) >> 24 - s->word_bits;
52     }
53     return 0;
54 }
55
56 static int convert_input(DBEContext *s, int nb_words, int key)
57 {
58     const uint8_t *src = s->input;
59     uint8_t *dst = s->buffer;
60     PutBitContext pb;
61     int i;
62
63     av_assert0(nb_words <= 1024u);
64
65     if (nb_words > s->input_size) {
66         return AVERROR_INVALIDDATA;
67     }
68
69     switch (s->word_bits) {
70     case 16:
71         for (i = 0; i < nb_words; i++, src += 2, dst += 2)
72             AV_WB16(dst, AV_RB16(src) ^ key);
73         break;
74     case 20:
75         init_put_bits(&pb, s->buffer, sizeof(s->buffer));
76         for (i = 0; i < nb_words; i++, src += 3)
77             put_bits(&pb, 20, AV_RB24(src) >> 4 ^ key);
78         flush_put_bits(&pb);
79         break;
80     case 24:
81         for (i = 0; i < nb_words; i++, src += 3, dst += 3)
82             AV_WB24(dst, AV_RB24(src) ^ key);
83         break;
84     default:
85         av_assert0(0);
86     }
87
88     return init_get_bits(&s->gb, s->buffer, nb_words * s->word_bits);
89 }
90
91 int ff_dolby_e_parse_init(DBEContext *s, const uint8_t *buf, int buf_size)
92 {
93     int hdr;
94
95     if (buf_size < 3)
96         return AVERROR_INVALIDDATA;
97
98     hdr = AV_RB24(buf);
99     if ((hdr & 0xfffffe) == 0x7888e) {
100         s->word_bits = 24;
101     } else if ((hdr & 0xffffe0) == 0x788e0) {
102         s->word_bits = 20;
103     } else if ((hdr & 0xfffe00) == 0x78e00) {
104         s->word_bits = 16;
105     } else {
106         if (s->avctx)
107             av_log(s->avctx, AV_LOG_ERROR, "Invalid frame header\n");
108         return AVERROR_INVALIDDATA;
109     }
110
111     s->word_bytes  = s->word_bits + 7 >> 3;
112     s->input       = buf + s->word_bytes;
113     s->input_size  = buf_size / s->word_bytes - 1;
114     s->key_present = hdr >> 24 - s->word_bits & 1;
115
116     return 0;
117 }
118
119 int ff_dolby_e_parse_header(DBEContext *s, DolbyEHeaderInfo *hdr)
120 {
121     int i, ret, key, mtd_size;
122
123     if ((key = parse_key(s)) < 0)
124         return key;
125     if ((ret = convert_input(s, 1, key)) < 0)
126         return ret;
127
128     skip_bits(&s->gb, 4);
129     mtd_size = get_bits(&s->gb, 10);
130     if (!mtd_size) {
131         if (s->avctx)
132             av_log(s->avctx, AV_LOG_ERROR, "Invalid metadata size\n");
133         return AVERROR_INVALIDDATA;
134     }
135
136     if ((ret = convert_input(s, mtd_size, key)) < 0)
137         return ret;
138
139     skip_bits(&s->gb, 14);
140     hdr->prog_conf = get_bits(&s->gb, 6);
141     if (hdr->prog_conf > MAX_PROG_CONF) {
142         if (s->avctx)
143             av_log(s->avctx, AV_LOG_ERROR, "Invalid program configuration\n");
144         return AVERROR_INVALIDDATA;
145     }
146
147     hdr->nb_channels = nb_channels_tab[hdr->prog_conf];
148     hdr->nb_programs = nb_programs_tab[hdr->prog_conf];
149
150     hdr->fr_code      = get_bits(&s->gb, 4);
151     hdr->fr_code_orig = get_bits(&s->gb, 4);
152     if (!sample_rate_tab[hdr->fr_code] ||
153         !sample_rate_tab[hdr->fr_code_orig]) {
154         if (s->avctx)
155             av_log(s->avctx, AV_LOG_ERROR, "Invalid frame rate code\n");
156         return AVERROR_INVALIDDATA;
157     }
158
159     skip_bits_long(&s->gb, 88);
160     for (i = 0; i < hdr->nb_channels; i++)
161         hdr->ch_size[i] = get_bits(&s->gb, 10);
162     hdr->mtd_ext_size = get_bits(&s->gb, 8);
163     hdr->meter_size   = get_bits(&s->gb, 8);
164
165     skip_bits_long(&s->gb, 10 * hdr->nb_programs);
166     for (i = 0; i < hdr->nb_channels; i++) {
167         hdr->rev_id[i]     = get_bits(&s->gb,  4);
168         skip_bits1(&s->gb);
169         hdr->begin_gain[i] = get_bits(&s->gb, 10);
170         hdr->end_gain[i]   = get_bits(&s->gb, 10);
171     }
172
173     if (get_bits_left(&s->gb) < 0) {
174         if (s->avctx)
175             av_log(s->avctx, AV_LOG_ERROR, "Read past end of metadata\n");
176         return AVERROR_INVALIDDATA;
177     }
178
179     return skip_input(s, mtd_size + 1);
180 }