]> git.sesse.net Git - ffmpeg/blob - libavcodec/dcadec.c
dca: Account for lfe when checking for the channel count
[ffmpeg] / libavcodec / dcadec.c
1 /*
2  * DCA compatible decoder
3  * Copyright (C) 2004 Gildas Bazin
4  * Copyright (C) 2004 Benjamin Zores
5  * Copyright (C) 2006 Benjamin Larsson
6  * Copyright (C) 2007 Konstantin Shishkov
7  * Copyright (C) 2012 Paul B Mahol
8  * Copyright (C) 2014 Niels Möller
9  *
10  * This file is part of Libav.
11  *
12  * Libav is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU Lesser General Public
14  * License as published by the Free Software Foundation; either
15  * version 2.1 of the License, or (at your option) any later version.
16  *
17  * Libav is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20  * Lesser General Public License for more details.
21  *
22  * You should have received a copy of the GNU Lesser General Public
23  * License along with Libav; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25  */
26
27 #include <math.h>
28 #include <stddef.h>
29 #include <stdio.h>
30
31 #include "libavutil/attributes.h"
32 #include "libavutil/channel_layout.h"
33 #include "libavutil/common.h"
34 #include "libavutil/float_dsp.h"
35 #include "libavutil/internal.h"
36 #include "libavutil/intreadwrite.h"
37 #include "libavutil/mathematics.h"
38 #include "libavutil/opt.h"
39 #include "libavutil/samplefmt.h"
40
41 #include "avcodec.h"
42 #include "dca.h"
43 #include "dca_syncwords.h"
44 #include "dcadata.h"
45 #include "dcadsp.h"
46 #include "dcahuff.h"
47 #include "fft.h"
48 #include "fmtconvert.h"
49 #include "get_bits.h"
50 #include "internal.h"
51 #include "mathops.h"
52 #include "profiles.h"
53 #include "put_bits.h"
54 #include "synth_filter.h"
55
56 #if ARCH_ARM
57 #   include "arm/dca.h"
58 #endif
59
60 enum DCAMode {
61     DCA_MONO = 0,
62     DCA_CHANNEL,
63     DCA_STEREO,
64     DCA_STEREO_SUMDIFF,
65     DCA_STEREO_TOTAL,
66     DCA_3F,
67     DCA_2F1R,
68     DCA_3F1R,
69     DCA_2F2R,
70     DCA_3F2R,
71     DCA_4F2R
72 };
73
74 /* -1 are reserved or unknown */
75 static const int dca_ext_audio_descr_mask[] = {
76     DCA_EXT_XCH,
77     -1,
78     DCA_EXT_X96,
79     DCA_EXT_XCH | DCA_EXT_X96,
80     -1,
81     -1,
82     DCA_EXT_XXCH,
83     -1,
84 };
85
86 /* Tables for mapping dts channel configurations to libavcodec multichannel api.
87  * Some compromises have been made for special configurations. Most configurations
88  * are never used so complete accuracy is not needed.
89  *
90  * L = left, R = right, C = center, S = surround, F = front, R = rear, T = total, OV = overhead.
91  * S  -> side, when both rear and back are configured move one of them to the side channel
92  * OV -> center back
93  * All 2 channel configurations -> AV_CH_LAYOUT_STEREO
94  */
95 static const uint64_t dca_core_channel_layout[] = {
96     AV_CH_FRONT_CENTER,                                                     ///< 1, A
97     AV_CH_LAYOUT_STEREO,                                                    ///< 2, A + B (dual mono)
98     AV_CH_LAYOUT_STEREO,                                                    ///< 2, L + R (stereo)
99     AV_CH_LAYOUT_STEREO,                                                    ///< 2, (L + R) + (L - R) (sum-difference)
100     AV_CH_LAYOUT_STEREO,                                                    ///< 2, LT + RT (left and right total)
101     AV_CH_LAYOUT_STEREO | AV_CH_FRONT_CENTER,                               ///< 3, C + L + R
102     AV_CH_LAYOUT_STEREO | AV_CH_BACK_CENTER,                                ///< 3, L + R + S
103     AV_CH_LAYOUT_STEREO | AV_CH_FRONT_CENTER | AV_CH_BACK_CENTER,           ///< 4, C + L + R + S
104     AV_CH_LAYOUT_STEREO | AV_CH_SIDE_LEFT | AV_CH_SIDE_RIGHT,               ///< 4, L + R + SL + SR
105
106     AV_CH_LAYOUT_STEREO | AV_CH_FRONT_CENTER | AV_CH_SIDE_LEFT |
107     AV_CH_SIDE_RIGHT,                                                       ///< 5, C + L + R + SL + SR
108
109     AV_CH_LAYOUT_STEREO | AV_CH_SIDE_LEFT | AV_CH_SIDE_RIGHT |
110     AV_CH_FRONT_LEFT_OF_CENTER | AV_CH_FRONT_RIGHT_OF_CENTER,               ///< 6, CL + CR + L + R + SL + SR
111
112     AV_CH_LAYOUT_STEREO | AV_CH_BACK_LEFT | AV_CH_BACK_RIGHT |
113     AV_CH_FRONT_CENTER  | AV_CH_BACK_CENTER,                                ///< 6, C + L + R + LR + RR + OV
114
115     AV_CH_FRONT_CENTER | AV_CH_FRONT_RIGHT_OF_CENTER |
116     AV_CH_FRONT_LEFT_OF_CENTER | AV_CH_BACK_CENTER   |
117     AV_CH_BACK_LEFT | AV_CH_BACK_RIGHT,                                     ///< 6, CF + CR + LF + RF + LR + RR
118
119     AV_CH_FRONT_LEFT_OF_CENTER | AV_CH_FRONT_CENTER   |
120     AV_CH_FRONT_RIGHT_OF_CENTER | AV_CH_LAYOUT_STEREO |
121     AV_CH_SIDE_LEFT | AV_CH_SIDE_RIGHT,                                     ///< 7, CL + C + CR + L + R + SL + SR
122
123     AV_CH_FRONT_LEFT_OF_CENTER | AV_CH_FRONT_RIGHT_OF_CENTER |
124     AV_CH_LAYOUT_STEREO | AV_CH_SIDE_LEFT | AV_CH_SIDE_RIGHT |
125     AV_CH_BACK_LEFT | AV_CH_BACK_RIGHT,                                     ///< 8, CL + CR + L + R + SL1 + SL2 + SR1 + SR2
126
127     AV_CH_FRONT_LEFT_OF_CENTER | AV_CH_FRONT_CENTER   |
128     AV_CH_FRONT_RIGHT_OF_CENTER | AV_CH_LAYOUT_STEREO |
129     AV_CH_SIDE_LEFT | AV_CH_BACK_CENTER | AV_CH_SIDE_RIGHT,                 ///< 8, CL + C + CR + L + R + SL + S + SR
130 };
131
132 #define DCA_DOLBY                  101           /* FIXME */
133
134 #define DCA_CHANNEL_BITS             6
135 #define DCA_CHANNEL_MASK          0x3F
136
137 #define DCA_LFE                   0x80
138
139 #define HEADER_SIZE                 14
140
141 #define DCA_NSYNCAUX        0x9A1105A0
142
143 /** Bit allocation */
144 typedef struct BitAlloc {
145     int offset;                 ///< code values offset
146     int maxbits[8];             ///< max bits in VLC
147     int wrap;                   ///< wrap for get_vlc2()
148     VLC vlc[8];                 ///< actual codes
149 } BitAlloc;
150
151 static BitAlloc dca_bitalloc_index;    ///< indexes for samples VLC select
152 static BitAlloc dca_tmode;             ///< transition mode VLCs
153 static BitAlloc dca_scalefactor;       ///< scalefactor VLCs
154 static BitAlloc dca_smpl_bitalloc[11]; ///< samples VLCs
155
156 static av_always_inline int get_bitalloc(GetBitContext *gb, BitAlloc *ba,
157                                          int idx)
158 {
159     return get_vlc2(gb, ba->vlc[idx].table, ba->vlc[idx].bits, ba->wrap) +
160            ba->offset;
161 }
162
163 static av_cold void dca_init_vlcs(void)
164 {
165     static int vlcs_initialized = 0;
166     int i, j, c = 14;
167     static VLC_TYPE dca_table[23622][2];
168
169     if (vlcs_initialized)
170         return;
171
172     dca_bitalloc_index.offset = 1;
173     dca_bitalloc_index.wrap   = 2;
174     for (i = 0; i < 5; i++) {
175         dca_bitalloc_index.vlc[i].table           = &dca_table[ff_dca_vlc_offs[i]];
176         dca_bitalloc_index.vlc[i].table_allocated = ff_dca_vlc_offs[i + 1] - ff_dca_vlc_offs[i];
177         init_vlc(&dca_bitalloc_index.vlc[i], bitalloc_12_vlc_bits[i], 12,
178                  bitalloc_12_bits[i], 1, 1,
179                  bitalloc_12_codes[i], 2, 2, INIT_VLC_USE_NEW_STATIC);
180     }
181     dca_scalefactor.offset = -64;
182     dca_scalefactor.wrap   = 2;
183     for (i = 0; i < 5; i++) {
184         dca_scalefactor.vlc[i].table           = &dca_table[ff_dca_vlc_offs[i + 5]];
185         dca_scalefactor.vlc[i].table_allocated = ff_dca_vlc_offs[i + 6] - ff_dca_vlc_offs[i + 5];
186         init_vlc(&dca_scalefactor.vlc[i], SCALES_VLC_BITS, 129,
187                  scales_bits[i], 1, 1,
188                  scales_codes[i], 2, 2, INIT_VLC_USE_NEW_STATIC);
189     }
190     dca_tmode.offset = 0;
191     dca_tmode.wrap   = 1;
192     for (i = 0; i < 4; i++) {
193         dca_tmode.vlc[i].table           = &dca_table[ff_dca_vlc_offs[i + 10]];
194         dca_tmode.vlc[i].table_allocated = ff_dca_vlc_offs[i + 11] - ff_dca_vlc_offs[i + 10];
195         init_vlc(&dca_tmode.vlc[i], tmode_vlc_bits[i], 4,
196                  tmode_bits[i], 1, 1,
197                  tmode_codes[i], 2, 2, INIT_VLC_USE_NEW_STATIC);
198     }
199
200     for (i = 0; i < 10; i++)
201         for (j = 0; j < 7; j++) {
202             if (!bitalloc_codes[i][j])
203                 break;
204             dca_smpl_bitalloc[i + 1].offset                 = bitalloc_offsets[i];
205             dca_smpl_bitalloc[i + 1].wrap                   = 1 + (j > 4);
206             dca_smpl_bitalloc[i + 1].vlc[j].table           = &dca_table[ff_dca_vlc_offs[c]];
207             dca_smpl_bitalloc[i + 1].vlc[j].table_allocated = ff_dca_vlc_offs[c + 1] - ff_dca_vlc_offs[c];
208
209             init_vlc(&dca_smpl_bitalloc[i + 1].vlc[j], bitalloc_maxbits[i][j],
210                      bitalloc_sizes[i],
211                      bitalloc_bits[i][j], 1, 1,
212                      bitalloc_codes[i][j], 2, 2, INIT_VLC_USE_NEW_STATIC);
213             c++;
214         }
215     vlcs_initialized = 1;
216 }
217
218 static inline void get_array(GetBitContext *gb, int *dst, int len, int bits)
219 {
220     while (len--)
221         *dst++ = get_bits(gb, bits);
222 }
223
224 static int dca_parse_audio_coding_header(DCAContext *s, int base_channel)
225 {
226     int i, j;
227     static const uint8_t adj_table[4] = { 16, 18, 20, 23 };
228     static const int bitlen[11] = { 0, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3 };
229     static const int thr[11]    = { 0, 1, 3, 3, 3, 3, 7, 7, 7, 7, 7 };
230
231     s->audio_header.total_channels = get_bits(&s->gb, 3) + 1 + base_channel;
232     s->audio_header.prim_channels  = s->audio_header.total_channels;
233
234     if (s->audio_header.prim_channels > DCA_PRIM_CHANNELS_MAX)
235         s->audio_header.prim_channels = DCA_PRIM_CHANNELS_MAX;
236
237     for (i = base_channel; i < s->audio_header.prim_channels; i++) {
238         s->audio_header.subband_activity[i] = get_bits(&s->gb, 5) + 2;
239         if (s->audio_header.subband_activity[i] > DCA_SUBBANDS)
240             s->audio_header.subband_activity[i] = DCA_SUBBANDS;
241     }
242     for (i = base_channel; i < s->audio_header.prim_channels; i++) {
243         s->audio_header.vq_start_subband[i] = get_bits(&s->gb, 5) + 1;
244         if (s->audio_header.vq_start_subband[i] > DCA_SUBBANDS)
245             s->audio_header.vq_start_subband[i] = DCA_SUBBANDS;
246     }
247     get_array(&s->gb, s->audio_header.joint_intensity + base_channel,
248               s->audio_header.prim_channels - base_channel, 3);
249     get_array(&s->gb, s->audio_header.transient_huffman + base_channel,
250               s->audio_header.prim_channels - base_channel, 2);
251     get_array(&s->gb, s->audio_header.scalefactor_huffman + base_channel,
252               s->audio_header.prim_channels - base_channel, 3);
253     get_array(&s->gb, s->audio_header.bitalloc_huffman + base_channel,
254               s->audio_header.prim_channels - base_channel, 3);
255
256     /* Get codebooks quantization indexes */
257     if (!base_channel)
258         memset(s->audio_header.quant_index_huffman, 0, sizeof(s->audio_header.quant_index_huffman));
259     for (j = 1; j < 11; j++)
260         for (i = base_channel; i < s->audio_header.prim_channels; i++)
261             s->audio_header.quant_index_huffman[i][j] = get_bits(&s->gb, bitlen[j]);
262
263     /* Get scale factor adjustment */
264     for (j = 0; j < 11; j++)
265         for (i = base_channel; i < s->audio_header.prim_channels; i++)
266             s->audio_header.scalefactor_adj[i][j] = 16;
267
268     for (j = 1; j < 11; j++)
269         for (i = base_channel; i < s->audio_header.prim_channels; i++)
270             if (s->audio_header.quant_index_huffman[i][j] < thr[j])
271                 s->audio_header.scalefactor_adj[i][j] = adj_table[get_bits(&s->gb, 2)];
272
273     if (s->crc_present) {
274         /* Audio header CRC check */
275         get_bits(&s->gb, 16);
276     }
277
278     s->current_subframe    = 0;
279     s->current_subsubframe = 0;
280
281     return 0;
282 }
283
284 static int dca_parse_frame_header(DCAContext *s)
285 {
286     init_get_bits(&s->gb, s->dca_buffer, s->dca_buffer_size * 8);
287
288     /* Sync code */
289     skip_bits_long(&s->gb, 32);
290
291     /* Frame header */
292     s->frame_type        = get_bits(&s->gb, 1);
293     s->samples_deficit   = get_bits(&s->gb, 5) + 1;
294     s->crc_present       = get_bits(&s->gb, 1);
295     s->sample_blocks     = get_bits(&s->gb, 7) + 1;
296     s->frame_size        = get_bits(&s->gb, 14) + 1;
297     if (s->frame_size < 95)
298         return AVERROR_INVALIDDATA;
299     s->amode             = get_bits(&s->gb, 6);
300     s->sample_rate       = avpriv_dca_sample_rates[get_bits(&s->gb, 4)];
301     if (!s->sample_rate)
302         return AVERROR_INVALIDDATA;
303     s->bit_rate_index    = get_bits(&s->gb, 5);
304     s->bit_rate          = ff_dca_bit_rates[s->bit_rate_index];
305     if (!s->bit_rate)
306         return AVERROR_INVALIDDATA;
307
308     skip_bits1(&s->gb); // always 0 (reserved, cf. ETSI TS 102 114 V1.4.1)
309     s->dynrange          = get_bits(&s->gb, 1);
310     s->timestamp         = get_bits(&s->gb, 1);
311     s->aux_data          = get_bits(&s->gb, 1);
312     s->hdcd              = get_bits(&s->gb, 1);
313     s->ext_descr         = get_bits(&s->gb, 3);
314     s->ext_coding        = get_bits(&s->gb, 1);
315     s->aspf              = get_bits(&s->gb, 1);
316     s->lfe               = get_bits(&s->gb, 2);
317     s->predictor_history = get_bits(&s->gb, 1);
318
319     if (s->lfe > 2) {
320         av_log(s->avctx, AV_LOG_ERROR, "Invalid LFE value: %d\n", s->lfe);
321         return AVERROR_INVALIDDATA;
322     }
323
324     /* TODO: check CRC */
325     if (s->crc_present)
326         s->header_crc    = get_bits(&s->gb, 16);
327
328     s->multirate_inter   = get_bits(&s->gb, 1);
329     s->version           = get_bits(&s->gb, 4);
330     s->copy_history      = get_bits(&s->gb, 2);
331     s->source_pcm_res    = get_bits(&s->gb, 3);
332     s->front_sum         = get_bits(&s->gb, 1);
333     s->surround_sum      = get_bits(&s->gb, 1);
334     s->dialog_norm       = get_bits(&s->gb, 4);
335
336     /* FIXME: channels mixing levels */
337     s->output = s->amode;
338     if (s->lfe)
339         s->output |= DCA_LFE;
340
341     /* Primary audio coding header */
342     s->audio_header.subframes = get_bits(&s->gb, 4) + 1;
343
344     return dca_parse_audio_coding_header(s, 0);
345 }
346
347 static inline int get_scale(GetBitContext *gb, int level, int value, int log2range)
348 {
349     if (level < 5) {
350         /* huffman encoded */
351         value += get_bitalloc(gb, &dca_scalefactor, level);
352         value  = av_clip(value, 0, (1 << log2range) - 1);
353     } else if (level < 8) {
354         if (level + 1 > log2range) {
355             skip_bits(gb, level + 1 - log2range);
356             value = get_bits(gb, log2range);
357         } else {
358             value = get_bits(gb, level + 1);
359         }
360     }
361     return value;
362 }
363
364 static int dca_subframe_header(DCAContext *s, int base_channel, int block_index)
365 {
366     /* Primary audio coding side information */
367     int j, k;
368
369     if (get_bits_left(&s->gb) < 0)
370         return AVERROR_INVALIDDATA;
371
372     if (!base_channel) {
373         s->subsubframes[s->current_subframe]    = get_bits(&s->gb, 2) + 1;
374         s->partial_samples[s->current_subframe] = get_bits(&s->gb, 3);
375     }
376
377     for (j = base_channel; j < s->audio_header.prim_channels; j++) {
378         for (k = 0; k < s->audio_header.subband_activity[j]; k++)
379             s->dca_chan[j].prediction_mode[k] = get_bits(&s->gb, 1);
380     }
381
382     /* Get prediction codebook */
383     for (j = base_channel; j < s->audio_header.prim_channels; j++) {
384         for (k = 0; k < s->audio_header.subband_activity[j]; k++) {
385             if (s->dca_chan[j].prediction_mode[k] > 0) {
386                 /* (Prediction coefficient VQ address) */
387                 s->dca_chan[j].prediction_vq[k] = get_bits(&s->gb, 12);
388             }
389         }
390     }
391
392     /* Bit allocation index */
393     for (j = base_channel; j < s->audio_header.prim_channels; j++) {
394         for (k = 0; k < s->audio_header.vq_start_subband[j]; k++) {
395             if (s->audio_header.bitalloc_huffman[j] == 6)
396                 s->dca_chan[j].bitalloc[k] = get_bits(&s->gb, 5);
397             else if (s->audio_header.bitalloc_huffman[j] == 5)
398                 s->dca_chan[j].bitalloc[k] = get_bits(&s->gb, 4);
399             else if (s->audio_header.bitalloc_huffman[j] == 7) {
400                 av_log(s->avctx, AV_LOG_ERROR,
401                        "Invalid bit allocation index\n");
402                 return AVERROR_INVALIDDATA;
403             } else {
404                 s->dca_chan[j].bitalloc[k] =
405                     get_bitalloc(&s->gb, &dca_bitalloc_index, s->audio_header.bitalloc_huffman[j]);
406             }
407
408             if (s->dca_chan[j].bitalloc[k] > 26) {
409                 ff_dlog(s->avctx, "bitalloc index [%i][%i] too big (%i)\n",
410                         j, k, s->dca_chan[j].bitalloc[k]);
411                 return AVERROR_INVALIDDATA;
412             }
413         }
414     }
415
416     /* Transition mode */
417     for (j = base_channel; j < s->audio_header.prim_channels; j++) {
418         for (k = 0; k < s->audio_header.subband_activity[j]; k++) {
419             s->dca_chan[j].transition_mode[k] = 0;
420             if (s->subsubframes[s->current_subframe] > 1 &&
421                 k < s->audio_header.vq_start_subband[j] && s->dca_chan[j].bitalloc[k] > 0) {
422                 s->dca_chan[j].transition_mode[k] =
423                     get_bitalloc(&s->gb, &dca_tmode, s->audio_header.transient_huffman[j]);
424             }
425         }
426     }
427
428     if (get_bits_left(&s->gb) < 0)
429         return AVERROR_INVALIDDATA;
430
431     for (j = base_channel; j < s->audio_header.prim_channels; j++) {
432         const uint32_t *scale_table;
433         int scale_sum, log_size;
434
435         memset(s->dca_chan[j].scale_factor, 0,
436                s->audio_header.subband_activity[j] * sizeof(s->dca_chan[j].scale_factor[0][0]) * 2);
437
438         if (s->audio_header.scalefactor_huffman[j] == 6) {
439             scale_table = ff_dca_scale_factor_quant7;
440             log_size    = 7;
441         } else {
442             scale_table = ff_dca_scale_factor_quant6;
443             log_size    = 6;
444         }
445
446         /* When huffman coded, only the difference is encoded */
447         scale_sum = 0;
448
449         for (k = 0; k < s->audio_header.subband_activity[j]; k++) {
450             if (k >= s->audio_header.vq_start_subband[j] || s->dca_chan[j].bitalloc[k] > 0) {
451                 scale_sum = get_scale(&s->gb, s->audio_header.scalefactor_huffman[j], scale_sum, log_size);
452                 s->dca_chan[j].scale_factor[k][0] = scale_table[scale_sum];
453             }
454
455             if (k < s->audio_header.vq_start_subband[j] && s->dca_chan[j].transition_mode[k]) {
456                 /* Get second scale factor */
457                 scale_sum = get_scale(&s->gb, s->audio_header.scalefactor_huffman[j], scale_sum, log_size);
458                 s->dca_chan[j].scale_factor[k][1] = scale_table[scale_sum];
459             }
460         }
461     }
462
463     /* Joint subband scale factor codebook select */
464     for (j = base_channel; j < s->audio_header.prim_channels; j++) {
465         /* Transmitted only if joint subband coding enabled */
466         if (s->audio_header.joint_intensity[j] > 0)
467             s->dca_chan[j].joint_huff = get_bits(&s->gb, 3);
468     }
469
470     if (get_bits_left(&s->gb) < 0)
471         return AVERROR_INVALIDDATA;
472
473     /* Scale factors for joint subband coding */
474     for (j = base_channel; j < s->audio_header.prim_channels; j++) {
475         int source_channel;
476
477         /* Transmitted only if joint subband coding enabled */
478         if (s->audio_header.joint_intensity[j] > 0) {
479             int scale = 0;
480             source_channel = s->audio_header.joint_intensity[j] - 1;
481
482             /* When huffman coded, only the difference is encoded
483              * (is this valid as well for joint scales ???) */
484
485             for (k = s->audio_header.subband_activity[j];
486                  k < s->audio_header.subband_activity[source_channel]; k++) {
487                 scale = get_scale(&s->gb, s->dca_chan[j].joint_huff, 64 /* bias */, 7);
488                 s->dca_chan[j].joint_scale_factor[k] = scale;    /*joint_scale_table[scale]; */
489             }
490
491             if (!(s->debug_flag & 0x02)) {
492                 av_log(s->avctx, AV_LOG_DEBUG,
493                        "Joint stereo coding not supported\n");
494                 s->debug_flag |= 0x02;
495             }
496         }
497     }
498
499     /* Dynamic range coefficient */
500     if (!base_channel && s->dynrange)
501         s->dynrange_coef = get_bits(&s->gb, 8);
502
503     /* Side information CRC check word */
504     if (s->crc_present) {
505         get_bits(&s->gb, 16);
506     }
507
508     /*
509      * Primary audio data arrays
510      */
511
512     /* VQ encoded high frequency subbands */
513     for (j = base_channel; j < s->audio_header.prim_channels; j++)
514         for (k = s->audio_header.vq_start_subband[j]; k < s->audio_header.subband_activity[j]; k++)
515             /* 1 vector -> 32 samples */
516             s->dca_chan[j].high_freq_vq[k] = get_bits(&s->gb, 10);
517
518     /* Low frequency effect data */
519     if (!base_channel && s->lfe) {
520         /* LFE samples */
521         int lfe_samples    = 2 * s->lfe * (4 + block_index);
522         int lfe_end_sample = 2 * s->lfe * (4 + block_index + s->subsubframes[s->current_subframe]);
523         float lfe_scale;
524
525         for (j = lfe_samples; j < lfe_end_sample; j++) {
526             /* Signed 8 bits int */
527             s->lfe_data[j] = get_sbits(&s->gb, 8);
528         }
529
530         /* Scale factor index */
531         skip_bits(&s->gb, 1);
532         s->lfe_scale_factor = ff_dca_scale_factor_quant7[get_bits(&s->gb, 7)];
533
534         /* Quantization step size * scale factor */
535         lfe_scale = 0.035 * s->lfe_scale_factor;
536
537         for (j = lfe_samples; j < lfe_end_sample; j++)
538             s->lfe_data[j] *= lfe_scale;
539     }
540
541     return 0;
542 }
543
544 static void qmf_32_subbands(DCAContext *s, int chans,
545                             float samples_in[DCA_SUBBANDS][SAMPLES_PER_SUBBAND], float *samples_out,
546                             float scale)
547 {
548     const float *prCoeff;
549
550     int sb_act = s->audio_header.subband_activity[chans];
551
552     scale *= sqrt(1 / 8.0);
553
554     /* Select filter */
555     if (!s->multirate_inter)    /* Non-perfect reconstruction */
556         prCoeff = ff_dca_fir_32bands_nonperfect;
557     else                        /* Perfect reconstruction */
558         prCoeff = ff_dca_fir_32bands_perfect;
559
560     s->dcadsp.qmf_32_subbands(samples_in, sb_act, &s->synth, &s->imdct,
561                               s->dca_chan[chans].subband_fir_hist,
562                               &s->dca_chan[chans].hist_index,
563                               s->dca_chan[chans].subband_fir_noidea, prCoeff,
564                               samples_out, s->raXin, scale);
565 }
566
567 static QMF64_table *qmf64_precompute(void)
568 {
569     unsigned i, j;
570     QMF64_table *table = av_malloc(sizeof(*table));
571     if (!table)
572         return NULL;
573
574     for (i = 0; i < 32; i++)
575         for (j = 0; j < 32; j++)
576             table->dct4_coeff[i][j] = cos((2 * i + 1) * (2 * j + 1) * M_PI / 128);
577     for (i = 0; i < 32; i++)
578         for (j = 0; j < 32; j++)
579             table->dct2_coeff[i][j] = cos((2 * i + 1) *      j      * M_PI /  64);
580
581     /* FIXME: Is the factor 0.125 = 1/8 right? */
582     for (i = 0; i < 32; i++)
583         table->rcos[i] =  0.125 / cos((2 * i + 1) * M_PI / 256);
584     for (i = 0; i < 32; i++)
585         table->rsin[i] = -0.125 / sin((2 * i + 1) * M_PI / 256);
586
587     return table;
588 }
589
590 /* FIXME: Totally unoptimized. Based on the reference code and
591  * http://multimedia.cx/mirror/dca-transform.pdf, with guessed tweaks
592  * for doubling the size. */
593 static void qmf_64_subbands(DCAContext *s, int chans,
594                             float samples_in[DCA_SUBBANDS_X96K][SAMPLES_PER_SUBBAND],
595                             float *samples_out, float scale)
596 {
597     float raXin[64];
598     float A[32], B[32];
599     float *raX = s->dca_chan[chans].subband_fir_hist;
600     float *raZ = s->dca_chan[chans].subband_fir_noidea;
601     unsigned i, j, k, subindex;
602
603     for (i = s->audio_header.subband_activity[chans]; i < DCA_SUBBANDS_X96K; i++)
604         raXin[i] = 0.0;
605     for (subindex = 0; subindex < SAMPLES_PER_SUBBAND; subindex++) {
606         for (i = 0; i < s->audio_header.subband_activity[chans]; i++)
607             raXin[i] = samples_in[i][subindex];
608
609         for (k = 0; k < 32; k++) {
610             A[k] = 0.0;
611             for (i = 0; i < 32; i++)
612                 A[k] += (raXin[2 * i] + raXin[2 * i + 1]) * s->qmf64_table->dct4_coeff[k][i];
613         }
614         for (k = 0; k < 32; k++) {
615             B[k] = raXin[0] * s->qmf64_table->dct2_coeff[k][0];
616             for (i = 1; i < 32; i++)
617                 B[k] += (raXin[2 * i] + raXin[2 * i - 1]) * s->qmf64_table->dct2_coeff[k][i];
618         }
619         for (k = 0; k < 32; k++) {
620             raX[k]      = s->qmf64_table->rcos[k] * (A[k] + B[k]);
621             raX[63 - k] = s->qmf64_table->rsin[k] * (A[k] - B[k]);
622         }
623
624         for (i = 0; i < DCA_SUBBANDS_X96K; i++) {
625             float out = raZ[i];
626             for (j = 0; j < 1024; j += 128)
627                 out += ff_dca_fir_64bands[j + i] * (raX[j + i] - raX[j + 63 - i]);
628             *samples_out++ = out * scale;
629         }
630
631         for (i = 0; i < DCA_SUBBANDS_X96K; i++) {
632             float hist = 0.0;
633             for (j = 0; j < 1024; j += 128)
634                 hist += ff_dca_fir_64bands[64 + j + i] * (-raX[i + j] - raX[j + 63 - i]);
635
636             raZ[i] = hist;
637         }
638
639         /* FIXME: Make buffer circular, to avoid this move. */
640         memmove(raX + 64, raX, (1024 - 64) * sizeof(*raX));
641     }
642 }
643
644 static void lfe_interpolation_fir(DCAContext *s, const float *samples_in,
645                                   float *samples_out)
646 {
647     /* samples_in: An array holding decimated samples.
648      *   Samples in current subframe starts from samples_in[0],
649      *   while samples_in[-1], samples_in[-2], ..., stores samples
650      *   from last subframe as history.
651      *
652      * samples_out: An array holding interpolated samples
653      */
654
655     int idx;
656     const float *prCoeff;
657     int deciindex;
658
659     /* Select decimation filter */
660     if (s->lfe == 1) {
661         idx     = 1;
662         prCoeff = ff_dca_lfe_fir_128;
663     } else {
664         idx = 0;
665         if (s->exss_ext_mask & DCA_EXT_EXSS_XLL)
666             prCoeff = ff_dca_lfe_xll_fir_64;
667         else
668             prCoeff = ff_dca_lfe_fir_64;
669     }
670     /* Interpolation */
671     for (deciindex = 0; deciindex < 2 * s->lfe; deciindex++) {
672         s->dcadsp.lfe_fir[idx](samples_out, samples_in, prCoeff);
673         samples_in++;
674         samples_out += 2 * 32 * (1 + idx);
675     }
676 }
677
678 /* downmixing routines */
679 #define MIX_REAR1(samples, s1, rs, coef)            \
680     samples[0][i] += samples[s1][i] * coef[rs][0];  \
681     samples[1][i] += samples[s1][i] * coef[rs][1];
682
683 #define MIX_REAR2(samples, s1, s2, rs, coef)                                          \
684     samples[0][i] += samples[s1][i] * coef[rs][0] + samples[s2][i] * coef[rs + 1][0]; \
685     samples[1][i] += samples[s1][i] * coef[rs][1] + samples[s2][i] * coef[rs + 1][1];
686
687 #define MIX_FRONT3(samples, coef)                                      \
688     t = samples[c][i];                                                 \
689     u = samples[l][i];                                                 \
690     v = samples[r][i];                                                 \
691     samples[0][i] = t * coef[0][0] + u * coef[1][0] + v * coef[2][0];  \
692     samples[1][i] = t * coef[0][1] + u * coef[1][1] + v * coef[2][1];
693
694 #define DOWNMIX_TO_STEREO(op1, op2)             \
695     for (i = 0; i < 256; i++) {                 \
696         op1                                     \
697         op2                                     \
698     }
699
700 static void dca_downmix(float **samples, int srcfmt, int lfe_present,
701                         float coef[DCA_PRIM_CHANNELS_MAX + 1][2],
702                         const int8_t *channel_mapping)
703 {
704     int c, l, r, sl, sr, s;
705     int i;
706     float t, u, v;
707
708     switch (srcfmt) {
709     case DCA_MONO:
710     case DCA_4F2R:
711         av_log(NULL, 0, "Not implemented!\n");
712         break;
713     case DCA_CHANNEL:
714     case DCA_STEREO:
715     case DCA_STEREO_TOTAL:
716     case DCA_STEREO_SUMDIFF:
717         break;
718     case DCA_3F:
719         c = channel_mapping[0];
720         l = channel_mapping[1];
721         r = channel_mapping[2];
722         DOWNMIX_TO_STEREO(MIX_FRONT3(samples, coef), );
723         break;
724     case DCA_2F1R:
725         s = channel_mapping[2];
726         DOWNMIX_TO_STEREO(MIX_REAR1(samples, s, 2, coef), );
727         break;
728     case DCA_3F1R:
729         c = channel_mapping[0];
730         l = channel_mapping[1];
731         r = channel_mapping[2];
732         s = channel_mapping[3];
733         DOWNMIX_TO_STEREO(MIX_FRONT3(samples, coef),
734                           MIX_REAR1(samples, s, 3, coef));
735         break;
736     case DCA_2F2R:
737         sl = channel_mapping[2];
738         sr = channel_mapping[3];
739         DOWNMIX_TO_STEREO(MIX_REAR2(samples, sl, sr, 2, coef), );
740         break;
741     case DCA_3F2R:
742         c  = channel_mapping[0];
743         l  = channel_mapping[1];
744         r  = channel_mapping[2];
745         sl = channel_mapping[3];
746         sr = channel_mapping[4];
747         DOWNMIX_TO_STEREO(MIX_FRONT3(samples, coef),
748                           MIX_REAR2(samples, sl, sr, 3, coef));
749         break;
750     }
751     if (lfe_present) {
752         int lf_buf = ff_dca_lfe_index[srcfmt];
753         int lf_idx =  ff_dca_channels[srcfmt];
754         for (i = 0; i < 256; i++) {
755             samples[0][i] += samples[lf_buf][i] * coef[lf_idx][0];
756             samples[1][i] += samples[lf_buf][i] * coef[lf_idx][1];
757         }
758     }
759 }
760
761 #ifndef decode_blockcodes
762 /* Very compact version of the block code decoder that does not use table
763  * look-up but is slightly slower */
764 static int decode_blockcode(int code, int levels, int32_t *values)
765 {
766     int i;
767     int offset = (levels - 1) >> 1;
768
769     for (i = 0; i < 4; i++) {
770         int div = FASTDIV(code, levels);
771         values[i] = code - offset - div * levels;
772         code      = div;
773     }
774
775     return code;
776 }
777
778 static int decode_blockcodes(int code1, int code2, int levels, int32_t *values)
779 {
780     return decode_blockcode(code1, levels, values) |
781            decode_blockcode(code2, levels, values + 4);
782 }
783 #endif
784
785 static const uint8_t abits_sizes[7]  = { 7, 10, 12, 13, 15, 17, 19 };
786 static const uint8_t abits_levels[7] = { 3,  5,  7,  9, 13, 17, 25 };
787
788 static int dca_subsubframe(DCAContext *s, int base_channel, int block_index)
789 {
790     int k, l;
791     int subsubframe = s->current_subsubframe;
792     const uint32_t *quant_step_table;
793
794     /*
795      * Audio data
796      */
797
798     /* Select quantization step size table */
799     if (s->bit_rate_index == 0x1f)
800         quant_step_table = ff_dca_lossless_quant;
801     else
802         quant_step_table = ff_dca_lossy_quant;
803
804     for (k = base_channel; k < s->audio_header.prim_channels; k++) {
805         int32_t (*subband_samples)[8] = s->dca_chan[k].subband_samples[block_index];
806
807         if (get_bits_left(&s->gb) < 0)
808             return AVERROR_INVALIDDATA;
809
810         for (l = 0; l < s->audio_header.vq_start_subband[k]; l++) {
811             int m;
812
813             /* Select the mid-tread linear quantizer */
814             int abits = s->dca_chan[k].bitalloc[l];
815
816             uint32_t quant_step_size = quant_step_table[abits];
817
818             /*
819              * Extract bits from the bit stream
820              */
821             if (!abits)
822                 memset(subband_samples[l], 0, SAMPLES_PER_SUBBAND *
823                        sizeof(subband_samples[l][0]));
824             else {
825                 uint32_t rscale;
826                 /* Deal with transients */
827                 int sfi = s->dca_chan[k].transition_mode[l] &&
828                     subsubframe >= s->dca_chan[k].transition_mode[l];
829                 /* Determine quantization index code book and its type.
830                    Select quantization index code book */
831                 int sel = s->audio_header.quant_index_huffman[k][abits];
832
833                 rscale = (s->dca_chan[k].scale_factor[l][sfi] *
834                           s->audio_header.scalefactor_adj[k][sel] + 8) >> 4;
835
836                 if (abits >= 11 || !dca_smpl_bitalloc[abits].vlc[sel].table) {
837                     if (abits <= 7) {
838                         /* Block code */
839                         int block_code1, block_code2, size, levels, err;
840
841                         size   = abits_sizes[abits - 1];
842                         levels = abits_levels[abits - 1];
843
844                         block_code1 = get_bits(&s->gb, size);
845                         block_code2 = get_bits(&s->gb, size);
846                         err         = decode_blockcodes(block_code1, block_code2,
847                                                         levels, subband_samples[l]);
848                         if (err) {
849                             av_log(s->avctx, AV_LOG_ERROR,
850                                    "ERROR: block code look-up failed\n");
851                             return AVERROR_INVALIDDATA;
852                         }
853                     } else {
854                         /* no coding */
855                         for (m = 0; m < SAMPLES_PER_SUBBAND; m++)
856                             subband_samples[l][m] = get_sbits(&s->gb, abits - 3);
857                     }
858                 } else {
859                     /* Huffman coded */
860                     for (m = 0; m < SAMPLES_PER_SUBBAND; m++)
861                         subband_samples[l][m] = get_bitalloc(&s->gb,
862                                                              &dca_smpl_bitalloc[abits], sel);
863                 }
864                 s->dcadsp.dequantize(subband_samples[l], quant_step_size, rscale);
865             }
866         }
867
868         for (l = 0; l < s->audio_header.vq_start_subband[k]; l++) {
869             int m;
870             /*
871              * Inverse ADPCM if in prediction mode
872              */
873             if (s->dca_chan[k].prediction_mode[l]) {
874                 int n;
875                 if (s->predictor_history)
876                     subband_samples[l][0] += (ff_dca_adpcm_vb[s->dca_chan[k].prediction_vq[l]][0] *
877                                               (int64_t)s->dca_chan[k].subband_samples_hist[l][3] +
878                                               ff_dca_adpcm_vb[s->dca_chan[k].prediction_vq[l]][1] *
879                                               (int64_t)s->dca_chan[k].subband_samples_hist[l][2] +
880                                               ff_dca_adpcm_vb[s->dca_chan[k].prediction_vq[l]][2] *
881                                               (int64_t)s->dca_chan[k].subband_samples_hist[l][1] +
882                                               ff_dca_adpcm_vb[s->dca_chan[k].prediction_vq[l]][3] *
883                                               (int64_t)s->dca_chan[k].subband_samples_hist[l][0]) +
884                                               (1 << 12) >> 13;
885                 for (m = 1; m < SAMPLES_PER_SUBBAND; m++) {
886                     int64_t sum = ff_dca_adpcm_vb[s->dca_chan[k].prediction_vq[l]][0] *
887                                   (int64_t)subband_samples[l][m - 1];
888                     for (n = 2; n <= 4; n++)
889                         if (m >= n)
890                             sum += ff_dca_adpcm_vb[s->dca_chan[k].prediction_vq[l]][n - 1] *
891                                    (int64_t)subband_samples[l][m - n];
892                         else if (s->predictor_history)
893                             sum += ff_dca_adpcm_vb[s->dca_chan[k].prediction_vq[l]][n - 1] *
894                                    (int64_t)s->dca_chan[k].subband_samples_hist[l][m - n + 4];
895                     subband_samples[l][m] += (int32_t)(sum + (1 << 12) >> 13);
896                 }
897             }
898
899         }
900         /* Backup predictor history for adpcm */
901         for (l = 0; l < DCA_SUBBANDS; l++)
902             AV_COPY128(s->dca_chan[k].subband_samples_hist[l], &subband_samples[l][4]);
903
904
905         /*
906          * Decode VQ encoded high frequencies
907          */
908         if (s->audio_header.subband_activity[k] > s->audio_header.vq_start_subband[k]) {
909             if (!s->debug_flag & 0x01) {
910                 av_log(s->avctx, AV_LOG_DEBUG,
911                        "Stream with high frequencies VQ coding\n");
912                 s->debug_flag |= 0x01;
913             }
914
915             s->dcadsp.decode_hf(subband_samples, s->dca_chan[k].high_freq_vq,
916                                 ff_dca_high_freq_vq,
917                                 subsubframe * SAMPLES_PER_SUBBAND,
918                                 s->dca_chan[k].scale_factor,
919                                 s->audio_header.vq_start_subband[k],
920                                 s->audio_header.subband_activity[k]);
921         }
922     }
923
924     /* Check for DSYNC after subsubframe */
925     if (s->aspf || subsubframe == s->subsubframes[s->current_subframe] - 1) {
926         if (get_bits(&s->gb, 16) != 0xFFFF) {
927             av_log(s->avctx, AV_LOG_ERROR, "Didn't get subframe DSYNC\n");
928             return AVERROR_INVALIDDATA;
929         }
930     }
931
932     return 0;
933 }
934
935 static int dca_filter_channels(DCAContext *s, int block_index, int upsample)
936 {
937     int k;
938
939     if (upsample) {
940         LOCAL_ALIGNED(32, float, samples, [DCA_SUBBANDS_X96K], [SAMPLES_PER_SUBBAND]);
941
942         if (!s->qmf64_table) {
943             s->qmf64_table = qmf64_precompute();
944             if (!s->qmf64_table)
945                 return AVERROR(ENOMEM);
946         }
947
948         /* 64 subbands QMF */
949         for (k = 0; k < s->audio_header.prim_channels; k++) {
950             int channel = s->channel_order_tab[k];
951             int32_t (*subband_samples)[SAMPLES_PER_SUBBAND] =
952                      s->dca_chan[k].subband_samples[block_index];
953
954             s->fmt_conv.int32_to_float(samples[0], subband_samples[0],
955                                        DCA_SUBBANDS_X96K * SAMPLES_PER_SUBBAND);
956
957             if (channel >= 0)
958                 qmf_64_subbands(s, k, samples,
959                                 s->samples_chanptr[channel],
960                                 /* Upsampling needs a factor 2 here. */
961                                 M_SQRT2 / 32768.0);
962         }
963     } else {
964         /* 32 subbands QMF */
965         LOCAL_ALIGNED(32, float, samples, [DCA_SUBBANDS], [SAMPLES_PER_SUBBAND]);
966
967         for (k = 0; k < s->audio_header.prim_channels; k++) {
968             int channel = s->channel_order_tab[k];
969             int32_t (*subband_samples)[SAMPLES_PER_SUBBAND] =
970                      s->dca_chan[k].subband_samples[block_index];
971
972             s->fmt_conv.int32_to_float(samples[0], subband_samples[0],
973                                        DCA_SUBBANDS * SAMPLES_PER_SUBBAND);
974
975             if (channel >= 0)
976                 qmf_32_subbands(s, k, samples,
977                                 s->samples_chanptr[channel],
978                                 M_SQRT1_2 / 32768.0);
979         }
980     }
981
982     /* Generate LFE samples for this subsubframe FIXME!!! */
983     if (s->lfe) {
984         float *samples = s->samples_chanptr[ff_dca_lfe_index[s->amode]];
985         lfe_interpolation_fir(s,
986                               s->lfe_data + 2 * s->lfe * (block_index + 4),
987                               samples);
988         if (upsample) {
989             unsigned i;
990             /* Should apply the filter in Table 6-11 when upsampling. For
991              * now, just duplicate. */
992             for (i = 511; i > 0; i--) {
993                 samples[2 * i]     =
994                 samples[2 * i + 1] = samples[i];
995             }
996             samples[1] = samples[0];
997         }
998     }
999
1000     /* FIXME: This downmixing is probably broken with upsample.
1001      * Probably totally broken also with XLL in general. */
1002     /* Downmixing to Stereo */
1003     if (s->audio_header.prim_channels + !!s->lfe > 2 &&
1004         s->avctx->request_channel_layout == AV_CH_LAYOUT_STEREO) {
1005         dca_downmix(s->samples_chanptr, s->amode, !!s->lfe, s->downmix_coef,
1006                     s->channel_order_tab);
1007     }
1008
1009     return 0;
1010 }
1011
1012 static int dca_subframe_footer(DCAContext *s, int base_channel)
1013 {
1014     int in, out, aux_data_count, aux_data_end, reserved;
1015     uint32_t nsyncaux;
1016
1017     /*
1018      * Unpack optional information
1019      */
1020
1021     /* presumably optional information only appears in the core? */
1022     if (!base_channel) {
1023         if (s->timestamp)
1024             skip_bits_long(&s->gb, 32);
1025
1026         if (s->aux_data) {
1027             aux_data_count = get_bits(&s->gb, 6);
1028
1029             // align (32-bit)
1030             skip_bits_long(&s->gb, (-get_bits_count(&s->gb)) & 31);
1031
1032             aux_data_end = 8 * aux_data_count + get_bits_count(&s->gb);
1033
1034             if ((nsyncaux = get_bits_long(&s->gb, 32)) != DCA_NSYNCAUX) {
1035                 av_log(s->avctx, AV_LOG_ERROR, "nSYNCAUX mismatch %#"PRIx32"\n",
1036                        nsyncaux);
1037                 return AVERROR_INVALIDDATA;
1038             }
1039
1040             if (get_bits1(&s->gb)) { // bAUXTimeStampFlag
1041                 avpriv_request_sample(s->avctx,
1042                                       "Auxiliary Decode Time Stamp Flag");
1043                 // align (4-bit)
1044                 skip_bits(&s->gb, (-get_bits_count(&s->gb)) & 4);
1045                 // 44 bits: nMSByte (8), nMarker (4), nLSByte (28), nMarker (4)
1046                 skip_bits_long(&s->gb, 44);
1047             }
1048
1049             if ((s->core_downmix = get_bits1(&s->gb))) {
1050                 int am = get_bits(&s->gb, 3);
1051                 switch (am) {
1052                 case 0:
1053                     s->core_downmix_amode = DCA_MONO;
1054                     break;
1055                 case 1:
1056                     s->core_downmix_amode = DCA_STEREO;
1057                     break;
1058                 case 2:
1059                     s->core_downmix_amode = DCA_STEREO_TOTAL;
1060                     break;
1061                 case 3:
1062                     s->core_downmix_amode = DCA_3F;
1063                     break;
1064                 case 4:
1065                     s->core_downmix_amode = DCA_2F1R;
1066                     break;
1067                 case 5:
1068                     s->core_downmix_amode = DCA_2F2R;
1069                     break;
1070                 case 6:
1071                     s->core_downmix_amode = DCA_3F1R;
1072                     break;
1073                 default:
1074                     av_log(s->avctx, AV_LOG_ERROR,
1075                            "Invalid mode %d for embedded downmix coefficients\n",
1076                            am);
1077                     return AVERROR_INVALIDDATA;
1078                 }
1079                 for (out = 0; out < ff_dca_channels[s->core_downmix_amode]; out++) {
1080                     for (in = 0; in < s->audio_header.prim_channels + !!s->lfe; in++) {
1081                         uint16_t tmp = get_bits(&s->gb, 9);
1082                         if ((tmp & 0xFF) > 241) {
1083                             av_log(s->avctx, AV_LOG_ERROR,
1084                                    "Invalid downmix coefficient code %"PRIu16"\n",
1085                                    tmp);
1086                             return AVERROR_INVALIDDATA;
1087                         }
1088                         s->core_downmix_codes[in][out] = tmp;
1089                     }
1090                 }
1091             }
1092
1093             align_get_bits(&s->gb); // byte align
1094             skip_bits(&s->gb, 16);  // nAUXCRC16
1095
1096             /*
1097              * additional data (reserved, cf. ETSI TS 102 114 V1.4.1)
1098              *
1099              * Note: don't check for overreads, aux_data_count can't be trusted.
1100              */
1101             if ((reserved = (aux_data_end - get_bits_count(&s->gb))) > 0) {
1102                 avpriv_request_sample(s->avctx,
1103                                       "Core auxiliary data reserved content");
1104                 skip_bits_long(&s->gb, reserved);
1105             }
1106         }
1107
1108         if (s->crc_present && s->dynrange)
1109             get_bits(&s->gb, 16);
1110     }
1111
1112     return 0;
1113 }
1114
1115 /**
1116  * Decode a dca frame block
1117  *
1118  * @param s     pointer to the DCAContext
1119  */
1120
1121 static int dca_decode_block(DCAContext *s, int base_channel, int block_index)
1122 {
1123     int ret;
1124
1125     /* Sanity check */
1126     if (s->current_subframe >= s->audio_header.subframes) {
1127         av_log(s->avctx, AV_LOG_DEBUG, "check failed: %i>%i",
1128                s->current_subframe, s->audio_header.subframes);
1129         return AVERROR_INVALIDDATA;
1130     }
1131
1132     if (!s->current_subsubframe) {
1133         /* Read subframe header */
1134         if ((ret = dca_subframe_header(s, base_channel, block_index)))
1135             return ret;
1136     }
1137
1138     /* Read subsubframe */
1139     if ((ret = dca_subsubframe(s, base_channel, block_index)))
1140         return ret;
1141
1142     /* Update state */
1143     s->current_subsubframe++;
1144     if (s->current_subsubframe >= s->subsubframes[s->current_subframe]) {
1145         s->current_subsubframe = 0;
1146         s->current_subframe++;
1147     }
1148     if (s->current_subframe >= s->audio_header.subframes) {
1149         /* Read subframe footer */
1150         if ((ret = dca_subframe_footer(s, base_channel)))
1151             return ret;
1152     }
1153
1154     return 0;
1155 }
1156
1157 static float dca_dmix_code(unsigned code)
1158 {
1159     int sign = (code >> 8) - 1;
1160     code &= 0xff;
1161     return ((ff_dca_dmixtable[code] ^ sign) - sign) * (1.0 / (1U << 15));
1162 }
1163
1164 static int scan_for_extensions(AVCodecContext *avctx)
1165 {
1166     DCAContext *s = avctx->priv_data;
1167     int core_ss_end, ret = 0;
1168
1169     core_ss_end = FFMIN(s->frame_size, s->dca_buffer_size) * 8;
1170
1171     /* only scan for extensions if ext_descr was unknown or indicated a
1172      * supported XCh extension */
1173     if (s->core_ext_mask < 0 || s->core_ext_mask & DCA_EXT_XCH) {
1174         /* if ext_descr was unknown, clear s->core_ext_mask so that the
1175          * extensions scan can fill it up */
1176         s->core_ext_mask = FFMAX(s->core_ext_mask, 0);
1177
1178         /* extensions start at 32-bit boundaries into bitstream */
1179         skip_bits_long(&s->gb, (-get_bits_count(&s->gb)) & 31);
1180
1181         while (core_ss_end - get_bits_count(&s->gb) >= 32) {
1182             uint32_t bits = get_bits_long(&s->gb, 32);
1183             int i;
1184
1185             switch (bits) {
1186             case DCA_SYNCWORD_XCH: {
1187                 int ext_amode, xch_fsize;
1188
1189                 s->xch_base_channel = s->audio_header.prim_channels;
1190
1191                 /* validate sync word using XCHFSIZE field */
1192                 xch_fsize = show_bits(&s->gb, 10);
1193                 if ((s->frame_size != (get_bits_count(&s->gb) >> 3) - 4 + xch_fsize) &&
1194                     (s->frame_size != (get_bits_count(&s->gb) >> 3) - 4 + xch_fsize + 1))
1195                     continue;
1196
1197                 /* skip length-to-end-of-frame field for the moment */
1198                 skip_bits(&s->gb, 10);
1199
1200                 s->core_ext_mask |= DCA_EXT_XCH;
1201
1202                 /* extension amode(number of channels in extension) should be 1 */
1203                 /* AFAIK XCh is not used for more channels */
1204                 if ((ext_amode = get_bits(&s->gb, 4)) != 1) {
1205                     av_log(avctx, AV_LOG_ERROR,
1206                            "XCh extension amode %d not supported!\n",
1207                            ext_amode);
1208                     continue;
1209                 }
1210
1211                 /* much like core primary audio coding header */
1212                 dca_parse_audio_coding_header(s, s->xch_base_channel);
1213
1214                 for (i = 0; i < (s->sample_blocks / 8); i++)
1215                     if ((ret = dca_decode_block(s, s->xch_base_channel, i))) {
1216                         av_log(avctx, AV_LOG_ERROR, "error decoding XCh extension\n");
1217                         continue;
1218                     }
1219
1220                 s->xch_present = 1;
1221                 break;
1222             }
1223             case DCA_SYNCWORD_XXCH:
1224                 /* XXCh: extended channels */
1225                 /* usually found either in core or HD part in DTS-HD HRA streams,
1226                  * but not in DTS-ES which contains XCh extensions instead */
1227                 s->core_ext_mask |= DCA_EXT_XXCH;
1228                 break;
1229
1230             case 0x1d95f262: {
1231                 int fsize96 = show_bits(&s->gb, 12) + 1;
1232                 if (s->frame_size != (get_bits_count(&s->gb) >> 3) - 4 + fsize96)
1233                     continue;
1234
1235                 av_log(avctx, AV_LOG_DEBUG, "X96 extension found at %d bits\n",
1236                        get_bits_count(&s->gb));
1237                 skip_bits(&s->gb, 12);
1238                 av_log(avctx, AV_LOG_DEBUG, "FSIZE96 = %d bytes\n", fsize96);
1239                 av_log(avctx, AV_LOG_DEBUG, "REVNO = %d\n", get_bits(&s->gb, 4));
1240
1241                 s->core_ext_mask |= DCA_EXT_X96;
1242                 break;
1243             }
1244             }
1245
1246             skip_bits_long(&s->gb, (-get_bits_count(&s->gb)) & 31);
1247         }
1248     } else {
1249         /* no supported extensions, skip the rest of the core substream */
1250         skip_bits_long(&s->gb, core_ss_end - get_bits_count(&s->gb));
1251     }
1252
1253     if (s->core_ext_mask & DCA_EXT_X96)
1254         s->profile = FF_PROFILE_DTS_96_24;
1255     else if (s->core_ext_mask & (DCA_EXT_XCH | DCA_EXT_XXCH))
1256         s->profile = FF_PROFILE_DTS_ES;
1257
1258     /* check for ExSS (HD part) */
1259     if (s->dca_buffer_size - s->frame_size > 32 &&
1260         get_bits_long(&s->gb, 32) == DCA_SYNCWORD_SUBSTREAM)
1261         ff_dca_exss_parse_header(s);
1262
1263     return ret;
1264 }
1265
1266 static int set_channel_layout(AVCodecContext *avctx, int channels)
1267 {
1268     DCAContext *s = avctx->priv_data;
1269     int num_core_channels = s->audio_header.prim_channels;
1270     int i;
1271
1272     if (s->amode < 16) {
1273         avctx->channel_layout = dca_core_channel_layout[s->amode];
1274
1275         if (s->audio_header.prim_channels + !!s->lfe > 2 &&
1276             avctx->request_channel_layout == AV_CH_LAYOUT_STEREO) {
1277             /*
1278              * Neither the core's auxiliary data nor our default tables contain
1279              * downmix coefficients for the additional channel coded in the XCh
1280              * extension, so when we're doing a Stereo downmix, don't decode it.
1281              */
1282             s->xch_disable = 1;
1283         }
1284
1285         if (s->xch_present && !s->xch_disable) {
1286             avctx->channel_layout |= AV_CH_BACK_CENTER;
1287             if (s->lfe) {
1288                 avctx->channel_layout |= AV_CH_LOW_FREQUENCY;
1289                 s->channel_order_tab = ff_dca_channel_reorder_lfe_xch[s->amode];
1290             } else {
1291                 s->channel_order_tab = ff_dca_channel_reorder_nolfe_xch[s->amode];
1292             }
1293         } else {
1294             channels       = num_core_channels + !!s->lfe;
1295             s->xch_present = 0; /* disable further xch processing */
1296             if (s->lfe) {
1297                 avctx->channel_layout |= AV_CH_LOW_FREQUENCY;
1298                 s->channel_order_tab = ff_dca_channel_reorder_lfe[s->amode];
1299             } else
1300                 s->channel_order_tab = ff_dca_channel_reorder_nolfe[s->amode];
1301         }
1302
1303         if (channels < ff_dca_channels[s->amode] + !!s->lfe)
1304             return AVERROR_INVALIDDATA;
1305
1306         if (channels > !!s->lfe &&
1307             s->channel_order_tab[channels - 1 - !!s->lfe] < 0)
1308             return AVERROR_INVALIDDATA;
1309
1310         if (num_core_channels + !!s->lfe > 2 &&
1311             avctx->request_channel_layout == AV_CH_LAYOUT_STEREO) {
1312             channels              = 2;
1313             s->output             = s->audio_header.prim_channels == 2 ? s->amode : DCA_STEREO;
1314             avctx->channel_layout = AV_CH_LAYOUT_STEREO;
1315
1316             /* Stereo downmix coefficients
1317              *
1318              * The decoder can only downmix to 2-channel, so we need to ensure
1319              * embedded downmix coefficients are actually targeting 2-channel.
1320              */
1321             if (s->core_downmix && (s->core_downmix_amode == DCA_STEREO ||
1322                                     s->core_downmix_amode == DCA_STEREO_TOTAL)) {
1323                 for (i = 0; i < num_core_channels + !!s->lfe; i++) {
1324                     /* Range checked earlier */
1325                     s->downmix_coef[i][0] = dca_dmix_code(s->core_downmix_codes[i][0]);
1326                     s->downmix_coef[i][1] = dca_dmix_code(s->core_downmix_codes[i][1]);
1327                 }
1328                 s->output = s->core_downmix_amode;
1329             } else {
1330                 int am = s->amode & DCA_CHANNEL_MASK;
1331                 if (am >= FF_ARRAY_ELEMS(ff_dca_default_coeffs)) {
1332                     av_log(s->avctx, AV_LOG_ERROR,
1333                            "Invalid channel mode %d\n", am);
1334                     return AVERROR_INVALIDDATA;
1335                 }
1336                 if (num_core_channels + !!s->lfe >
1337                     FF_ARRAY_ELEMS(ff_dca_default_coeffs[0])) {
1338                     avpriv_request_sample(s->avctx, "Downmixing %d channels",
1339                                           s->audio_header.prim_channels + !!s->lfe);
1340                     return AVERROR_PATCHWELCOME;
1341                 }
1342                 for (i = 0; i < num_core_channels + !!s->lfe; i++) {
1343                     s->downmix_coef[i][0] = ff_dca_default_coeffs[am][i][0];
1344                     s->downmix_coef[i][1] = ff_dca_default_coeffs[am][i][1];
1345                 }
1346             }
1347             ff_dlog(s->avctx, "Stereo downmix coeffs:\n");
1348             for (i = 0; i < num_core_channels + !!s->lfe; i++) {
1349                 ff_dlog(s->avctx, "L, input channel %d = %f\n", i,
1350                         s->downmix_coef[i][0]);
1351                 ff_dlog(s->avctx, "R, input channel %d = %f\n", i,
1352                         s->downmix_coef[i][1]);
1353             }
1354             ff_dlog(s->avctx, "\n");
1355         }
1356     } else {
1357         av_log(avctx, AV_LOG_ERROR, "Nonstandard configuration %d !\n", s->amode);
1358         return AVERROR_INVALIDDATA;
1359     }
1360
1361     return 0;
1362 }
1363
1364 /**
1365  * Main frame decoding function
1366  * FIXME add arguments
1367  */
1368 static int dca_decode_frame(AVCodecContext *avctx, void *data,
1369                             int *got_frame_ptr, AVPacket *avpkt)
1370 {
1371     AVFrame *frame     = data;
1372     const uint8_t *buf = avpkt->data;
1373     int buf_size       = avpkt->size;
1374
1375     int lfe_samples;
1376     int i, ret;
1377     float  **samples_flt;
1378     DCAContext *s = avctx->priv_data;
1379     int channels, full_channels;
1380     int upsample = 0;
1381
1382     s->exss_ext_mask = 0;
1383     s->xch_present   = 0;
1384
1385     s->dca_buffer_size = ff_dca_convert_bitstream(buf, buf_size, s->dca_buffer,
1386                                                   DCA_MAX_FRAME_SIZE + DCA_MAX_EXSS_HEADER_SIZE);
1387     if (s->dca_buffer_size == AVERROR_INVALIDDATA) {
1388         av_log(avctx, AV_LOG_ERROR, "Not a valid DCA frame\n");
1389         return AVERROR_INVALIDDATA;
1390     }
1391
1392     if ((ret = dca_parse_frame_header(s)) < 0) {
1393         // seems like the frame is corrupt, try with the next one
1394         return ret;
1395     }
1396     // set AVCodec values with parsed data
1397     avctx->sample_rate = s->sample_rate;
1398     avctx->bit_rate    = s->bit_rate;
1399
1400     s->profile = FF_PROFILE_DTS;
1401
1402     for (i = 0; i < (s->sample_blocks / SAMPLES_PER_SUBBAND); i++) {
1403         if ((ret = dca_decode_block(s, 0, i))) {
1404             av_log(avctx, AV_LOG_ERROR, "error decoding block\n");
1405             return ret;
1406         }
1407     }
1408
1409     if (s->ext_coding)
1410         s->core_ext_mask = dca_ext_audio_descr_mask[s->ext_descr];
1411     else
1412         s->core_ext_mask = 0;
1413
1414     ret = scan_for_extensions(avctx);
1415
1416     avctx->profile = s->profile;
1417
1418     full_channels = channels = s->audio_header.prim_channels + !!s->lfe;
1419
1420     ret = set_channel_layout(avctx, channels);
1421     if (ret < 0)
1422         return ret;
1423     avctx->channels = channels;
1424
1425     /* get output buffer */
1426     frame->nb_samples = 256 * (s->sample_blocks / SAMPLES_PER_SUBBAND);
1427     if (s->exss_ext_mask & DCA_EXT_EXSS_XLL) {
1428         int xll_nb_samples = s->xll_segments * s->xll_smpl_in_seg;
1429         /* Check for invalid/unsupported conditions first */
1430         if (s->xll_residual_channels > channels) {
1431             av_log(s->avctx, AV_LOG_WARNING,
1432                    "DCA: too many residual channels (%d, core channels %d). Disabling XLL\n",
1433                    s->xll_residual_channels, channels);
1434             s->exss_ext_mask &= ~DCA_EXT_EXSS_XLL;
1435         } else if (xll_nb_samples != frame->nb_samples &&
1436                    2 * frame->nb_samples != xll_nb_samples) {
1437             av_log(s->avctx, AV_LOG_WARNING,
1438                    "DCA: unsupported upsampling (%d XLL samples, %d core samples). Disabling XLL\n",
1439                    xll_nb_samples, frame->nb_samples);
1440             s->exss_ext_mask &= ~DCA_EXT_EXSS_XLL;
1441         } else {
1442             if (2 * frame->nb_samples == xll_nb_samples) {
1443                 av_log(s->avctx, AV_LOG_INFO,
1444                        "XLL: upsampling core channels by a factor of 2\n");
1445                 upsample = 1;
1446
1447                 frame->nb_samples = xll_nb_samples;
1448                 // FIXME: Is it good enough to copy from the first channel set?
1449                 avctx->sample_rate = s->xll_chsets[0].sampling_frequency;
1450             }
1451             /* If downmixing to stereo, don't decode additional channels.
1452              * FIXME: Using the xch_disable flag for this doesn't seem right. */
1453             if (!s->xch_disable)
1454                 avctx->channels += s->xll_channels - s->xll_residual_channels;
1455         }
1456     }
1457
1458     /* FIXME: This is an ugly hack, to just revert to the default
1459      * layout if we have additional channels. Need to convert the XLL
1460      * channel masks to libav channel_layout mask. */
1461     if (av_get_channel_layout_nb_channels(avctx->channel_layout) != avctx->channels)
1462         avctx->channel_layout = 0;
1463
1464     if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) {
1465         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
1466         return ret;
1467     }
1468     samples_flt = (float **) frame->extended_data;
1469
1470     /* allocate buffer for extra channels if downmixing */
1471     if (avctx->channels < full_channels) {
1472         ret = av_samples_get_buffer_size(NULL, full_channels - channels,
1473                                          frame->nb_samples,
1474                                          avctx->sample_fmt, 0);
1475         if (ret < 0)
1476             return ret;
1477
1478         av_fast_malloc(&s->extra_channels_buffer,
1479                        &s->extra_channels_buffer_size, ret);
1480         if (!s->extra_channels_buffer)
1481             return AVERROR(ENOMEM);
1482
1483         ret = av_samples_fill_arrays((uint8_t **) s->extra_channels, NULL,
1484                                      s->extra_channels_buffer,
1485                                      full_channels - channels,
1486                                      frame->nb_samples, avctx->sample_fmt, 0);
1487         if (ret < 0)
1488             return ret;
1489     }
1490
1491     /* filter to get final output */
1492     for (i = 0; i < (s->sample_blocks / SAMPLES_PER_SUBBAND); i++) {
1493         int ch;
1494         unsigned block = upsample ? 512 : 256;
1495         for (ch = 0; ch < channels; ch++)
1496             s->samples_chanptr[ch] = samples_flt[ch] + i * block;
1497         for (; ch < full_channels; ch++)
1498             s->samples_chanptr[ch] = s->extra_channels[ch - channels] + i * block;
1499
1500         dca_filter_channels(s, i, upsample);
1501
1502         /* If this was marked as a DTS-ES stream we need to subtract back- */
1503         /* channel from SL & SR to remove matrixed back-channel signal */
1504         if ((s->source_pcm_res & 1) && s->xch_present) {
1505             float *back_chan = s->samples_chanptr[s->channel_order_tab[s->xch_base_channel]];
1506             float *lt_chan   = s->samples_chanptr[s->channel_order_tab[s->xch_base_channel - 2]];
1507             float *rt_chan   = s->samples_chanptr[s->channel_order_tab[s->xch_base_channel - 1]];
1508             s->fdsp.vector_fmac_scalar(lt_chan, back_chan, -M_SQRT1_2, 256);
1509             s->fdsp.vector_fmac_scalar(rt_chan, back_chan, -M_SQRT1_2, 256);
1510         }
1511     }
1512
1513     /* update lfe history */
1514     lfe_samples = 2 * s->lfe * (s->sample_blocks / SAMPLES_PER_SUBBAND);
1515     for (i = 0; i < 2 * s->lfe * 4; i++)
1516         s->lfe_data[i] = s->lfe_data[i + lfe_samples];
1517
1518     if (s->exss_ext_mask & DCA_EXT_EXSS_XLL) {
1519         ret = ff_dca_xll_decode_audio(s, frame);
1520         if (ret < 0)
1521             return ret;
1522     }
1523     /* AVMatrixEncoding
1524      *
1525      * DCA_STEREO_TOTAL (Lt/Rt) is equivalent to Dolby Surround */
1526     ret = ff_side_data_update_matrix_encoding(frame,
1527                                               (s->output & ~DCA_LFE) == DCA_STEREO_TOTAL ?
1528                                               AV_MATRIX_ENCODING_DOLBY : AV_MATRIX_ENCODING_NONE);
1529     if (ret < 0)
1530         return ret;
1531
1532     *got_frame_ptr = 1;
1533
1534     return buf_size;
1535 }
1536
1537 /**
1538  * DCA initialization
1539  *
1540  * @param avctx     pointer to the AVCodecContext
1541  */
1542
1543 static av_cold int dca_decode_init(AVCodecContext *avctx)
1544 {
1545     DCAContext *s = avctx->priv_data;
1546
1547     s->avctx = avctx;
1548     dca_init_vlcs();
1549
1550     avpriv_float_dsp_init(&s->fdsp, avctx->flags & AV_CODEC_FLAG_BITEXACT);
1551     ff_mdct_init(&s->imdct, 6, 1, 1.0);
1552     ff_synth_filter_init(&s->synth);
1553     ff_dcadsp_init(&s->dcadsp);
1554     ff_fmt_convert_init(&s->fmt_conv, avctx);
1555
1556     avctx->sample_fmt = AV_SAMPLE_FMT_FLTP;
1557
1558     /* allow downmixing to stereo */
1559     if (avctx->channels > 2 &&
1560         avctx->request_channel_layout == AV_CH_LAYOUT_STEREO)
1561         avctx->channels = 2;
1562
1563     return 0;
1564 }
1565
1566 static av_cold int dca_decode_end(AVCodecContext *avctx)
1567 {
1568     DCAContext *s = avctx->priv_data;
1569     ff_mdct_end(&s->imdct);
1570     av_freep(&s->extra_channels_buffer);
1571     av_freep(&s->xll_sample_buf);
1572     av_freep(&s->qmf64_table);
1573     return 0;
1574 }
1575
1576 static const AVOption options[] = {
1577     { "disable_xch", "disable decoding of the XCh extension", offsetof(DCAContext, xch_disable), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM },
1578     { "disable_xll", "disable decoding of the XLL extension", offsetof(DCAContext, xll_disable), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM },
1579     { NULL },
1580 };
1581
1582 static const AVClass dca_decoder_class = {
1583     .class_name = "DCA decoder",
1584     .item_name  = av_default_item_name,
1585     .option     = options,
1586     .version    = LIBAVUTIL_VERSION_INT,
1587 };
1588
1589 AVCodec ff_dca_decoder = {
1590     .name            = "dca",
1591     .long_name       = NULL_IF_CONFIG_SMALL("DCA (DTS Coherent Acoustics)"),
1592     .type            = AVMEDIA_TYPE_AUDIO,
1593     .id              = AV_CODEC_ID_DTS,
1594     .priv_data_size  = sizeof(DCAContext),
1595     .init            = dca_decode_init,
1596     .decode          = dca_decode_frame,
1597     .close           = dca_decode_end,
1598     .capabilities    = AV_CODEC_CAP_CHANNEL_CONF | AV_CODEC_CAP_DR1,
1599     .sample_fmts     = (const enum AVSampleFormat[]) { AV_SAMPLE_FMT_FLTP,
1600                                                        AV_SAMPLE_FMT_NONE },
1601     .profiles        = NULL_IF_CONFIG_SMALL(ff_dca_profiles),
1602     .priv_class      = &dca_decoder_class,
1603 };