]> git.sesse.net Git - ffmpeg/blob - libavcodec/metasound.c
avconv_vaapi: Convert to use hw_frames_ctx only
[ffmpeg] / libavcodec / metasound.c
1 /*
2  * Voxware MetaSound decoder
3  * Copyright (c) 2013 Konstantin Shishkov
4  * based on TwinVQ decoder
5  * Copyright (c) 2009 Vitor Sessak
6  *
7  * This file is part of Libav.
8  *
9  * Libav is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * Libav is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with Libav; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  */
23
24 #include <inttypes.h>
25 #include <math.h>
26 #include <stdint.h>
27
28 #include "libavutil/channel_layout.h"
29 #include "libavutil/float_dsp.h"
30
31 #define BITSTREAM_READER_LE
32 #include "avcodec.h"
33 #include "fft.h"
34 #include "get_bits.h"
35 #include "internal.h"
36 #include "lsp.h"
37 #include "sinewin.h"
38
39 #include "twinvq.h"
40 #include "metasound_data.h"
41
42 static void add_peak(float period, int width, const float *shape,
43                      float ppc_gain, float *speech, int len)
44 {
45     int i, j, center;
46     const float *shape_end = shape + len;
47
48     // First peak centered around zero
49     for (i = 0; i < width / 2; i++)
50         speech[i] += ppc_gain * *shape++;
51
52     for (i = 1; i < ROUNDED_DIV(len, width); i++) {
53         center = (int)(i * period + 0.5);
54         for (j = -width / 2; j < (width + 1) / 2; j++)
55             speech[j + center] += ppc_gain * *shape++;
56     }
57
58     // For the last block, be careful not to go beyond the end of the buffer
59     center = (int)(i * period + 0.5);
60     for (j = -width / 2; j < (width + 1) / 2 && shape < shape_end; j++)
61         speech[j + center] += ppc_gain * *shape++;
62 }
63
64 static void decode_ppc(TwinVQContext *tctx, int period_coef, int g_coef,
65                        const float *shape, float *speech)
66 {
67     const TwinVQModeTab *mtab = tctx->mtab;
68     int isampf       = tctx->avctx->sample_rate / 1000;
69     int ibps         = tctx->avctx->bit_rate / (1000 * tctx->avctx->channels);
70     int width;
71
72     float ratio = (float)mtab->size / isampf;
73     float min_period, max_period, period_range, period;
74     float some_mult;
75
76     float pgain_base, pgain_step, ppc_gain;
77
78     if (tctx->avctx->channels == 1) {
79         min_period = log2(ratio * 0.2);
80         max_period = min_period + log2(6);
81     } else {
82         min_period = (int)(ratio * 0.2 * 400     + 0.5) / 400.0;
83         max_period = (int)(ratio * 0.2 * 400 * 6 + 0.5) / 400.0;
84     }
85     period_range = max_period - min_period;
86     period       = min_period + period_coef * period_range /
87                    ((1 << mtab->ppc_period_bit) - 1);
88     if (tctx->avctx->channels == 1)
89         period = powf(2.0, period);
90     else
91         period = (int)(period * 400 + 0.5) / 400.0;
92
93     switch (isampf) {
94     case  8: some_mult = 2.0; break;
95     case 11: some_mult = 3.0; break;
96     case 16: some_mult = 3.0; break;
97     case 22: some_mult = ibps == 32 ? 2.0 : 4.0; break;
98     case 44: some_mult = 8.0; break;
99     default: some_mult = 4.0;
100     }
101
102     width = (int)(some_mult / (mtab->size / period) * mtab->ppc_shape_len);
103     if (isampf == 22 && ibps == 32)
104         width = (int)((2.0 / period + 1) * width + 0.5);
105
106     pgain_base = tctx->avctx->channels == 2 ? 25000.0 : 20000.0;
107     pgain_step = pgain_base / ((1 << mtab->pgain_bit) - 1);
108     ppc_gain   = 1.0 / 8192 *
109                  twinvq_mulawinv(pgain_step * g_coef + pgain_step / 2,
110                                  pgain_base, TWINVQ_PGAIN_MU);
111
112     add_peak(period, width, shape, ppc_gain, speech, mtab->ppc_shape_len);
113 }
114
115 static void dec_bark_env(TwinVQContext *tctx, const uint8_t *in, int use_hist,
116                          int ch, float *out, float gain,
117                          enum TwinVQFrameType ftype)
118 {
119     const TwinVQModeTab *mtab = tctx->mtab;
120     int i, j;
121     float *hist     = tctx->bark_hist[ftype][ch];
122     float val       = ((const float []) { 0.4, 0.35, 0.28 })[ftype];
123     int bark_n_coef = mtab->fmode[ftype].bark_n_coef;
124     int fw_cb_len   = mtab->fmode[ftype].bark_env_size / bark_n_coef;
125     int idx         = 0;
126
127     if (tctx->avctx->channels == 1)
128         val = 0.5;
129     for (i = 0; i < fw_cb_len; i++)
130         for (j = 0; j < bark_n_coef; j++, idx++) {
131             float tmp2 = mtab->fmode[ftype].bark_cb[fw_cb_len * in[j] + i] *
132                          (1.0 / 2048);
133             float st;
134
135             if (tctx->avctx->channels == 1)
136                 st = use_hist ?
137                     tmp2 + val * hist[idx] + 1.0 : tmp2 + 1.0;
138             else
139                 st = use_hist ? (1.0 - val) * tmp2 + val * hist[idx] + 1.0
140                               : tmp2 + 1.0;
141
142             hist[idx] = tmp2;
143             if (st < 0.1)
144                 st = 0.1;
145
146             twinvq_memset_float(out, st * gain,
147                                 mtab->fmode[ftype].bark_tab[idx]);
148             out += mtab->fmode[ftype].bark_tab[idx];
149         }
150 }
151
152 static void read_cb_data(TwinVQContext *tctx, GetBitContext *gb,
153                          uint8_t *dst, enum TwinVQFrameType ftype)
154 {
155     int i;
156
157     for (i = 0; i < tctx->n_div[ftype]; i++) {
158         int bs_second_part = (i >= tctx->bits_main_spec_change[ftype]);
159
160         *dst++ = get_bits(gb, tctx->bits_main_spec[0][ftype][bs_second_part]);
161         *dst++ = get_bits(gb, tctx->bits_main_spec[1][ftype][bs_second_part]);
162     }
163 }
164
165 static int metasound_read_bitstream(AVCodecContext *avctx, TwinVQContext *tctx,
166                                     const uint8_t *buf, int buf_size)
167 {
168     TwinVQFrameData     *bits;
169     const TwinVQModeTab *mtab = tctx->mtab;
170     int channels              = tctx->avctx->channels;
171     int sub;
172     GetBitContext gb;
173     int i, j, k;
174
175     init_get_bits(&gb, buf, buf_size * 8);
176
177     for (tctx->cur_frame = 0; tctx->cur_frame < tctx->frames_per_packet;
178          tctx->cur_frame++) {
179         bits = tctx->bits + tctx->cur_frame;
180
181         bits->window_type = get_bits(&gb, TWINVQ_WINDOW_TYPE_BITS);
182
183         if (bits->window_type > 8) {
184             av_log(avctx, AV_LOG_ERROR, "Invalid window type, broken sample?\n");
185             return AVERROR_INVALIDDATA;
186         }
187
188         bits->ftype = ff_twinvq_wtype_to_ftype_table[tctx->bits[tctx->cur_frame].window_type];
189
190         sub = mtab->fmode[bits->ftype].sub;
191
192         if (bits->ftype != TWINVQ_FT_SHORT && !tctx->is_6kbps)
193             get_bits(&gb, 2);
194
195         read_cb_data(tctx, &gb, bits->main_coeffs, bits->ftype);
196
197         for (i = 0; i < channels; i++)
198             for (j = 0; j < sub; j++)
199                 for (k = 0; k < mtab->fmode[bits->ftype].bark_n_coef; k++)
200                     bits->bark1[i][j][k] =
201                         get_bits(&gb, mtab->fmode[bits->ftype].bark_n_bit);
202
203         for (i = 0; i < channels; i++)
204             for (j = 0; j < sub; j++)
205                 bits->bark_use_hist[i][j] = get_bits1(&gb);
206
207         if (bits->ftype == TWINVQ_FT_LONG) {
208             for (i = 0; i < channels; i++)
209                 bits->gain_bits[i] = get_bits(&gb, TWINVQ_GAIN_BITS);
210         } else {
211             for (i = 0; i < channels; i++) {
212                 bits->gain_bits[i] = get_bits(&gb, TWINVQ_GAIN_BITS);
213                 for (j = 0; j < sub; j++)
214                     bits->sub_gain_bits[i * sub + j] =
215                         get_bits(&gb, TWINVQ_SUB_GAIN_BITS);
216             }
217         }
218
219         for (i = 0; i < channels; i++) {
220             bits->lpc_hist_idx[i] = get_bits(&gb, mtab->lsp_bit0);
221             bits->lpc_idx1[i]     = get_bits(&gb, mtab->lsp_bit1);
222
223             for (j = 0; j < mtab->lsp_split; j++)
224                 bits->lpc_idx2[i][j] = get_bits(&gb, mtab->lsp_bit2);
225         }
226
227         if (bits->ftype == TWINVQ_FT_LONG) {
228             read_cb_data(tctx, &gb, bits->ppc_coeffs, 3);
229             for (i = 0; i < channels; i++) {
230                 bits->p_coef[i] = get_bits(&gb, mtab->ppc_period_bit);
231                 bits->g_coef[i] = get_bits(&gb, mtab->pgain_bit);
232             }
233         }
234
235         // subframes are aligned to nibbles
236         if (get_bits_count(&gb) & 3)
237             skip_bits(&gb, 4 - (get_bits_count(&gb) & 3));
238     }
239
240     return 0;
241 }
242
243 typedef struct MetasoundProps {
244     uint32_t tag;
245     int      bit_rate;
246     int      channels;
247     int      sample_rate;
248 } MetasoundProps;
249
250 static const MetasoundProps codec_props[] = {
251     { MKTAG('V','X','0','3'),  6, 1,  8000 },
252     { MKTAG('V','X','0','4'), 12, 2,  8000 },
253
254     { MKTAG('V','O','X','i'),  8, 1,  8000 },
255     { MKTAG('V','O','X','j'), 10, 1, 11025 },
256     { MKTAG('V','O','X','k'), 16, 1, 16000 },
257     { MKTAG('V','O','X','L'), 24, 1, 22050 },
258     { MKTAG('V','O','X','q'), 32, 1, 44100 },
259     { MKTAG('V','O','X','r'), 40, 1, 44100 },
260     { MKTAG('V','O','X','s'), 48, 1, 44100 },
261     { MKTAG('V','O','X','t'), 16, 2,  8000 },
262     { MKTAG('V','O','X','u'), 20, 2, 11025 },
263     { MKTAG('V','O','X','v'), 32, 2, 16000 },
264     { MKTAG('V','O','X','w'), 48, 2, 22050 },
265     { MKTAG('V','O','X','x'), 64, 2, 44100 },
266     { MKTAG('V','O','X','y'), 80, 2, 44100 },
267     { MKTAG('V','O','X','z'), 96, 2, 44100 },
268
269     { 0, 0, 0, 0 }
270 };
271
272 static av_cold int metasound_decode_init(AVCodecContext *avctx)
273 {
274     int isampf, ibps;
275     TwinVQContext *tctx = avctx->priv_data;
276     uint32_t tag;
277     const MetasoundProps *props = codec_props;
278
279     if (!avctx->extradata || avctx->extradata_size < 16) {
280         av_log(avctx, AV_LOG_ERROR, "Missing or incomplete extradata\n");
281         return AVERROR_INVALIDDATA;
282     }
283
284     tag = AV_RL32(avctx->extradata + 12);
285
286     for (;;) {
287         if (!props->tag) {
288             av_log(avctx, AV_LOG_ERROR, "Could not find tag %08"PRIX32"\n", tag);
289             return AVERROR_INVALIDDATA;
290         }
291         if (props->tag == tag) {
292             avctx->sample_rate = props->sample_rate;
293             avctx->channels    = props->channels;
294             avctx->bit_rate    = props->bit_rate * 1000;
295             isampf             = avctx->sample_rate / 1000;
296             break;
297         }
298         props++;
299     }
300
301     if (avctx->channels <= 0 || avctx->channels > TWINVQ_CHANNELS_MAX) {
302         av_log(avctx, AV_LOG_ERROR, "Unsupported number of channels: %i\n",
303                avctx->channels);
304         return AVERROR_INVALIDDATA;
305     }
306     avctx->channel_layout = avctx->channels == 1 ? AV_CH_LAYOUT_MONO
307                                                  : AV_CH_LAYOUT_STEREO;
308
309     ibps = avctx->bit_rate / (1000 * avctx->channels);
310
311     switch ((avctx->channels << 16) + (isampf << 8) + ibps) {
312     case (1 << 16) + ( 8 << 8) +  6:
313         tctx->mtab = &ff_metasound_mode0806;
314         break;
315     case (2 << 16) + ( 8 << 8) +  6:
316         tctx->mtab = &ff_metasound_mode0806s;
317         break;
318     case (1 << 16) + ( 8 << 8) +  8:
319         tctx->mtab = &ff_metasound_mode0808;
320         break;
321     case (2 << 16) + ( 8 << 8) +  8:
322         tctx->mtab = &ff_metasound_mode0808s;
323         break;
324     case (1 << 16) + (11 << 8) + 10:
325         tctx->mtab = &ff_metasound_mode1110;
326         break;
327     case (2 << 16) + (11 << 8) + 10:
328         tctx->mtab = &ff_metasound_mode1110s;
329         break;
330     case (1 << 16) + (16 << 8) + 16:
331         tctx->mtab = &ff_metasound_mode1616;
332         break;
333     case (2 << 16) + (16 << 8) + 16:
334         tctx->mtab = &ff_metasound_mode1616s;
335         break;
336     case (1 << 16) + (22 << 8) + 24:
337         tctx->mtab = &ff_metasound_mode2224;
338         break;
339     case (2 << 16) + (22 << 8) + 24:
340         tctx->mtab = &ff_metasound_mode2224s;
341         break;
342     case (1 << 16) + (44 << 8) + 32:
343         tctx->mtab = &ff_metasound_mode4432;
344         break;
345     case (2 << 16) + (44 << 8) + 32:
346         tctx->mtab = &ff_metasound_mode4432s;
347         break;
348     case (1 << 16) + (44 << 8) + 40:
349         tctx->mtab = &ff_metasound_mode4440;
350         break;
351     case (2 << 16) + (44 << 8) + 40:
352         tctx->mtab = &ff_metasound_mode4440s;
353         break;
354     case (1 << 16) + (44 << 8) + 48:
355         tctx->mtab = &ff_metasound_mode4448;
356         break;
357     case (2 << 16) + (44 << 8) + 48:
358         tctx->mtab = &ff_metasound_mode4448s;
359         break;
360     default:
361         av_log(avctx, AV_LOG_ERROR,
362                "This version does not support %d kHz - %d kbit/s/ch mode.\n",
363                isampf, ibps);
364         return AVERROR(ENOSYS);
365     }
366
367     tctx->codec          = TWINVQ_CODEC_METASOUND;
368     tctx->read_bitstream = metasound_read_bitstream;
369     tctx->dec_bark_env   = dec_bark_env;
370     tctx->decode_ppc     = decode_ppc;
371     tctx->frame_size     = avctx->bit_rate * tctx->mtab->size
372                                            / avctx->sample_rate;
373     tctx->is_6kbps       = ibps == 6;
374
375     return ff_twinvq_decode_init(avctx);
376 }
377
378 AVCodec ff_metasound_decoder = {
379     .name           = "metasound",
380     .long_name      = NULL_IF_CONFIG_SMALL("Voxware MetaSound"),
381     .type           = AVMEDIA_TYPE_AUDIO,
382     .id             = AV_CODEC_ID_METASOUND,
383     .priv_data_size = sizeof(TwinVQContext),
384     .init           = metasound_decode_init,
385     .close          = ff_twinvq_decode_close,
386     .decode         = ff_twinvq_decode_frame,
387     .capabilities   = AV_CODEC_CAP_DR1,
388     .sample_fmts    = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLTP,
389                                                       AV_SAMPLE_FMT_NONE },
390 };