]> git.sesse.net Git - ffmpeg/blob - libavcodec/aacdec.c
tiffenc: properly forward error codes in encode_frame().
[ffmpeg] / libavcodec / aacdec.c
1 /*
2  * AAC decoder
3  * Copyright (c) 2005-2006 Oded Shimon ( ods15 ods15 dyndns org )
4  * Copyright (c) 2006-2007 Maxim Gavrilov ( maxim.gavrilov gmail com )
5  *
6  * AAC LATM decoder
7  * Copyright (c) 2008-2010 Paul Kendall <paul@kcbbs.gen.nz>
8  * Copyright (c) 2010      Janne Grunau <janne-ffmpeg@jannau.net>
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 /**
28  * @file
29  * AAC decoder
30  * @author Oded Shimon  ( ods15 ods15 dyndns org )
31  * @author Maxim Gavrilov ( maxim.gavrilov gmail com )
32  */
33
34 /*
35  * supported tools
36  *
37  * Support?             Name
38  * N (code in SoC repo) gain control
39  * Y                    block switching
40  * Y                    window shapes - standard
41  * N                    window shapes - Low Delay
42  * Y                    filterbank - standard
43  * N (code in SoC repo) filterbank - Scalable Sample Rate
44  * Y                    Temporal Noise Shaping
45  * Y                    Long Term Prediction
46  * Y                    intensity stereo
47  * Y                    channel coupling
48  * Y                    frequency domain prediction
49  * Y                    Perceptual Noise Substitution
50  * Y                    Mid/Side stereo
51  * N                    Scalable Inverse AAC Quantization
52  * N                    Frequency Selective Switch
53  * N                    upsampling filter
54  * Y                    quantization & coding - AAC
55  * N                    quantization & coding - TwinVQ
56  * N                    quantization & coding - BSAC
57  * N                    AAC Error Resilience tools
58  * N                    Error Resilience payload syntax
59  * N                    Error Protection tool
60  * N                    CELP
61  * N                    Silence Compression
62  * N                    HVXC
63  * N                    HVXC 4kbits/s VR
64  * N                    Structured Audio tools
65  * N                    Structured Audio Sample Bank Format
66  * N                    MIDI
67  * N                    Harmonic and Individual Lines plus Noise
68  * N                    Text-To-Speech Interface
69  * Y                    Spectral Band Replication
70  * Y (not in this code) Layer-1
71  * Y (not in this code) Layer-2
72  * Y (not in this code) Layer-3
73  * N                    SinuSoidal Coding (Transient, Sinusoid, Noise)
74  * Y                    Parametric Stereo
75  * N                    Direct Stream Transfer
76  *
77  * Note: - HE AAC v1 comprises LC AAC with Spectral Band Replication.
78  *       - HE AAC v2 comprises LC AAC with Spectral Band Replication and
79            Parametric Stereo.
80  */
81
82
83 #include "avcodec.h"
84 #include "internal.h"
85 #include "get_bits.h"
86 #include "dsputil.h"
87 #include "fft.h"
88 #include "fmtconvert.h"
89 #include "lpc.h"
90 #include "kbdwin.h"
91 #include "sinewin.h"
92
93 #include "aac.h"
94 #include "aactab.h"
95 #include "aacdectab.h"
96 #include "cbrt_tablegen.h"
97 #include "sbr.h"
98 #include "aacsbr.h"
99 #include "mpeg4audio.h"
100 #include "aacadtsdec.h"
101 #include "libavutil/intfloat.h"
102
103 #include <assert.h>
104 #include <errno.h>
105 #include <math.h>
106 #include <string.h>
107
108 #if ARCH_ARM
109 #   include "arm/aac.h"
110 #endif
111
112 static VLC vlc_scalefactors;
113 static VLC vlc_spectral[11];
114
115 static const char overread_err[] = "Input buffer exhausted before END element found\n";
116
117 static ChannelElement *get_che(AACContext *ac, int type, int elem_id)
118 {
119     // For PCE based channel configurations map the channels solely based on tags.
120     if (!ac->m4ac.chan_config) {
121         return ac->tag_che_map[type][elem_id];
122     }
123     // For indexed channel configurations map the channels solely based on position.
124     switch (ac->m4ac.chan_config) {
125     case 7:
126         if (ac->tags_mapped == 3 && type == TYPE_CPE) {
127             ac->tags_mapped++;
128             return ac->tag_che_map[TYPE_CPE][elem_id] = ac->che[TYPE_CPE][2];
129         }
130     case 6:
131         /* Some streams incorrectly code 5.1 audio as SCE[0] CPE[0] CPE[1] SCE[1]
132            instead of SCE[0] CPE[0] CPE[1] LFE[0]. If we seem to have
133            encountered such a stream, transfer the LFE[0] element to the SCE[1]'s mapping */
134         if (ac->tags_mapped == tags_per_config[ac->m4ac.chan_config] - 1 && (type == TYPE_LFE || type == TYPE_SCE)) {
135             ac->tags_mapped++;
136             return ac->tag_che_map[type][elem_id] = ac->che[TYPE_LFE][0];
137         }
138     case 5:
139         if (ac->tags_mapped == 2 && type == TYPE_CPE) {
140             ac->tags_mapped++;
141             return ac->tag_che_map[TYPE_CPE][elem_id] = ac->che[TYPE_CPE][1];
142         }
143     case 4:
144         if (ac->tags_mapped == 2 && ac->m4ac.chan_config == 4 && type == TYPE_SCE) {
145             ac->tags_mapped++;
146             return ac->tag_che_map[TYPE_SCE][elem_id] = ac->che[TYPE_SCE][1];
147         }
148     case 3:
149     case 2:
150         if (ac->tags_mapped == (ac->m4ac.chan_config != 2) && type == TYPE_CPE) {
151             ac->tags_mapped++;
152             return ac->tag_che_map[TYPE_CPE][elem_id] = ac->che[TYPE_CPE][0];
153         } else if (ac->m4ac.chan_config == 2) {
154             return NULL;
155         }
156     case 1:
157         if (!ac->tags_mapped && type == TYPE_SCE) {
158             ac->tags_mapped++;
159             return ac->tag_che_map[TYPE_SCE][elem_id] = ac->che[TYPE_SCE][0];
160         }
161     default:
162         return NULL;
163     }
164 }
165
166 static int count_channels(uint8_t (*layout)[3], int tags)
167 {
168     int i, sum = 0;
169     for (i = 0; i < tags; i++) {
170         int syn_ele = layout[i][0];
171         int pos     = layout[i][2];
172         sum += (1 + (syn_ele == TYPE_CPE)) *
173                (pos != AAC_CHANNEL_OFF && pos != AAC_CHANNEL_CC);
174     }
175     return sum;
176 }
177
178 /**
179  * Check for the channel element in the current channel position configuration.
180  * If it exists, make sure the appropriate element is allocated and map the
181  * channel order to match the internal Libav channel layout.
182  *
183  * @param   che_pos current channel position configuration
184  * @param   type channel element type
185  * @param   id channel element id
186  * @param   channels count of the number of channels in the configuration
187  *
188  * @return  Returns error status. 0 - OK, !0 - error
189  */
190 static av_cold int che_configure(AACContext *ac,
191                                  enum ChannelPosition che_pos,
192                                  int type, int id, int *channels)
193 {
194     if (che_pos) {
195         if (!ac->che[type][id]) {
196             if (!(ac->che[type][id] = av_mallocz(sizeof(ChannelElement))))
197                 return AVERROR(ENOMEM);
198             ff_aac_sbr_ctx_init(ac, &ac->che[type][id]->sbr);
199         }
200         if (type != TYPE_CCE) {
201             ac->output_data[(*channels)++] = ac->che[type][id]->ch[0].ret;
202             if (type == TYPE_CPE ||
203                 (type == TYPE_SCE && ac->m4ac.ps == 1)) {
204                 ac->output_data[(*channels)++] = ac->che[type][id]->ch[1].ret;
205             }
206         }
207     } else {
208         if (ac->che[type][id])
209             ff_aac_sbr_ctx_close(&ac->che[type][id]->sbr);
210         av_freep(&ac->che[type][id]);
211     }
212     return 0;
213 }
214
215 struct elem_to_channel {
216     uint64_t av_position;
217     uint8_t syn_ele;
218     uint8_t elem_id;
219     uint8_t aac_position;
220 };
221
222 static int assign_pair(struct elem_to_channel e2c_vec[MAX_ELEM_ID],
223     uint8_t (*layout_map)[3], int offset, int tags, uint64_t left,
224     uint64_t right, int pos)
225 {
226     if (layout_map[offset][0] == TYPE_CPE) {
227         e2c_vec[offset] = (struct elem_to_channel) {
228             .av_position = left | right, .syn_ele = TYPE_CPE,
229             .elem_id = layout_map[offset    ][1], .aac_position = pos };
230         return 1;
231     } else {
232         e2c_vec[offset]   = (struct elem_to_channel) {
233             .av_position = left, .syn_ele = TYPE_SCE,
234             .elem_id = layout_map[offset    ][1], .aac_position = pos };
235         e2c_vec[offset + 1] = (struct elem_to_channel) {
236             .av_position = right, .syn_ele = TYPE_SCE,
237             .elem_id = layout_map[offset + 1][1], .aac_position = pos };
238         return 2;
239     }
240 }
241
242 static int count_paired_channels(uint8_t (*layout_map)[3], int tags, int pos, int *current) {
243     int num_pos_channels = 0;
244     int first_cpe = 0;
245     int sce_parity = 0;
246     int i;
247     for (i = *current; i < tags; i++) {
248         if (layout_map[i][2] != pos)
249             break;
250         if (layout_map[i][0] == TYPE_CPE) {
251             if (sce_parity) {
252                 if (pos == AAC_CHANNEL_FRONT || !first_cpe) {
253                     sce_parity = 0;
254                 } else {
255                     return -1;
256                 }
257             }
258             num_pos_channels += 2;
259             first_cpe = 1;
260         } else {
261             num_pos_channels++;
262             sce_parity ^= 1;
263         }
264     }
265     if (sce_parity &&
266         ((pos == AAC_CHANNEL_FRONT && first_cpe) || pos == AAC_CHANNEL_SIDE))
267             return -1;
268     *current = i;
269     return num_pos_channels;
270 }
271
272 static uint64_t sniff_channel_order(uint8_t (*layout_map)[3], int tags)
273 {
274     int i, n, total_non_cc_elements;
275     struct elem_to_channel e2c_vec[MAX_ELEM_ID] = {{ 0 }};
276     int num_front_channels, num_side_channels, num_back_channels;
277     uint64_t layout;
278
279     i = 0;
280     num_front_channels =
281         count_paired_channels(layout_map, tags, AAC_CHANNEL_FRONT, &i);
282     if (num_front_channels < 0)
283         return 0;
284     num_side_channels =
285         count_paired_channels(layout_map, tags, AAC_CHANNEL_SIDE, &i);
286     if (num_side_channels < 0)
287         return 0;
288     num_back_channels =
289         count_paired_channels(layout_map, tags, AAC_CHANNEL_BACK, &i);
290     if (num_back_channels < 0)
291         return 0;
292
293     i = 0;
294     if (num_front_channels & 1) {
295         e2c_vec[i] = (struct elem_to_channel) {
296             .av_position = AV_CH_FRONT_CENTER, .syn_ele = TYPE_SCE,
297             .elem_id = layout_map[i][1], .aac_position = AAC_CHANNEL_FRONT };
298         i++;
299         num_front_channels--;
300     }
301     if (num_front_channels >= 4) {
302         i += assign_pair(e2c_vec, layout_map, i, tags,
303                          AV_CH_FRONT_LEFT_OF_CENTER,
304                          AV_CH_FRONT_RIGHT_OF_CENTER,
305                          AAC_CHANNEL_FRONT);
306         num_front_channels -= 2;
307     }
308     if (num_front_channels >= 2) {
309         i += assign_pair(e2c_vec, layout_map, i, tags,
310                          AV_CH_FRONT_LEFT,
311                          AV_CH_FRONT_RIGHT,
312                          AAC_CHANNEL_FRONT);
313         num_front_channels -= 2;
314     }
315     while (num_front_channels >= 2) {
316         i += assign_pair(e2c_vec, layout_map, i, tags,
317                          UINT64_MAX,
318                          UINT64_MAX,
319                          AAC_CHANNEL_FRONT);
320         num_front_channels -= 2;
321     }
322
323     if (num_side_channels >= 2) {
324         i += assign_pair(e2c_vec, layout_map, i, tags,
325                          AV_CH_SIDE_LEFT,
326                          AV_CH_SIDE_RIGHT,
327                          AAC_CHANNEL_FRONT);
328         num_side_channels -= 2;
329     }
330     while (num_side_channels >= 2) {
331         i += assign_pair(e2c_vec, layout_map, i, tags,
332                          UINT64_MAX,
333                          UINT64_MAX,
334                          AAC_CHANNEL_SIDE);
335         num_side_channels -= 2;
336     }
337
338     while (num_back_channels >= 4) {
339         i += assign_pair(e2c_vec, layout_map, i, tags,
340                          UINT64_MAX,
341                          UINT64_MAX,
342                          AAC_CHANNEL_BACK);
343         num_back_channels -= 2;
344     }
345     if (num_back_channels >= 2) {
346         i += assign_pair(e2c_vec, layout_map, i, tags,
347                          AV_CH_BACK_LEFT,
348                          AV_CH_BACK_RIGHT,
349                          AAC_CHANNEL_BACK);
350         num_back_channels -= 2;
351     }
352     if (num_back_channels) {
353         e2c_vec[i] = (struct elem_to_channel) {
354           .av_position = AV_CH_BACK_CENTER, .syn_ele = TYPE_SCE,
355           .elem_id = layout_map[i][1], .aac_position = AAC_CHANNEL_BACK };
356         i++;
357         num_back_channels--;
358     }
359
360     if (i < tags && layout_map[i][2] == AAC_CHANNEL_LFE) {
361         e2c_vec[i] = (struct elem_to_channel) {
362           .av_position = AV_CH_LOW_FREQUENCY, .syn_ele = TYPE_LFE,
363           .elem_id = layout_map[i][1], .aac_position = AAC_CHANNEL_LFE };
364         i++;
365     }
366     while (i < tags && layout_map[i][2] == AAC_CHANNEL_LFE) {
367         e2c_vec[i] = (struct elem_to_channel) {
368           .av_position = UINT64_MAX, .syn_ele = TYPE_LFE,
369           .elem_id = layout_map[i][1], .aac_position = AAC_CHANNEL_LFE };
370         i++;
371     }
372
373     // Must choose a stable sort
374     total_non_cc_elements = n = i;
375     do {
376         int next_n = 0;
377         for (i = 1; i < n; i++) {
378             if (e2c_vec[i-1].av_position > e2c_vec[i].av_position) {
379                 FFSWAP(struct elem_to_channel, e2c_vec[i-1], e2c_vec[i]);
380                 next_n = i;
381             }
382         }
383         n = next_n;
384     } while (n > 0);
385
386     layout = 0;
387     for (i = 0; i < total_non_cc_elements; i++) {
388         layout_map[i][0] = e2c_vec[i].syn_ele;
389         layout_map[i][1] = e2c_vec[i].elem_id;
390         layout_map[i][2] = e2c_vec[i].aac_position;
391         if (e2c_vec[i].av_position != UINT64_MAX) {
392             layout |= e2c_vec[i].av_position;
393         }
394     }
395
396     return layout;
397 }
398
399 /**
400  * Configure output channel order based on the current program configuration element.
401  *
402  * @param   che_pos current channel position configuration
403  *
404  * @return  Returns error status. 0 - OK, !0 - error
405  */
406 static av_cold int output_configure(AACContext *ac,
407                                     uint8_t layout_map[MAX_ELEM_ID*4][3], int tags,
408                                     int channel_config, enum OCStatus oc_type)
409 {
410     AVCodecContext *avctx = ac->avctx;
411     int i, channels = 0, ret;
412     uint64_t layout = 0;
413
414     if (ac->layout_map != layout_map) {
415         memcpy(ac->layout_map, layout_map, tags * sizeof(layout_map[0]));
416         ac->layout_map_tags = tags;
417     }
418
419     // Try to sniff a reasonable channel order, otherwise output the
420     // channels in the order the PCE declared them.
421     if (avctx->request_channel_layout != AV_CH_LAYOUT_NATIVE)
422         layout = sniff_channel_order(layout_map, tags);
423     for (i = 0; i < tags; i++) {
424         int type =     layout_map[i][0];
425         int id =       layout_map[i][1];
426         int position = layout_map[i][2];
427         // Allocate or free elements depending on if they are in the
428         // current program configuration.
429         ret = che_configure(ac, position, type, id, &channels);
430         if (ret < 0)
431             return ret;
432     }
433
434     memcpy(ac->tag_che_map, ac->che, 4 * MAX_ELEM_ID * sizeof(ac->che[0][0]));
435     avctx->channel_layout = layout;
436     avctx->channels = channels;
437     ac->output_configured = oc_type;
438
439     return 0;
440 }
441
442 /**
443  * Decode an array of 4 bit element IDs, optionally interleaved with a stereo/mono switching bit.
444  *
445  * @param cpe_map Stereo (Channel Pair Element) map, NULL if stereo bit is not present.
446  * @param sce_map mono (Single Channel Element) map
447  * @param type speaker type/position for these channels
448  */
449 static void decode_channel_map(uint8_t layout_map[][3],
450                                enum ChannelPosition type,
451                                GetBitContext *gb, int n)
452 {
453     while (n--) {
454         enum RawDataBlockType syn_ele;
455         switch (type) {
456         case AAC_CHANNEL_FRONT:
457         case AAC_CHANNEL_BACK:
458         case AAC_CHANNEL_SIDE:
459             syn_ele = get_bits1(gb);
460             break;
461         case AAC_CHANNEL_CC:
462             skip_bits1(gb);
463             syn_ele = TYPE_CCE;
464             break;
465         case AAC_CHANNEL_LFE:
466             syn_ele = TYPE_LFE;
467             break;
468         }
469         layout_map[0][0] = syn_ele;
470         layout_map[0][1] = get_bits(gb, 4);
471         layout_map[0][2] = type;
472         layout_map++;
473     }
474 }
475
476 /**
477  * Decode program configuration element; reference: table 4.2.
478  *
479  * @return  Returns error status. 0 - OK, !0 - error
480  */
481 static int decode_pce(AVCodecContext *avctx, MPEG4AudioConfig *m4ac,
482                       uint8_t (*layout_map)[3],
483                       GetBitContext *gb)
484 {
485     int num_front, num_side, num_back, num_lfe, num_assoc_data, num_cc, sampling_index;
486     int comment_len;
487     int tags;
488
489     skip_bits(gb, 2);  // object_type
490
491     sampling_index = get_bits(gb, 4);
492     if (m4ac->sampling_index != sampling_index)
493         av_log(avctx, AV_LOG_WARNING, "Sample rate index in program config element does not match the sample rate index configured by the container.\n");
494
495     num_front       = get_bits(gb, 4);
496     num_side        = get_bits(gb, 4);
497     num_back        = get_bits(gb, 4);
498     num_lfe         = get_bits(gb, 2);
499     num_assoc_data  = get_bits(gb, 3);
500     num_cc          = get_bits(gb, 4);
501
502     if (get_bits1(gb))
503         skip_bits(gb, 4); // mono_mixdown_tag
504     if (get_bits1(gb))
505         skip_bits(gb, 4); // stereo_mixdown_tag
506
507     if (get_bits1(gb))
508         skip_bits(gb, 3); // mixdown_coeff_index and pseudo_surround
509
510     decode_channel_map(layout_map       , AAC_CHANNEL_FRONT, gb, num_front);
511     tags = num_front;
512     decode_channel_map(layout_map + tags, AAC_CHANNEL_SIDE,  gb, num_side);
513     tags += num_side;
514     decode_channel_map(layout_map + tags, AAC_CHANNEL_BACK,  gb, num_back);
515     tags += num_back;
516     decode_channel_map(layout_map + tags, AAC_CHANNEL_LFE,   gb, num_lfe);
517     tags += num_lfe;
518
519     skip_bits_long(gb, 4 * num_assoc_data);
520
521     decode_channel_map(layout_map + tags, AAC_CHANNEL_CC,    gb, num_cc);
522     tags += num_cc;
523
524     align_get_bits(gb);
525
526     /* comment field, first byte is length */
527     comment_len = get_bits(gb, 8) * 8;
528     if (get_bits_left(gb) < comment_len) {
529         av_log(avctx, AV_LOG_ERROR, overread_err);
530         return -1;
531     }
532     skip_bits_long(gb, comment_len);
533     return tags;
534 }
535
536 /**
537  * Set up channel positions based on a default channel configuration
538  * as specified in table 1.17.
539  *
540  * @return  Returns error status. 0 - OK, !0 - error
541  */
542 static av_cold int set_default_channel_config(AVCodecContext *avctx,
543                                               uint8_t (*layout_map)[3],
544                                               int *tags,
545                                               int channel_config)
546 {
547     if (channel_config < 1 || channel_config > 7) {
548         av_log(avctx, AV_LOG_ERROR, "invalid default channel configuration (%d)\n",
549                channel_config);
550         return -1;
551     }
552     *tags = tags_per_config[channel_config];
553     memcpy(layout_map, aac_channel_layout_map[channel_config-1], *tags * sizeof(*layout_map));
554     return 0;
555 }
556
557 /**
558  * Decode GA "General Audio" specific configuration; reference: table 4.1.
559  *
560  * @param   ac          pointer to AACContext, may be null
561  * @param   avctx       pointer to AVCCodecContext, used for logging
562  *
563  * @return  Returns error status. 0 - OK, !0 - error
564  */
565 static int decode_ga_specific_config(AACContext *ac, AVCodecContext *avctx,
566                                      GetBitContext *gb,
567                                      MPEG4AudioConfig *m4ac,
568                                      int channel_config)
569 {
570     int extension_flag, ret;
571     uint8_t layout_map[MAX_ELEM_ID*4][3];
572     int tags = 0;
573
574     if (get_bits1(gb)) { // frameLengthFlag
575         av_log_missing_feature(avctx, "960/120 MDCT window is", 1);
576         return -1;
577     }
578
579     if (get_bits1(gb))       // dependsOnCoreCoder
580         skip_bits(gb, 14);   // coreCoderDelay
581     extension_flag = get_bits1(gb);
582
583     if (m4ac->object_type == AOT_AAC_SCALABLE ||
584         m4ac->object_type == AOT_ER_AAC_SCALABLE)
585         skip_bits(gb, 3);     // layerNr
586
587     if (channel_config == 0) {
588         skip_bits(gb, 4);  // element_instance_tag
589         tags = decode_pce(avctx, m4ac, layout_map, gb);
590         if (tags < 0)
591             return tags;
592     } else {
593         if ((ret = set_default_channel_config(avctx, layout_map, &tags, channel_config)))
594             return ret;
595     }
596
597     if (count_channels(layout_map, tags) > 1) {
598         m4ac->ps = 0;
599     } else if (m4ac->sbr == 1 && m4ac->ps == -1)
600         m4ac->ps = 1;
601
602     if (ac && (ret = output_configure(ac, layout_map, tags,
603                                       channel_config, OC_GLOBAL_HDR)))
604         return ret;
605
606     if (extension_flag) {
607         switch (m4ac->object_type) {
608         case AOT_ER_BSAC:
609             skip_bits(gb, 5);    // numOfSubFrame
610             skip_bits(gb, 11);   // layer_length
611             break;
612         case AOT_ER_AAC_LC:
613         case AOT_ER_AAC_LTP:
614         case AOT_ER_AAC_SCALABLE:
615         case AOT_ER_AAC_LD:
616             skip_bits(gb, 3);  /* aacSectionDataResilienceFlag
617                                     * aacScalefactorDataResilienceFlag
618                                     * aacSpectralDataResilienceFlag
619                                     */
620             break;
621         }
622         skip_bits1(gb);    // extensionFlag3 (TBD in version 3)
623     }
624     return 0;
625 }
626
627 /**
628  * Decode audio specific configuration; reference: table 1.13.
629  *
630  * @param   ac          pointer to AACContext, may be null
631  * @param   avctx       pointer to AVCCodecContext, used for logging
632  * @param   m4ac        pointer to MPEG4AudioConfig, used for parsing
633  * @param   data        pointer to buffer holding an audio specific config
634  * @param   bit_size    size of audio specific config or data in bits
635  * @param   sync_extension look for an appended sync extension
636  *
637  * @return  Returns error status or number of consumed bits. <0 - error
638  */
639 static int decode_audio_specific_config(AACContext *ac,
640                                         AVCodecContext *avctx,
641                                         MPEG4AudioConfig *m4ac,
642                                         const uint8_t *data, int bit_size,
643                                         int sync_extension)
644 {
645     GetBitContext gb;
646     int i;
647
648     av_dlog(avctx, "extradata size %d\n", avctx->extradata_size);
649     for (i = 0; i < avctx->extradata_size; i++)
650          av_dlog(avctx, "%02x ", avctx->extradata[i]);
651     av_dlog(avctx, "\n");
652
653     init_get_bits(&gb, data, bit_size);
654
655     if ((i = avpriv_mpeg4audio_get_config(m4ac, data, bit_size, sync_extension)) < 0)
656         return -1;
657     if (m4ac->sampling_index > 12) {
658         av_log(avctx, AV_LOG_ERROR, "invalid sampling rate index %d\n", m4ac->sampling_index);
659         return -1;
660     }
661
662     skip_bits_long(&gb, i);
663
664     switch (m4ac->object_type) {
665     case AOT_AAC_MAIN:
666     case AOT_AAC_LC:
667     case AOT_AAC_LTP:
668         if (decode_ga_specific_config(ac, avctx, &gb, m4ac, m4ac->chan_config))
669             return -1;
670         break;
671     default:
672         av_log(avctx, AV_LOG_ERROR, "Audio object type %s%d is not supported.\n",
673                m4ac->sbr == 1? "SBR+" : "", m4ac->object_type);
674         return -1;
675     }
676
677     av_dlog(avctx, "AOT %d chan config %d sampling index %d (%d) SBR %d PS %d\n",
678             m4ac->object_type, m4ac->chan_config, m4ac->sampling_index,
679             m4ac->sample_rate, m4ac->sbr, m4ac->ps);
680
681     return get_bits_count(&gb);
682 }
683
684 /**
685  * linear congruential pseudorandom number generator
686  *
687  * @param   previous_val    pointer to the current state of the generator
688  *
689  * @return  Returns a 32-bit pseudorandom integer
690  */
691 static av_always_inline int lcg_random(int previous_val)
692 {
693     return previous_val * 1664525 + 1013904223;
694 }
695
696 static av_always_inline void reset_predict_state(PredictorState *ps)
697 {
698     ps->r0   = 0.0f;
699     ps->r1   = 0.0f;
700     ps->cor0 = 0.0f;
701     ps->cor1 = 0.0f;
702     ps->var0 = 1.0f;
703     ps->var1 = 1.0f;
704 }
705
706 static void reset_all_predictors(PredictorState *ps)
707 {
708     int i;
709     for (i = 0; i < MAX_PREDICTORS; i++)
710         reset_predict_state(&ps[i]);
711 }
712
713 static int sample_rate_idx (int rate)
714 {
715          if (92017 <= rate) return 0;
716     else if (75132 <= rate) return 1;
717     else if (55426 <= rate) return 2;
718     else if (46009 <= rate) return 3;
719     else if (37566 <= rate) return 4;
720     else if (27713 <= rate) return 5;
721     else if (23004 <= rate) return 6;
722     else if (18783 <= rate) return 7;
723     else if (13856 <= rate) return 8;
724     else if (11502 <= rate) return 9;
725     else if (9391  <= rate) return 10;
726     else                    return 11;
727 }
728
729 static void reset_predictor_group(PredictorState *ps, int group_num)
730 {
731     int i;
732     for (i = group_num - 1; i < MAX_PREDICTORS; i += 30)
733         reset_predict_state(&ps[i]);
734 }
735
736 #define AAC_INIT_VLC_STATIC(num, size) \
737     INIT_VLC_STATIC(&vlc_spectral[num], 8, ff_aac_spectral_sizes[num], \
738          ff_aac_spectral_bits[num], sizeof( ff_aac_spectral_bits[num][0]), sizeof( ff_aac_spectral_bits[num][0]), \
739         ff_aac_spectral_codes[num], sizeof(ff_aac_spectral_codes[num][0]), sizeof(ff_aac_spectral_codes[num][0]), \
740         size);
741
742 static av_cold int aac_decode_init(AVCodecContext *avctx)
743 {
744     AACContext *ac = avctx->priv_data;
745     float output_scale_factor;
746
747     ac->avctx = avctx;
748     ac->m4ac.sample_rate = avctx->sample_rate;
749
750     if (avctx->extradata_size > 0) {
751         if (decode_audio_specific_config(ac, ac->avctx, &ac->m4ac,
752                                          avctx->extradata,
753                                          avctx->extradata_size*8, 1) < 0)
754             return -1;
755     } else {
756         int sr, i;
757         uint8_t layout_map[MAX_ELEM_ID*4][3];
758         int layout_map_tags;
759
760         sr = sample_rate_idx(avctx->sample_rate);
761         ac->m4ac.sampling_index = sr;
762         ac->m4ac.channels = avctx->channels;
763         ac->m4ac.sbr = -1;
764         ac->m4ac.ps = -1;
765
766         for (i = 0; i < FF_ARRAY_ELEMS(ff_mpeg4audio_channels); i++)
767             if (ff_mpeg4audio_channels[i] == avctx->channels)
768                 break;
769         if (i == FF_ARRAY_ELEMS(ff_mpeg4audio_channels)) {
770             i = 0;
771         }
772         ac->m4ac.chan_config = i;
773
774         if (ac->m4ac.chan_config) {
775             int ret = set_default_channel_config(avctx, layout_map,
776                 &layout_map_tags, ac->m4ac.chan_config);
777             if (!ret)
778                 output_configure(ac, layout_map, layout_map_tags,
779                                  ac->m4ac.chan_config, OC_GLOBAL_HDR);
780             else if (avctx->err_recognition & AV_EF_EXPLODE)
781                 return AVERROR_INVALIDDATA;
782         }
783     }
784
785     if (avctx->request_sample_fmt == AV_SAMPLE_FMT_FLT) {
786         avctx->sample_fmt = AV_SAMPLE_FMT_FLT;
787         output_scale_factor = 1.0 / 32768.0;
788     } else {
789         avctx->sample_fmt = AV_SAMPLE_FMT_S16;
790         output_scale_factor = 1.0;
791     }
792
793     AAC_INIT_VLC_STATIC( 0, 304);
794     AAC_INIT_VLC_STATIC( 1, 270);
795     AAC_INIT_VLC_STATIC( 2, 550);
796     AAC_INIT_VLC_STATIC( 3, 300);
797     AAC_INIT_VLC_STATIC( 4, 328);
798     AAC_INIT_VLC_STATIC( 5, 294);
799     AAC_INIT_VLC_STATIC( 6, 306);
800     AAC_INIT_VLC_STATIC( 7, 268);
801     AAC_INIT_VLC_STATIC( 8, 510);
802     AAC_INIT_VLC_STATIC( 9, 366);
803     AAC_INIT_VLC_STATIC(10, 462);
804
805     ff_aac_sbr_init();
806
807     ff_dsputil_init(&ac->dsp, avctx);
808     ff_fmt_convert_init(&ac->fmt_conv, avctx);
809
810     ac->random_state = 0x1f2e3d4c;
811
812     ff_aac_tableinit();
813
814     INIT_VLC_STATIC(&vlc_scalefactors,7,FF_ARRAY_ELEMS(ff_aac_scalefactor_code),
815                     ff_aac_scalefactor_bits, sizeof(ff_aac_scalefactor_bits[0]), sizeof(ff_aac_scalefactor_bits[0]),
816                     ff_aac_scalefactor_code, sizeof(ff_aac_scalefactor_code[0]), sizeof(ff_aac_scalefactor_code[0]),
817                     352);
818
819     ff_mdct_init(&ac->mdct,       11, 1, output_scale_factor/1024.0);
820     ff_mdct_init(&ac->mdct_small,  8, 1, output_scale_factor/128.0);
821     ff_mdct_init(&ac->mdct_ltp,   11, 0, -2.0/output_scale_factor);
822     // window initialization
823     ff_kbd_window_init(ff_aac_kbd_long_1024, 4.0, 1024);
824     ff_kbd_window_init(ff_aac_kbd_short_128, 6.0, 128);
825     ff_init_ff_sine_windows(10);
826     ff_init_ff_sine_windows( 7);
827
828     cbrt_tableinit();
829
830     avcodec_get_frame_defaults(&ac->frame);
831     avctx->coded_frame = &ac->frame;
832
833     return 0;
834 }
835
836 /**
837  * Skip data_stream_element; reference: table 4.10.
838  */
839 static int skip_data_stream_element(AACContext *ac, GetBitContext *gb)
840 {
841     int byte_align = get_bits1(gb);
842     int count = get_bits(gb, 8);
843     if (count == 255)
844         count += get_bits(gb, 8);
845     if (byte_align)
846         align_get_bits(gb);
847
848     if (get_bits_left(gb) < 8 * count) {
849         av_log(ac->avctx, AV_LOG_ERROR, overread_err);
850         return -1;
851     }
852     skip_bits_long(gb, 8 * count);
853     return 0;
854 }
855
856 static int decode_prediction(AACContext *ac, IndividualChannelStream *ics,
857                              GetBitContext *gb)
858 {
859     int sfb;
860     if (get_bits1(gb)) {
861         ics->predictor_reset_group = get_bits(gb, 5);
862         if (ics->predictor_reset_group == 0 || ics->predictor_reset_group > 30) {
863             av_log(ac->avctx, AV_LOG_ERROR, "Invalid Predictor Reset Group.\n");
864             return -1;
865         }
866     }
867     for (sfb = 0; sfb < FFMIN(ics->max_sfb, ff_aac_pred_sfb_max[ac->m4ac.sampling_index]); sfb++) {
868         ics->prediction_used[sfb] = get_bits1(gb);
869     }
870     return 0;
871 }
872
873 /**
874  * Decode Long Term Prediction data; reference: table 4.xx.
875  */
876 static void decode_ltp(AACContext *ac, LongTermPrediction *ltp,
877                        GetBitContext *gb, uint8_t max_sfb)
878 {
879     int sfb;
880
881     ltp->lag  = get_bits(gb, 11);
882     ltp->coef = ltp_coef[get_bits(gb, 3)];
883     for (sfb = 0; sfb < FFMIN(max_sfb, MAX_LTP_LONG_SFB); sfb++)
884         ltp->used[sfb] = get_bits1(gb);
885 }
886
887 /**
888  * Decode Individual Channel Stream info; reference: table 4.6.
889  */
890 static int decode_ics_info(AACContext *ac, IndividualChannelStream *ics,
891                            GetBitContext *gb)
892 {
893     if (get_bits1(gb)) {
894         av_log(ac->avctx, AV_LOG_ERROR, "Reserved bit set.\n");
895         return AVERROR_INVALIDDATA;
896     }
897     ics->window_sequence[1] = ics->window_sequence[0];
898     ics->window_sequence[0] = get_bits(gb, 2);
899     ics->use_kb_window[1]   = ics->use_kb_window[0];
900     ics->use_kb_window[0]   = get_bits1(gb);
901     ics->num_window_groups  = 1;
902     ics->group_len[0]       = 1;
903     if (ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE) {
904         int i;
905         ics->max_sfb = get_bits(gb, 4);
906         for (i = 0; i < 7; i++) {
907             if (get_bits1(gb)) {
908                 ics->group_len[ics->num_window_groups - 1]++;
909             } else {
910                 ics->num_window_groups++;
911                 ics->group_len[ics->num_window_groups - 1] = 1;
912             }
913         }
914         ics->num_windows       = 8;
915         ics->swb_offset        =    ff_swb_offset_128[ac->m4ac.sampling_index];
916         ics->num_swb           =   ff_aac_num_swb_128[ac->m4ac.sampling_index];
917         ics->tns_max_bands     = ff_tns_max_bands_128[ac->m4ac.sampling_index];
918         ics->predictor_present = 0;
919     } else {
920         ics->max_sfb               = get_bits(gb, 6);
921         ics->num_windows           = 1;
922         ics->swb_offset            =    ff_swb_offset_1024[ac->m4ac.sampling_index];
923         ics->num_swb               =   ff_aac_num_swb_1024[ac->m4ac.sampling_index];
924         ics->tns_max_bands         = ff_tns_max_bands_1024[ac->m4ac.sampling_index];
925         ics->predictor_present     = get_bits1(gb);
926         ics->predictor_reset_group = 0;
927         if (ics->predictor_present) {
928             if (ac->m4ac.object_type == AOT_AAC_MAIN) {
929                 if (decode_prediction(ac, ics, gb)) {
930                     return AVERROR_INVALIDDATA;
931                 }
932             } else if (ac->m4ac.object_type == AOT_AAC_LC) {
933                 av_log(ac->avctx, AV_LOG_ERROR, "Prediction is not allowed in AAC-LC.\n");
934                 return AVERROR_INVALIDDATA;
935             } else {
936                 if ((ics->ltp.present = get_bits(gb, 1)))
937                     decode_ltp(ac, &ics->ltp, gb, ics->max_sfb);
938             }
939         }
940     }
941
942     if (ics->max_sfb > ics->num_swb) {
943         av_log(ac->avctx, AV_LOG_ERROR,
944                "Number of scalefactor bands in group (%d) exceeds limit (%d).\n",
945                ics->max_sfb, ics->num_swb);
946         return AVERROR_INVALIDDATA;
947     }
948
949     return 0;
950 }
951
952 /**
953  * Decode band types (section_data payload); reference: table 4.46.
954  *
955  * @param   band_type           array of the used band type
956  * @param   band_type_run_end   array of the last scalefactor band of a band type run
957  *
958  * @return  Returns error status. 0 - OK, !0 - error
959  */
960 static int decode_band_types(AACContext *ac, enum BandType band_type[120],
961                              int band_type_run_end[120], GetBitContext *gb,
962                              IndividualChannelStream *ics)
963 {
964     int g, idx = 0;
965     const int bits = (ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE) ? 3 : 5;
966     for (g = 0; g < ics->num_window_groups; g++) {
967         int k = 0;
968         while (k < ics->max_sfb) {
969             uint8_t sect_end = k;
970             int sect_len_incr;
971             int sect_band_type = get_bits(gb, 4);
972             if (sect_band_type == 12) {
973                 av_log(ac->avctx, AV_LOG_ERROR, "invalid band type\n");
974                 return -1;
975             }
976             do {
977                 sect_len_incr = get_bits(gb, bits);
978                 sect_end += sect_len_incr;
979                 if (get_bits_left(gb) < 0) {
980                     av_log(ac->avctx, AV_LOG_ERROR, overread_err);
981                     return -1;
982                 }
983                 if (sect_end > ics->max_sfb) {
984                     av_log(ac->avctx, AV_LOG_ERROR,
985                            "Number of bands (%d) exceeds limit (%d).\n",
986                            sect_end, ics->max_sfb);
987                     return -1;
988                 }
989             } while (sect_len_incr == (1 << bits) - 1);
990             for (; k < sect_end; k++) {
991                 band_type        [idx]   = sect_band_type;
992                 band_type_run_end[idx++] = sect_end;
993             }
994         }
995     }
996     return 0;
997 }
998
999 /**
1000  * Decode scalefactors; reference: table 4.47.
1001  *
1002  * @param   global_gain         first scalefactor value as scalefactors are differentially coded
1003  * @param   band_type           array of the used band type
1004  * @param   band_type_run_end   array of the last scalefactor band of a band type run
1005  * @param   sf                  array of scalefactors or intensity stereo positions
1006  *
1007  * @return  Returns error status. 0 - OK, !0 - error
1008  */
1009 static int decode_scalefactors(AACContext *ac, float sf[120], GetBitContext *gb,
1010                                unsigned int global_gain,
1011                                IndividualChannelStream *ics,
1012                                enum BandType band_type[120],
1013                                int band_type_run_end[120])
1014 {
1015     int g, i, idx = 0;
1016     int offset[3] = { global_gain, global_gain - 90, 0 };
1017     int clipped_offset;
1018     int noise_flag = 1;
1019     static const char *const sf_str[3] = { "Global gain", "Noise gain", "Intensity stereo position" };
1020     for (g = 0; g < ics->num_window_groups; g++) {
1021         for (i = 0; i < ics->max_sfb;) {
1022             int run_end = band_type_run_end[idx];
1023             if (band_type[idx] == ZERO_BT) {
1024                 for (; i < run_end; i++, idx++)
1025                     sf[idx] = 0.;
1026             } else if ((band_type[idx] == INTENSITY_BT) || (band_type[idx] == INTENSITY_BT2)) {
1027                 for (; i < run_end; i++, idx++) {
1028                     offset[2] += get_vlc2(gb, vlc_scalefactors.table, 7, 3) - 60;
1029                     clipped_offset = av_clip(offset[2], -155, 100);
1030                     if (offset[2] != clipped_offset) {
1031                         av_log_ask_for_sample(ac->avctx, "Intensity stereo "
1032                                 "position clipped (%d -> %d).\nIf you heard an "
1033                                 "audible artifact, there may be a bug in the "
1034                                 "decoder. ", offset[2], clipped_offset);
1035                     }
1036                     sf[idx] = ff_aac_pow2sf_tab[-clipped_offset + POW_SF2_ZERO];
1037                 }
1038             } else if (band_type[idx] == NOISE_BT) {
1039                 for (; i < run_end; i++, idx++) {
1040                     if (noise_flag-- > 0)
1041                         offset[1] += get_bits(gb, 9) - 256;
1042                     else
1043                         offset[1] += get_vlc2(gb, vlc_scalefactors.table, 7, 3) - 60;
1044                     clipped_offset = av_clip(offset[1], -100, 155);
1045                     if (offset[1] != clipped_offset) {
1046                         av_log_ask_for_sample(ac->avctx, "Noise gain clipped "
1047                                 "(%d -> %d).\nIf you heard an audible "
1048                                 "artifact, there may be a bug in the decoder. ",
1049                                 offset[1], clipped_offset);
1050                     }
1051                     sf[idx] = -ff_aac_pow2sf_tab[clipped_offset + POW_SF2_ZERO];
1052                 }
1053             } else {
1054                 for (; i < run_end; i++, idx++) {
1055                     offset[0] += get_vlc2(gb, vlc_scalefactors.table, 7, 3) - 60;
1056                     if (offset[0] > 255U) {
1057                         av_log(ac->avctx, AV_LOG_ERROR,
1058                                "%s (%d) out of range.\n", sf_str[0], offset[0]);
1059                         return -1;
1060                     }
1061                     sf[idx] = -ff_aac_pow2sf_tab[offset[0] - 100 + POW_SF2_ZERO];
1062                 }
1063             }
1064         }
1065     }
1066     return 0;
1067 }
1068
1069 /**
1070  * Decode pulse data; reference: table 4.7.
1071  */
1072 static int decode_pulses(Pulse *pulse, GetBitContext *gb,
1073                          const uint16_t *swb_offset, int num_swb)
1074 {
1075     int i, pulse_swb;
1076     pulse->num_pulse = get_bits(gb, 2) + 1;
1077     pulse_swb        = get_bits(gb, 6);
1078     if (pulse_swb >= num_swb)
1079         return -1;
1080     pulse->pos[0]    = swb_offset[pulse_swb];
1081     pulse->pos[0]   += get_bits(gb, 5);
1082     if (pulse->pos[0] > 1023)
1083         return -1;
1084     pulse->amp[0]    = get_bits(gb, 4);
1085     for (i = 1; i < pulse->num_pulse; i++) {
1086         pulse->pos[i] = get_bits(gb, 5) + pulse->pos[i - 1];
1087         if (pulse->pos[i] > 1023)
1088             return -1;
1089         pulse->amp[i] = get_bits(gb, 4);
1090     }
1091     return 0;
1092 }
1093
1094 /**
1095  * Decode Temporal Noise Shaping data; reference: table 4.48.
1096  *
1097  * @return  Returns error status. 0 - OK, !0 - error
1098  */
1099 static int decode_tns(AACContext *ac, TemporalNoiseShaping *tns,
1100                       GetBitContext *gb, const IndividualChannelStream *ics)
1101 {
1102     int w, filt, i, coef_len, coef_res, coef_compress;
1103     const int is8 = ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE;
1104     const int tns_max_order = is8 ? 7 : ac->m4ac.object_type == AOT_AAC_MAIN ? 20 : 12;
1105     for (w = 0; w < ics->num_windows; w++) {
1106         if ((tns->n_filt[w] = get_bits(gb, 2 - is8))) {
1107             coef_res = get_bits1(gb);
1108
1109             for (filt = 0; filt < tns->n_filt[w]; filt++) {
1110                 int tmp2_idx;
1111                 tns->length[w][filt] = get_bits(gb, 6 - 2 * is8);
1112
1113                 if ((tns->order[w][filt] = get_bits(gb, 5 - 2 * is8)) > tns_max_order) {
1114                     av_log(ac->avctx, AV_LOG_ERROR, "TNS filter order %d is greater than maximum %d.\n",
1115                            tns->order[w][filt], tns_max_order);
1116                     tns->order[w][filt] = 0;
1117                     return -1;
1118                 }
1119                 if (tns->order[w][filt]) {
1120                     tns->direction[w][filt] = get_bits1(gb);
1121                     coef_compress = get_bits1(gb);
1122                     coef_len = coef_res + 3 - coef_compress;
1123                     tmp2_idx = 2 * coef_compress + coef_res;
1124
1125                     for (i = 0; i < tns->order[w][filt]; i++)
1126                         tns->coef[w][filt][i] = tns_tmp2_map[tmp2_idx][get_bits(gb, coef_len)];
1127                 }
1128             }
1129         }
1130     }
1131     return 0;
1132 }
1133
1134 /**
1135  * Decode Mid/Side data; reference: table 4.54.
1136  *
1137  * @param   ms_present  Indicates mid/side stereo presence. [0] mask is all 0s;
1138  *                      [1] mask is decoded from bitstream; [2] mask is all 1s;
1139  *                      [3] reserved for scalable AAC
1140  */
1141 static void decode_mid_side_stereo(ChannelElement *cpe, GetBitContext *gb,
1142                                    int ms_present)
1143 {
1144     int idx;
1145     if (ms_present == 1) {
1146         for (idx = 0; idx < cpe->ch[0].ics.num_window_groups * cpe->ch[0].ics.max_sfb; idx++)
1147             cpe->ms_mask[idx] = get_bits1(gb);
1148     } else if (ms_present == 2) {
1149         memset(cpe->ms_mask, 1, cpe->ch[0].ics.num_window_groups * cpe->ch[0].ics.max_sfb * sizeof(cpe->ms_mask[0]));
1150     }
1151 }
1152
1153 #ifndef VMUL2
1154 static inline float *VMUL2(float *dst, const float *v, unsigned idx,
1155                            const float *scale)
1156 {
1157     float s = *scale;
1158     *dst++ = v[idx    & 15] * s;
1159     *dst++ = v[idx>>4 & 15] * s;
1160     return dst;
1161 }
1162 #endif
1163
1164 #ifndef VMUL4
1165 static inline float *VMUL4(float *dst, const float *v, unsigned idx,
1166                            const float *scale)
1167 {
1168     float s = *scale;
1169     *dst++ = v[idx    & 3] * s;
1170     *dst++ = v[idx>>2 & 3] * s;
1171     *dst++ = v[idx>>4 & 3] * s;
1172     *dst++ = v[idx>>6 & 3] * s;
1173     return dst;
1174 }
1175 #endif
1176
1177 #ifndef VMUL2S
1178 static inline float *VMUL2S(float *dst, const float *v, unsigned idx,
1179                             unsigned sign, const float *scale)
1180 {
1181     union av_intfloat32 s0, s1;
1182
1183     s0.f = s1.f = *scale;
1184     s0.i ^= sign >> 1 << 31;
1185     s1.i ^= sign      << 31;
1186
1187     *dst++ = v[idx    & 15] * s0.f;
1188     *dst++ = v[idx>>4 & 15] * s1.f;
1189
1190     return dst;
1191 }
1192 #endif
1193
1194 #ifndef VMUL4S
1195 static inline float *VMUL4S(float *dst, const float *v, unsigned idx,
1196                             unsigned sign, const float *scale)
1197 {
1198     unsigned nz = idx >> 12;
1199     union av_intfloat32 s = { .f = *scale };
1200     union av_intfloat32 t;
1201
1202     t.i = s.i ^ (sign & 1U<<31);
1203     *dst++ = v[idx    & 3] * t.f;
1204
1205     sign <<= nz & 1; nz >>= 1;
1206     t.i = s.i ^ (sign & 1U<<31);
1207     *dst++ = v[idx>>2 & 3] * t.f;
1208
1209     sign <<= nz & 1; nz >>= 1;
1210     t.i = s.i ^ (sign & 1U<<31);
1211     *dst++ = v[idx>>4 & 3] * t.f;
1212
1213     sign <<= nz & 1; nz >>= 1;
1214     t.i = s.i ^ (sign & 1U<<31);
1215     *dst++ = v[idx>>6 & 3] * t.f;
1216
1217     return dst;
1218 }
1219 #endif
1220
1221 /**
1222  * Decode spectral data; reference: table 4.50.
1223  * Dequantize and scale spectral data; reference: 4.6.3.3.
1224  *
1225  * @param   coef            array of dequantized, scaled spectral data
1226  * @param   sf              array of scalefactors or intensity stereo positions
1227  * @param   pulse_present   set if pulses are present
1228  * @param   pulse           pointer to pulse data struct
1229  * @param   band_type       array of the used band type
1230  *
1231  * @return  Returns error status. 0 - OK, !0 - error
1232  */
1233 static int decode_spectrum_and_dequant(AACContext *ac, float coef[1024],
1234                                        GetBitContext *gb, const float sf[120],
1235                                        int pulse_present, const Pulse *pulse,
1236                                        const IndividualChannelStream *ics,
1237                                        enum BandType band_type[120])
1238 {
1239     int i, k, g, idx = 0;
1240     const int c = 1024 / ics->num_windows;
1241     const uint16_t *offsets = ics->swb_offset;
1242     float *coef_base = coef;
1243
1244     for (g = 0; g < ics->num_windows; g++)
1245         memset(coef + g * 128 + offsets[ics->max_sfb], 0, sizeof(float) * (c - offsets[ics->max_sfb]));
1246
1247     for (g = 0; g < ics->num_window_groups; g++) {
1248         unsigned g_len = ics->group_len[g];
1249
1250         for (i = 0; i < ics->max_sfb; i++, idx++) {
1251             const unsigned cbt_m1 = band_type[idx] - 1;
1252             float *cfo = coef + offsets[i];
1253             int off_len = offsets[i + 1] - offsets[i];
1254             int group;
1255
1256             if (cbt_m1 >= INTENSITY_BT2 - 1) {
1257                 for (group = 0; group < g_len; group++, cfo+=128) {
1258                     memset(cfo, 0, off_len * sizeof(float));
1259                 }
1260             } else if (cbt_m1 == NOISE_BT - 1) {
1261                 for (group = 0; group < g_len; group++, cfo+=128) {
1262                     float scale;
1263                     float band_energy;
1264
1265                     for (k = 0; k < off_len; k++) {
1266                         ac->random_state  = lcg_random(ac->random_state);
1267                         cfo[k] = ac->random_state;
1268                     }
1269
1270                     band_energy = ac->dsp.scalarproduct_float(cfo, cfo, off_len);
1271                     scale = sf[idx] / sqrtf(band_energy);
1272                     ac->dsp.vector_fmul_scalar(cfo, cfo, scale, off_len);
1273                 }
1274             } else {
1275                 const float *vq = ff_aac_codebook_vector_vals[cbt_m1];
1276                 const uint16_t *cb_vector_idx = ff_aac_codebook_vector_idx[cbt_m1];
1277                 VLC_TYPE (*vlc_tab)[2] = vlc_spectral[cbt_m1].table;
1278                 OPEN_READER(re, gb);
1279
1280                 switch (cbt_m1 >> 1) {
1281                 case 0:
1282                     for (group = 0; group < g_len; group++, cfo+=128) {
1283                         float *cf = cfo;
1284                         int len = off_len;
1285
1286                         do {
1287                             int code;
1288                             unsigned cb_idx;
1289
1290                             UPDATE_CACHE(re, gb);
1291                             GET_VLC(code, re, gb, vlc_tab, 8, 2);
1292                             cb_idx = cb_vector_idx[code];
1293                             cf = VMUL4(cf, vq, cb_idx, sf + idx);
1294                         } while (len -= 4);
1295                     }
1296                     break;
1297
1298                 case 1:
1299                     for (group = 0; group < g_len; group++, cfo+=128) {
1300                         float *cf = cfo;
1301                         int len = off_len;
1302
1303                         do {
1304                             int code;
1305                             unsigned nnz;
1306                             unsigned cb_idx;
1307                             uint32_t bits;
1308
1309                             UPDATE_CACHE(re, gb);
1310                             GET_VLC(code, re, gb, vlc_tab, 8, 2);
1311                             cb_idx = cb_vector_idx[code];
1312                             nnz = cb_idx >> 8 & 15;
1313                             bits = nnz ? GET_CACHE(re, gb) : 0;
1314                             LAST_SKIP_BITS(re, gb, nnz);
1315                             cf = VMUL4S(cf, vq, cb_idx, bits, sf + idx);
1316                         } while (len -= 4);
1317                     }
1318                     break;
1319
1320                 case 2:
1321                     for (group = 0; group < g_len; group++, cfo+=128) {
1322                         float *cf = cfo;
1323                         int len = off_len;
1324
1325                         do {
1326                             int code;
1327                             unsigned cb_idx;
1328
1329                             UPDATE_CACHE(re, gb);
1330                             GET_VLC(code, re, gb, vlc_tab, 8, 2);
1331                             cb_idx = cb_vector_idx[code];
1332                             cf = VMUL2(cf, vq, cb_idx, sf + idx);
1333                         } while (len -= 2);
1334                     }
1335                     break;
1336
1337                 case 3:
1338                 case 4:
1339                     for (group = 0; group < g_len; group++, cfo+=128) {
1340                         float *cf = cfo;
1341                         int len = off_len;
1342
1343                         do {
1344                             int code;
1345                             unsigned nnz;
1346                             unsigned cb_idx;
1347                             unsigned sign;
1348
1349                             UPDATE_CACHE(re, gb);
1350                             GET_VLC(code, re, gb, vlc_tab, 8, 2);
1351                             cb_idx = cb_vector_idx[code];
1352                             nnz = cb_idx >> 8 & 15;
1353                             sign = nnz ? SHOW_UBITS(re, gb, nnz) << (cb_idx >> 12) : 0;
1354                             LAST_SKIP_BITS(re, gb, nnz);
1355                             cf = VMUL2S(cf, vq, cb_idx, sign, sf + idx);
1356                         } while (len -= 2);
1357                     }
1358                     break;
1359
1360                 default:
1361                     for (group = 0; group < g_len; group++, cfo+=128) {
1362                         float *cf = cfo;
1363                         uint32_t *icf = (uint32_t *) cf;
1364                         int len = off_len;
1365
1366                         do {
1367                             int code;
1368                             unsigned nzt, nnz;
1369                             unsigned cb_idx;
1370                             uint32_t bits;
1371                             int j;
1372
1373                             UPDATE_CACHE(re, gb);
1374                             GET_VLC(code, re, gb, vlc_tab, 8, 2);
1375
1376                             if (!code) {
1377                                 *icf++ = 0;
1378                                 *icf++ = 0;
1379                                 continue;
1380                             }
1381
1382                             cb_idx = cb_vector_idx[code];
1383                             nnz = cb_idx >> 12;
1384                             nzt = cb_idx >> 8;
1385                             bits = SHOW_UBITS(re, gb, nnz) << (32-nnz);
1386                             LAST_SKIP_BITS(re, gb, nnz);
1387
1388                             for (j = 0; j < 2; j++) {
1389                                 if (nzt & 1<<j) {
1390                                     uint32_t b;
1391                                     int n;
1392                                     /* The total length of escape_sequence must be < 22 bits according
1393                                        to the specification (i.e. max is 111111110xxxxxxxxxxxx). */
1394                                     UPDATE_CACHE(re, gb);
1395                                     b = GET_CACHE(re, gb);
1396                                     b = 31 - av_log2(~b);
1397
1398                                     if (b > 8) {
1399                                         av_log(ac->avctx, AV_LOG_ERROR, "error in spectral data, ESC overflow\n");
1400                                         return -1;
1401                                     }
1402
1403                                     SKIP_BITS(re, gb, b + 1);
1404                                     b += 4;
1405                                     n = (1 << b) + SHOW_UBITS(re, gb, b);
1406                                     LAST_SKIP_BITS(re, gb, b);
1407                                     *icf++ = cbrt_tab[n] | (bits & 1U<<31);
1408                                     bits <<= 1;
1409                                 } else {
1410                                     unsigned v = ((const uint32_t*)vq)[cb_idx & 15];
1411                                     *icf++ = (bits & 1U<<31) | v;
1412                                     bits <<= !!v;
1413                                 }
1414                                 cb_idx >>= 4;
1415                             }
1416                         } while (len -= 2);
1417
1418                         ac->dsp.vector_fmul_scalar(cfo, cfo, sf[idx], off_len);
1419                     }
1420                 }
1421
1422                 CLOSE_READER(re, gb);
1423             }
1424         }
1425         coef += g_len << 7;
1426     }
1427
1428     if (pulse_present) {
1429         idx = 0;
1430         for (i = 0; i < pulse->num_pulse; i++) {
1431             float co = coef_base[ pulse->pos[i] ];
1432             while (offsets[idx + 1] <= pulse->pos[i])
1433                 idx++;
1434             if (band_type[idx] != NOISE_BT && sf[idx]) {
1435                 float ico = -pulse->amp[i];
1436                 if (co) {
1437                     co /= sf[idx];
1438                     ico = co / sqrtf(sqrtf(fabsf(co))) + (co > 0 ? -ico : ico);
1439                 }
1440                 coef_base[ pulse->pos[i] ] = cbrtf(fabsf(ico)) * ico * sf[idx];
1441             }
1442         }
1443     }
1444     return 0;
1445 }
1446
1447 static av_always_inline float flt16_round(float pf)
1448 {
1449     union av_intfloat32 tmp;
1450     tmp.f = pf;
1451     tmp.i = (tmp.i + 0x00008000U) & 0xFFFF0000U;
1452     return tmp.f;
1453 }
1454
1455 static av_always_inline float flt16_even(float pf)
1456 {
1457     union av_intfloat32 tmp;
1458     tmp.f = pf;
1459     tmp.i = (tmp.i + 0x00007FFFU + (tmp.i & 0x00010000U >> 16)) & 0xFFFF0000U;
1460     return tmp.f;
1461 }
1462
1463 static av_always_inline float flt16_trunc(float pf)
1464 {
1465     union av_intfloat32 pun;
1466     pun.f = pf;
1467     pun.i &= 0xFFFF0000U;
1468     return pun.f;
1469 }
1470
1471 static av_always_inline void predict(PredictorState *ps, float *coef,
1472                                      int output_enable)
1473 {
1474     const float a     = 0.953125; // 61.0 / 64
1475     const float alpha = 0.90625;  // 29.0 / 32
1476     float e0, e1;
1477     float pv;
1478     float k1, k2;
1479     float   r0 = ps->r0,     r1 = ps->r1;
1480     float cor0 = ps->cor0, cor1 = ps->cor1;
1481     float var0 = ps->var0, var1 = ps->var1;
1482
1483     k1 = var0 > 1 ? cor0 * flt16_even(a / var0) : 0;
1484     k2 = var1 > 1 ? cor1 * flt16_even(a / var1) : 0;
1485
1486     pv = flt16_round(k1 * r0 + k2 * r1);
1487     if (output_enable)
1488         *coef += pv;
1489
1490     e0 = *coef;
1491     e1 = e0 - k1 * r0;
1492
1493     ps->cor1 = flt16_trunc(alpha * cor1 + r1 * e1);
1494     ps->var1 = flt16_trunc(alpha * var1 + 0.5f * (r1 * r1 + e1 * e1));
1495     ps->cor0 = flt16_trunc(alpha * cor0 + r0 * e0);
1496     ps->var0 = flt16_trunc(alpha * var0 + 0.5f * (r0 * r0 + e0 * e0));
1497
1498     ps->r1 = flt16_trunc(a * (r0 - k1 * e0));
1499     ps->r0 = flt16_trunc(a * e0);
1500 }
1501
1502 /**
1503  * Apply AAC-Main style frequency domain prediction.
1504  */
1505 static void apply_prediction(AACContext *ac, SingleChannelElement *sce)
1506 {
1507     int sfb, k;
1508
1509     if (!sce->ics.predictor_initialized) {
1510         reset_all_predictors(sce->predictor_state);
1511         sce->ics.predictor_initialized = 1;
1512     }
1513
1514     if (sce->ics.window_sequence[0] != EIGHT_SHORT_SEQUENCE) {
1515         for (sfb = 0; sfb < ff_aac_pred_sfb_max[ac->m4ac.sampling_index]; sfb++) {
1516             for (k = sce->ics.swb_offset[sfb]; k < sce->ics.swb_offset[sfb + 1]; k++) {
1517                 predict(&sce->predictor_state[k], &sce->coeffs[k],
1518                         sce->ics.predictor_present && sce->ics.prediction_used[sfb]);
1519             }
1520         }
1521         if (sce->ics.predictor_reset_group)
1522             reset_predictor_group(sce->predictor_state, sce->ics.predictor_reset_group);
1523     } else
1524         reset_all_predictors(sce->predictor_state);
1525 }
1526
1527 /**
1528  * Decode an individual_channel_stream payload; reference: table 4.44.
1529  *
1530  * @param   common_window   Channels have independent [0], or shared [1], Individual Channel Stream information.
1531  * @param   scale_flag      scalable [1] or non-scalable [0] AAC (Unused until scalable AAC is implemented.)
1532  *
1533  * @return  Returns error status. 0 - OK, !0 - error
1534  */
1535 static int decode_ics(AACContext *ac, SingleChannelElement *sce,
1536                       GetBitContext *gb, int common_window, int scale_flag)
1537 {
1538     Pulse pulse;
1539     TemporalNoiseShaping    *tns = &sce->tns;
1540     IndividualChannelStream *ics = &sce->ics;
1541     float *out = sce->coeffs;
1542     int global_gain, pulse_present = 0;
1543
1544     /* This assignment is to silence a GCC warning about the variable being used
1545      * uninitialized when in fact it always is.
1546      */
1547     pulse.num_pulse = 0;
1548
1549     global_gain = get_bits(gb, 8);
1550
1551     if (!common_window && !scale_flag) {
1552         if (decode_ics_info(ac, ics, gb) < 0)
1553             return AVERROR_INVALIDDATA;
1554     }
1555
1556     if (decode_band_types(ac, sce->band_type, sce->band_type_run_end, gb, ics) < 0)
1557         return -1;
1558     if (decode_scalefactors(ac, sce->sf, gb, global_gain, ics, sce->band_type, sce->band_type_run_end) < 0)
1559         return -1;
1560
1561     pulse_present = 0;
1562     if (!scale_flag) {
1563         if ((pulse_present = get_bits1(gb))) {
1564             if (ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE) {
1565                 av_log(ac->avctx, AV_LOG_ERROR, "Pulse tool not allowed in eight short sequence.\n");
1566                 return -1;
1567             }
1568             if (decode_pulses(&pulse, gb, ics->swb_offset, ics->num_swb)) {
1569                 av_log(ac->avctx, AV_LOG_ERROR, "Pulse data corrupt or invalid.\n");
1570                 return -1;
1571             }
1572         }
1573         if ((tns->present = get_bits1(gb)) && decode_tns(ac, tns, gb, ics))
1574             return -1;
1575         if (get_bits1(gb)) {
1576             av_log_missing_feature(ac->avctx, "SSR", 1);
1577             return -1;
1578         }
1579     }
1580
1581     if (decode_spectrum_and_dequant(ac, out, gb, sce->sf, pulse_present, &pulse, ics, sce->band_type) < 0)
1582         return -1;
1583
1584     if (ac->m4ac.object_type == AOT_AAC_MAIN && !common_window)
1585         apply_prediction(ac, sce);
1586
1587     return 0;
1588 }
1589
1590 /**
1591  * Mid/Side stereo decoding; reference: 4.6.8.1.3.
1592  */
1593 static void apply_mid_side_stereo(AACContext *ac, ChannelElement *cpe)
1594 {
1595     const IndividualChannelStream *ics = &cpe->ch[0].ics;
1596     float *ch0 = cpe->ch[0].coeffs;
1597     float *ch1 = cpe->ch[1].coeffs;
1598     int g, i, group, idx = 0;
1599     const uint16_t *offsets = ics->swb_offset;
1600     for (g = 0; g < ics->num_window_groups; g++) {
1601         for (i = 0; i < ics->max_sfb; i++, idx++) {
1602             if (cpe->ms_mask[idx] &&
1603                     cpe->ch[0].band_type[idx] < NOISE_BT && cpe->ch[1].band_type[idx] < NOISE_BT) {
1604                 for (group = 0; group < ics->group_len[g]; group++) {
1605                     ac->dsp.butterflies_float(ch0 + group * 128 + offsets[i],
1606                                               ch1 + group * 128 + offsets[i],
1607                                               offsets[i+1] - offsets[i]);
1608                 }
1609             }
1610         }
1611         ch0 += ics->group_len[g] * 128;
1612         ch1 += ics->group_len[g] * 128;
1613     }
1614 }
1615
1616 /**
1617  * intensity stereo decoding; reference: 4.6.8.2.3
1618  *
1619  * @param   ms_present  Indicates mid/side stereo presence. [0] mask is all 0s;
1620  *                      [1] mask is decoded from bitstream; [2] mask is all 1s;
1621  *                      [3] reserved for scalable AAC
1622  */
1623 static void apply_intensity_stereo(AACContext *ac, ChannelElement *cpe, int ms_present)
1624 {
1625     const IndividualChannelStream *ics = &cpe->ch[1].ics;
1626     SingleChannelElement         *sce1 = &cpe->ch[1];
1627     float *coef0 = cpe->ch[0].coeffs, *coef1 = cpe->ch[1].coeffs;
1628     const uint16_t *offsets = ics->swb_offset;
1629     int g, group, i, idx = 0;
1630     int c;
1631     float scale;
1632     for (g = 0; g < ics->num_window_groups; g++) {
1633         for (i = 0; i < ics->max_sfb;) {
1634             if (sce1->band_type[idx] == INTENSITY_BT || sce1->band_type[idx] == INTENSITY_BT2) {
1635                 const int bt_run_end = sce1->band_type_run_end[idx];
1636                 for (; i < bt_run_end; i++, idx++) {
1637                     c = -1 + 2 * (sce1->band_type[idx] - 14);
1638                     if (ms_present)
1639                         c *= 1 - 2 * cpe->ms_mask[idx];
1640                     scale = c * sce1->sf[idx];
1641                     for (group = 0; group < ics->group_len[g]; group++)
1642                         ac->dsp.vector_fmul_scalar(coef1 + group * 128 + offsets[i],
1643                                                    coef0 + group * 128 + offsets[i],
1644                                                    scale,
1645                                                    offsets[i + 1] - offsets[i]);
1646                 }
1647             } else {
1648                 int bt_run_end = sce1->band_type_run_end[idx];
1649                 idx += bt_run_end - i;
1650                 i    = bt_run_end;
1651             }
1652         }
1653         coef0 += ics->group_len[g] * 128;
1654         coef1 += ics->group_len[g] * 128;
1655     }
1656 }
1657
1658 /**
1659  * Decode a channel_pair_element; reference: table 4.4.
1660  *
1661  * @return  Returns error status. 0 - OK, !0 - error
1662  */
1663 static int decode_cpe(AACContext *ac, GetBitContext *gb, ChannelElement *cpe)
1664 {
1665     int i, ret, common_window, ms_present = 0;
1666
1667     common_window = get_bits1(gb);
1668     if (common_window) {
1669         if (decode_ics_info(ac, &cpe->ch[0].ics, gb))
1670             return AVERROR_INVALIDDATA;
1671         i = cpe->ch[1].ics.use_kb_window[0];
1672         cpe->ch[1].ics = cpe->ch[0].ics;
1673         cpe->ch[1].ics.use_kb_window[1] = i;
1674         if (cpe->ch[1].ics.predictor_present && (ac->m4ac.object_type != AOT_AAC_MAIN))
1675             if ((cpe->ch[1].ics.ltp.present = get_bits(gb, 1)))
1676                 decode_ltp(ac, &cpe->ch[1].ics.ltp, gb, cpe->ch[1].ics.max_sfb);
1677         ms_present = get_bits(gb, 2);
1678         if (ms_present == 3) {
1679             av_log(ac->avctx, AV_LOG_ERROR, "ms_present = 3 is reserved.\n");
1680             return -1;
1681         } else if (ms_present)
1682             decode_mid_side_stereo(cpe, gb, ms_present);
1683     }
1684     if ((ret = decode_ics(ac, &cpe->ch[0], gb, common_window, 0)))
1685         return ret;
1686     if ((ret = decode_ics(ac, &cpe->ch[1], gb, common_window, 0)))
1687         return ret;
1688
1689     if (common_window) {
1690         if (ms_present)
1691             apply_mid_side_stereo(ac, cpe);
1692         if (ac->m4ac.object_type == AOT_AAC_MAIN) {
1693             apply_prediction(ac, &cpe->ch[0]);
1694             apply_prediction(ac, &cpe->ch[1]);
1695         }
1696     }
1697
1698     apply_intensity_stereo(ac, cpe, ms_present);
1699     return 0;
1700 }
1701
1702 static const float cce_scale[] = {
1703     1.09050773266525765921, //2^(1/8)
1704     1.18920711500272106672, //2^(1/4)
1705     M_SQRT2,
1706     2,
1707 };
1708
1709 /**
1710  * Decode coupling_channel_element; reference: table 4.8.
1711  *
1712  * @return  Returns error status. 0 - OK, !0 - error
1713  */
1714 static int decode_cce(AACContext *ac, GetBitContext *gb, ChannelElement *che)
1715 {
1716     int num_gain = 0;
1717     int c, g, sfb, ret;
1718     int sign;
1719     float scale;
1720     SingleChannelElement *sce = &che->ch[0];
1721     ChannelCoupling     *coup = &che->coup;
1722
1723     coup->coupling_point = 2 * get_bits1(gb);
1724     coup->num_coupled = get_bits(gb, 3);
1725     for (c = 0; c <= coup->num_coupled; c++) {
1726         num_gain++;
1727         coup->type[c] = get_bits1(gb) ? TYPE_CPE : TYPE_SCE;
1728         coup->id_select[c] = get_bits(gb, 4);
1729         if (coup->type[c] == TYPE_CPE) {
1730             coup->ch_select[c] = get_bits(gb, 2);
1731             if (coup->ch_select[c] == 3)
1732                 num_gain++;
1733         } else
1734             coup->ch_select[c] = 2;
1735     }
1736     coup->coupling_point += get_bits1(gb) || (coup->coupling_point >> 1);
1737
1738     sign  = get_bits(gb, 1);
1739     scale = cce_scale[get_bits(gb, 2)];
1740
1741     if ((ret = decode_ics(ac, sce, gb, 0, 0)))
1742         return ret;
1743
1744     for (c = 0; c < num_gain; c++) {
1745         int idx  = 0;
1746         int cge  = 1;
1747         int gain = 0;
1748         float gain_cache = 1.;
1749         if (c) {
1750             cge = coup->coupling_point == AFTER_IMDCT ? 1 : get_bits1(gb);
1751             gain = cge ? get_vlc2(gb, vlc_scalefactors.table, 7, 3) - 60: 0;
1752             gain_cache = powf(scale, -gain);
1753         }
1754         if (coup->coupling_point == AFTER_IMDCT) {
1755             coup->gain[c][0] = gain_cache;
1756         } else {
1757             for (g = 0; g < sce->ics.num_window_groups; g++) {
1758                 for (sfb = 0; sfb < sce->ics.max_sfb; sfb++, idx++) {
1759                     if (sce->band_type[idx] != ZERO_BT) {
1760                         if (!cge) {
1761                             int t = get_vlc2(gb, vlc_scalefactors.table, 7, 3) - 60;
1762                             if (t) {
1763                                 int s = 1;
1764                                 t = gain += t;
1765                                 if (sign) {
1766                                     s  -= 2 * (t & 0x1);
1767                                     t >>= 1;
1768                                 }
1769                                 gain_cache = powf(scale, -t) * s;
1770                             }
1771                         }
1772                         coup->gain[c][idx] = gain_cache;
1773                     }
1774                 }
1775             }
1776         }
1777     }
1778     return 0;
1779 }
1780
1781 /**
1782  * Parse whether channels are to be excluded from Dynamic Range Compression; reference: table 4.53.
1783  *
1784  * @return  Returns number of bytes consumed.
1785  */
1786 static int decode_drc_channel_exclusions(DynamicRangeControl *che_drc,
1787                                          GetBitContext *gb)
1788 {
1789     int i;
1790     int num_excl_chan = 0;
1791
1792     do {
1793         for (i = 0; i < 7; i++)
1794             che_drc->exclude_mask[num_excl_chan++] = get_bits1(gb);
1795     } while (num_excl_chan < MAX_CHANNELS - 7 && get_bits1(gb));
1796
1797     return num_excl_chan / 7;
1798 }
1799
1800 /**
1801  * Decode dynamic range information; reference: table 4.52.
1802  *
1803  * @param   cnt length of TYPE_FIL syntactic element in bytes
1804  *
1805  * @return  Returns number of bytes consumed.
1806  */
1807 static int decode_dynamic_range(DynamicRangeControl *che_drc,
1808                                 GetBitContext *gb, int cnt)
1809 {
1810     int n             = 1;
1811     int drc_num_bands = 1;
1812     int i;
1813
1814     /* pce_tag_present? */
1815     if (get_bits1(gb)) {
1816         che_drc->pce_instance_tag  = get_bits(gb, 4);
1817         skip_bits(gb, 4); // tag_reserved_bits
1818         n++;
1819     }
1820
1821     /* excluded_chns_present? */
1822     if (get_bits1(gb)) {
1823         n += decode_drc_channel_exclusions(che_drc, gb);
1824     }
1825
1826     /* drc_bands_present? */
1827     if (get_bits1(gb)) {
1828         che_drc->band_incr            = get_bits(gb, 4);
1829         che_drc->interpolation_scheme = get_bits(gb, 4);
1830         n++;
1831         drc_num_bands += che_drc->band_incr;
1832         for (i = 0; i < drc_num_bands; i++) {
1833             che_drc->band_top[i] = get_bits(gb, 8);
1834             n++;
1835         }
1836     }
1837
1838     /* prog_ref_level_present? */
1839     if (get_bits1(gb)) {
1840         che_drc->prog_ref_level = get_bits(gb, 7);
1841         skip_bits1(gb); // prog_ref_level_reserved_bits
1842         n++;
1843     }
1844
1845     for (i = 0; i < drc_num_bands; i++) {
1846         che_drc->dyn_rng_sgn[i] = get_bits1(gb);
1847         che_drc->dyn_rng_ctl[i] = get_bits(gb, 7);
1848         n++;
1849     }
1850
1851     return n;
1852 }
1853
1854 /**
1855  * Decode extension data (incomplete); reference: table 4.51.
1856  *
1857  * @param   cnt length of TYPE_FIL syntactic element in bytes
1858  *
1859  * @return Returns number of bytes consumed
1860  */
1861 static int decode_extension_payload(AACContext *ac, GetBitContext *gb, int cnt,
1862                                     ChannelElement *che, enum RawDataBlockType elem_type)
1863 {
1864     int crc_flag = 0;
1865     int res = cnt;
1866     switch (get_bits(gb, 4)) { // extension type
1867     case EXT_SBR_DATA_CRC:
1868         crc_flag++;
1869     case EXT_SBR_DATA:
1870         if (!che) {
1871             av_log(ac->avctx, AV_LOG_ERROR, "SBR was found before the first channel element.\n");
1872             return res;
1873         } else if (!ac->m4ac.sbr) {
1874             av_log(ac->avctx, AV_LOG_ERROR, "SBR signaled to be not-present but was found in the bitstream.\n");
1875             skip_bits_long(gb, 8 * cnt - 4);
1876             return res;
1877         } else if (ac->m4ac.sbr == -1 && ac->output_configured == OC_LOCKED) {
1878             av_log(ac->avctx, AV_LOG_ERROR, "Implicit SBR was found with a first occurrence after the first frame.\n");
1879             skip_bits_long(gb, 8 * cnt - 4);
1880             return res;
1881         } else if (ac->m4ac.ps == -1 && ac->output_configured < OC_LOCKED && ac->avctx->channels == 1) {
1882             ac->m4ac.sbr = 1;
1883             ac->m4ac.ps = 1;
1884             output_configure(ac, ac->layout_map, ac->layout_map_tags,
1885                              ac->m4ac.chan_config, ac->output_configured);
1886         } else {
1887             ac->m4ac.sbr = 1;
1888         }
1889         res = ff_decode_sbr_extension(ac, &che->sbr, gb, crc_flag, cnt, elem_type);
1890         break;
1891     case EXT_DYNAMIC_RANGE:
1892         res = decode_dynamic_range(&ac->che_drc, gb, cnt);
1893         break;
1894     case EXT_FILL:
1895     case EXT_FILL_DATA:
1896     case EXT_DATA_ELEMENT:
1897     default:
1898         skip_bits_long(gb, 8 * cnt - 4);
1899         break;
1900     };
1901     return res;
1902 }
1903
1904 /**
1905  * Decode Temporal Noise Shaping filter coefficients and apply all-pole filters; reference: 4.6.9.3.
1906  *
1907  * @param   decode  1 if tool is used normally, 0 if tool is used in LTP.
1908  * @param   coef    spectral coefficients
1909  */
1910 static void apply_tns(float coef[1024], TemporalNoiseShaping *tns,
1911                       IndividualChannelStream *ics, int decode)
1912 {
1913     const int mmm = FFMIN(ics->tns_max_bands, ics->max_sfb);
1914     int w, filt, m, i;
1915     int bottom, top, order, start, end, size, inc;
1916     float lpc[TNS_MAX_ORDER];
1917     float tmp[TNS_MAX_ORDER];
1918
1919     for (w = 0; w < ics->num_windows; w++) {
1920         bottom = ics->num_swb;
1921         for (filt = 0; filt < tns->n_filt[w]; filt++) {
1922             top    = bottom;
1923             bottom = FFMAX(0, top - tns->length[w][filt]);
1924             order  = tns->order[w][filt];
1925             if (order == 0)
1926                 continue;
1927
1928             // tns_decode_coef
1929             compute_lpc_coefs(tns->coef[w][filt], order, lpc, 0, 0, 0);
1930
1931             start = ics->swb_offset[FFMIN(bottom, mmm)];
1932             end   = ics->swb_offset[FFMIN(   top, mmm)];
1933             if ((size = end - start) <= 0)
1934                 continue;
1935             if (tns->direction[w][filt]) {
1936                 inc = -1;
1937                 start = end - 1;
1938             } else {
1939                 inc = 1;
1940             }
1941             start += w * 128;
1942
1943             if (decode) {
1944                 // ar filter
1945                 for (m = 0; m < size; m++, start += inc)
1946                     for (i = 1; i <= FFMIN(m, order); i++)
1947                         coef[start] -= coef[start - i * inc] * lpc[i - 1];
1948             } else {
1949                 // ma filter
1950                 for (m = 0; m < size; m++, start += inc) {
1951                     tmp[0] = coef[start];
1952                     for (i = 1; i <= FFMIN(m, order); i++)
1953                         coef[start] += tmp[i] * lpc[i - 1];
1954                     for (i = order; i > 0; i--)
1955                         tmp[i] = tmp[i - 1];
1956                 }
1957             }
1958         }
1959     }
1960 }
1961
1962 /**
1963  *  Apply windowing and MDCT to obtain the spectral
1964  *  coefficient from the predicted sample by LTP.
1965  */
1966 static void windowing_and_mdct_ltp(AACContext *ac, float *out,
1967                                    float *in, IndividualChannelStream *ics)
1968 {
1969     const float *lwindow      = ics->use_kb_window[0] ? ff_aac_kbd_long_1024 : ff_sine_1024;
1970     const float *swindow      = ics->use_kb_window[0] ? ff_aac_kbd_short_128 : ff_sine_128;
1971     const float *lwindow_prev = ics->use_kb_window[1] ? ff_aac_kbd_long_1024 : ff_sine_1024;
1972     const float *swindow_prev = ics->use_kb_window[1] ? ff_aac_kbd_short_128 : ff_sine_128;
1973
1974     if (ics->window_sequence[0] != LONG_STOP_SEQUENCE) {
1975         ac->dsp.vector_fmul(in, in, lwindow_prev, 1024);
1976     } else {
1977         memset(in, 0, 448 * sizeof(float));
1978         ac->dsp.vector_fmul(in + 448, in + 448, swindow_prev, 128);
1979     }
1980     if (ics->window_sequence[0] != LONG_START_SEQUENCE) {
1981         ac->dsp.vector_fmul_reverse(in + 1024, in + 1024, lwindow, 1024);
1982     } else {
1983         ac->dsp.vector_fmul_reverse(in + 1024 + 448, in + 1024 + 448, swindow, 128);
1984         memset(in + 1024 + 576, 0, 448 * sizeof(float));
1985     }
1986     ac->mdct_ltp.mdct_calc(&ac->mdct_ltp, out, in);
1987 }
1988
1989 /**
1990  * Apply the long term prediction
1991  */
1992 static void apply_ltp(AACContext *ac, SingleChannelElement *sce)
1993 {
1994     const LongTermPrediction *ltp = &sce->ics.ltp;
1995     const uint16_t *offsets = sce->ics.swb_offset;
1996     int i, sfb;
1997
1998     if (sce->ics.window_sequence[0] != EIGHT_SHORT_SEQUENCE) {
1999         float *predTime = sce->ret;
2000         float *predFreq = ac->buf_mdct;
2001         int16_t num_samples = 2048;
2002
2003         if (ltp->lag < 1024)
2004             num_samples = ltp->lag + 1024;
2005         for (i = 0; i < num_samples; i++)
2006             predTime[i] = sce->ltp_state[i + 2048 - ltp->lag] * ltp->coef;
2007         memset(&predTime[i], 0, (2048 - i) * sizeof(float));
2008
2009         windowing_and_mdct_ltp(ac, predFreq, predTime, &sce->ics);
2010
2011         if (sce->tns.present)
2012             apply_tns(predFreq, &sce->tns, &sce->ics, 0);
2013
2014         for (sfb = 0; sfb < FFMIN(sce->ics.max_sfb, MAX_LTP_LONG_SFB); sfb++)
2015             if (ltp->used[sfb])
2016                 for (i = offsets[sfb]; i < offsets[sfb + 1]; i++)
2017                     sce->coeffs[i] += predFreq[i];
2018     }
2019 }
2020
2021 /**
2022  * Update the LTP buffer for next frame
2023  */
2024 static void update_ltp(AACContext *ac, SingleChannelElement *sce)
2025 {
2026     IndividualChannelStream *ics = &sce->ics;
2027     float *saved     = sce->saved;
2028     float *saved_ltp = sce->coeffs;
2029     const float *lwindow = ics->use_kb_window[0] ? ff_aac_kbd_long_1024 : ff_sine_1024;
2030     const float *swindow = ics->use_kb_window[0] ? ff_aac_kbd_short_128 : ff_sine_128;
2031     int i;
2032
2033     if (ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE) {
2034         memcpy(saved_ltp,       saved, 512 * sizeof(float));
2035         memset(saved_ltp + 576, 0,     448 * sizeof(float));
2036         ac->dsp.vector_fmul_reverse(saved_ltp + 448, ac->buf_mdct + 960,     &swindow[64],      64);
2037         for (i = 0; i < 64; i++)
2038             saved_ltp[i + 512] = ac->buf_mdct[1023 - i] * swindow[63 - i];
2039     } else if (ics->window_sequence[0] == LONG_START_SEQUENCE) {
2040         memcpy(saved_ltp,       ac->buf_mdct + 512, 448 * sizeof(float));
2041         memset(saved_ltp + 576, 0,                  448 * sizeof(float));
2042         ac->dsp.vector_fmul_reverse(saved_ltp + 448, ac->buf_mdct + 960,     &swindow[64],      64);
2043         for (i = 0; i < 64; i++)
2044             saved_ltp[i + 512] = ac->buf_mdct[1023 - i] * swindow[63 - i];
2045     } else { // LONG_STOP or ONLY_LONG
2046         ac->dsp.vector_fmul_reverse(saved_ltp,       ac->buf_mdct + 512,     &lwindow[512],     512);
2047         for (i = 0; i < 512; i++)
2048             saved_ltp[i + 512] = ac->buf_mdct[1023 - i] * lwindow[511 - i];
2049     }
2050
2051     memcpy(sce->ltp_state,      sce->ltp_state+1024, 1024 * sizeof(*sce->ltp_state));
2052     memcpy(sce->ltp_state+1024, sce->ret,            1024 * sizeof(*sce->ltp_state));
2053     memcpy(sce->ltp_state+2048, saved_ltp,           1024 * sizeof(*sce->ltp_state));
2054 }
2055
2056 /**
2057  * Conduct IMDCT and windowing.
2058  */
2059 static void imdct_and_windowing(AACContext *ac, SingleChannelElement *sce)
2060 {
2061     IndividualChannelStream *ics = &sce->ics;
2062     float *in    = sce->coeffs;
2063     float *out   = sce->ret;
2064     float *saved = sce->saved;
2065     const float *swindow      = ics->use_kb_window[0] ? ff_aac_kbd_short_128 : ff_sine_128;
2066     const float *lwindow_prev = ics->use_kb_window[1] ? ff_aac_kbd_long_1024 : ff_sine_1024;
2067     const float *swindow_prev = ics->use_kb_window[1] ? ff_aac_kbd_short_128 : ff_sine_128;
2068     float *buf  = ac->buf_mdct;
2069     float *temp = ac->temp;
2070     int i;
2071
2072     // imdct
2073     if (ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE) {
2074         for (i = 0; i < 1024; i += 128)
2075             ac->mdct_small.imdct_half(&ac->mdct_small, buf + i, in + i);
2076     } else
2077         ac->mdct.imdct_half(&ac->mdct, buf, in);
2078
2079     /* window overlapping
2080      * NOTE: To simplify the overlapping code, all 'meaningless' short to long
2081      * and long to short transitions are considered to be short to short
2082      * transitions. This leaves just two cases (long to long and short to short)
2083      * with a little special sauce for EIGHT_SHORT_SEQUENCE.
2084      */
2085     if ((ics->window_sequence[1] == ONLY_LONG_SEQUENCE || ics->window_sequence[1] == LONG_STOP_SEQUENCE) &&
2086             (ics->window_sequence[0] == ONLY_LONG_SEQUENCE || ics->window_sequence[0] == LONG_START_SEQUENCE)) {
2087         ac->dsp.vector_fmul_window(    out,               saved,            buf,         lwindow_prev, 512);
2088     } else {
2089         memcpy(                        out,               saved,            448 * sizeof(float));
2090
2091         if (ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE) {
2092             ac->dsp.vector_fmul_window(out + 448 + 0*128, saved + 448,      buf + 0*128, swindow_prev, 64);
2093             ac->dsp.vector_fmul_window(out + 448 + 1*128, buf + 0*128 + 64, buf + 1*128, swindow,      64);
2094             ac->dsp.vector_fmul_window(out + 448 + 2*128, buf + 1*128 + 64, buf + 2*128, swindow,      64);
2095             ac->dsp.vector_fmul_window(out + 448 + 3*128, buf + 2*128 + 64, buf + 3*128, swindow,      64);
2096             ac->dsp.vector_fmul_window(temp,              buf + 3*128 + 64, buf + 4*128, swindow,      64);
2097             memcpy(                    out + 448 + 4*128, temp, 64 * sizeof(float));
2098         } else {
2099             ac->dsp.vector_fmul_window(out + 448,         saved + 448,      buf,         swindow_prev, 64);
2100             memcpy(                    out + 576,         buf + 64,         448 * sizeof(float));
2101         }
2102     }
2103
2104     // buffer update
2105     if (ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE) {
2106         memcpy(                    saved,       temp + 64,         64 * sizeof(float));
2107         ac->dsp.vector_fmul_window(saved + 64,  buf + 4*128 + 64, buf + 5*128, swindow, 64);
2108         ac->dsp.vector_fmul_window(saved + 192, buf + 5*128 + 64, buf + 6*128, swindow, 64);
2109         ac->dsp.vector_fmul_window(saved + 320, buf + 6*128 + 64, buf + 7*128, swindow, 64);
2110         memcpy(                    saved + 448, buf + 7*128 + 64,  64 * sizeof(float));
2111     } else if (ics->window_sequence[0] == LONG_START_SEQUENCE) {
2112         memcpy(                    saved,       buf + 512,        448 * sizeof(float));
2113         memcpy(                    saved + 448, buf + 7*128 + 64,  64 * sizeof(float));
2114     } else { // LONG_STOP or ONLY_LONG
2115         memcpy(                    saved,       buf + 512,        512 * sizeof(float));
2116     }
2117 }
2118
2119 /**
2120  * Apply dependent channel coupling (applied before IMDCT).
2121  *
2122  * @param   index   index into coupling gain array
2123  */
2124 static void apply_dependent_coupling(AACContext *ac,
2125                                      SingleChannelElement *target,
2126                                      ChannelElement *cce, int index)
2127 {
2128     IndividualChannelStream *ics = &cce->ch[0].ics;
2129     const uint16_t *offsets = ics->swb_offset;
2130     float *dest = target->coeffs;
2131     const float *src = cce->ch[0].coeffs;
2132     int g, i, group, k, idx = 0;
2133     if (ac->m4ac.object_type == AOT_AAC_LTP) {
2134         av_log(ac->avctx, AV_LOG_ERROR,
2135                "Dependent coupling is not supported together with LTP\n");
2136         return;
2137     }
2138     for (g = 0; g < ics->num_window_groups; g++) {
2139         for (i = 0; i < ics->max_sfb; i++, idx++) {
2140             if (cce->ch[0].band_type[idx] != ZERO_BT) {
2141                 const float gain = cce->coup.gain[index][idx];
2142                 for (group = 0; group < ics->group_len[g]; group++) {
2143                     for (k = offsets[i]; k < offsets[i + 1]; k++) {
2144                         // XXX dsputil-ize
2145                         dest[group * 128 + k] += gain * src[group * 128 + k];
2146                     }
2147                 }
2148             }
2149         }
2150         dest += ics->group_len[g] * 128;
2151         src  += ics->group_len[g] * 128;
2152     }
2153 }
2154
2155 /**
2156  * Apply independent channel coupling (applied after IMDCT).
2157  *
2158  * @param   index   index into coupling gain array
2159  */
2160 static void apply_independent_coupling(AACContext *ac,
2161                                        SingleChannelElement *target,
2162                                        ChannelElement *cce, int index)
2163 {
2164     int i;
2165     const float gain = cce->coup.gain[index][0];
2166     const float *src = cce->ch[0].ret;
2167     float *dest = target->ret;
2168     const int len = 1024 << (ac->m4ac.sbr == 1);
2169
2170     for (i = 0; i < len; i++)
2171         dest[i] += gain * src[i];
2172 }
2173
2174 /**
2175  * channel coupling transformation interface
2176  *
2177  * @param   apply_coupling_method   pointer to (in)dependent coupling function
2178  */
2179 static void apply_channel_coupling(AACContext *ac, ChannelElement *cc,
2180                                    enum RawDataBlockType type, int elem_id,
2181                                    enum CouplingPoint coupling_point,
2182                                    void (*apply_coupling_method)(AACContext *ac, SingleChannelElement *target, ChannelElement *cce, int index))
2183 {
2184     int i, c;
2185
2186     for (i = 0; i < MAX_ELEM_ID; i++) {
2187         ChannelElement *cce = ac->che[TYPE_CCE][i];
2188         int index = 0;
2189
2190         if (cce && cce->coup.coupling_point == coupling_point) {
2191             ChannelCoupling *coup = &cce->coup;
2192
2193             for (c = 0; c <= coup->num_coupled; c++) {
2194                 if (coup->type[c] == type && coup->id_select[c] == elem_id) {
2195                     if (coup->ch_select[c] != 1) {
2196                         apply_coupling_method(ac, &cc->ch[0], cce, index);
2197                         if (coup->ch_select[c] != 0)
2198                             index++;
2199                     }
2200                     if (coup->ch_select[c] != 2)
2201                         apply_coupling_method(ac, &cc->ch[1], cce, index++);
2202                 } else
2203                     index += 1 + (coup->ch_select[c] == 3);
2204             }
2205         }
2206     }
2207 }
2208
2209 /**
2210  * Convert spectral data to float samples, applying all supported tools as appropriate.
2211  */
2212 static void spectral_to_sample(AACContext *ac)
2213 {
2214     int i, type;
2215     for (type = 3; type >= 0; type--) {
2216         for (i = 0; i < MAX_ELEM_ID; i++) {
2217             ChannelElement *che = ac->che[type][i];
2218             if (che) {
2219                 if (type <= TYPE_CPE)
2220                     apply_channel_coupling(ac, che, type, i, BEFORE_TNS, apply_dependent_coupling);
2221                 if (ac->m4ac.object_type == AOT_AAC_LTP) {
2222                     if (che->ch[0].ics.predictor_present) {
2223                         if (che->ch[0].ics.ltp.present)
2224                             apply_ltp(ac, &che->ch[0]);
2225                         if (che->ch[1].ics.ltp.present && type == TYPE_CPE)
2226                             apply_ltp(ac, &che->ch[1]);
2227                     }
2228                 }
2229                 if (che->ch[0].tns.present)
2230                     apply_tns(che->ch[0].coeffs, &che->ch[0].tns, &che->ch[0].ics, 1);
2231                 if (che->ch[1].tns.present)
2232                     apply_tns(che->ch[1].coeffs, &che->ch[1].tns, &che->ch[1].ics, 1);
2233                 if (type <= TYPE_CPE)
2234                     apply_channel_coupling(ac, che, type, i, BETWEEN_TNS_AND_IMDCT, apply_dependent_coupling);
2235                 if (type != TYPE_CCE || che->coup.coupling_point == AFTER_IMDCT) {
2236                     imdct_and_windowing(ac, &che->ch[0]);
2237                     if (ac->m4ac.object_type == AOT_AAC_LTP)
2238                         update_ltp(ac, &che->ch[0]);
2239                     if (type == TYPE_CPE) {
2240                         imdct_and_windowing(ac, &che->ch[1]);
2241                         if (ac->m4ac.object_type == AOT_AAC_LTP)
2242                             update_ltp(ac, &che->ch[1]);
2243                     }
2244                     if (ac->m4ac.sbr > 0) {
2245                         ff_sbr_apply(ac, &che->sbr, type, che->ch[0].ret, che->ch[1].ret);
2246                     }
2247                 }
2248                 if (type <= TYPE_CCE)
2249                     apply_channel_coupling(ac, che, type, i, AFTER_IMDCT, apply_independent_coupling);
2250             }
2251         }
2252     }
2253 }
2254
2255 static int parse_adts_frame_header(AACContext *ac, GetBitContext *gb)
2256 {
2257     int size;
2258     AACADTSHeaderInfo hdr_info;
2259     uint8_t layout_map[MAX_ELEM_ID*4][3];
2260     int layout_map_tags;
2261
2262     size = avpriv_aac_parse_header(gb, &hdr_info);
2263     if (size > 0) {
2264         if (hdr_info.chan_config) {
2265             ac->m4ac.chan_config = hdr_info.chan_config;
2266             if (set_default_channel_config(ac->avctx, layout_map,
2267                     &layout_map_tags, hdr_info.chan_config))
2268                 return -7;
2269             if (output_configure(ac, layout_map, layout_map_tags,
2270                                  hdr_info.chan_config,
2271                                  FFMAX(ac->output_configured, OC_TRIAL_FRAME)))
2272                 return -7;
2273         } else if (ac->output_configured != OC_LOCKED) {
2274             ac->m4ac.chan_config = 0;
2275             ac->output_configured = OC_NONE;
2276         }
2277         if (ac->output_configured != OC_LOCKED) {
2278             ac->m4ac.sbr = -1;
2279             ac->m4ac.ps  = -1;
2280             ac->m4ac.sample_rate     = hdr_info.sample_rate;
2281             ac->m4ac.sampling_index  = hdr_info.sampling_index;
2282             ac->m4ac.object_type     = hdr_info.object_type;
2283         }
2284         if (!ac->avctx->sample_rate)
2285             ac->avctx->sample_rate = hdr_info.sample_rate;
2286         if (hdr_info.num_aac_frames == 1) {
2287             if (!hdr_info.crc_absent)
2288                 skip_bits(gb, 16);
2289         } else {
2290             av_log_missing_feature(ac->avctx, "More than one AAC RDB per ADTS frame is", 0);
2291             return -1;
2292         }
2293     }
2294     return size;
2295 }
2296
2297 static int aac_decode_frame_int(AVCodecContext *avctx, void *data,
2298                                 int *got_frame_ptr, GetBitContext *gb)
2299 {
2300     AACContext *ac = avctx->priv_data;
2301     ChannelElement *che = NULL, *che_prev = NULL;
2302     enum RawDataBlockType elem_type, elem_type_prev = TYPE_END;
2303     int err, elem_id;
2304     int samples = 0, multiplier, audio_found = 0;
2305
2306     if (show_bits(gb, 12) == 0xfff) {
2307         if (parse_adts_frame_header(ac, gb) < 0) {
2308             av_log(avctx, AV_LOG_ERROR, "Error decoding AAC frame header.\n");
2309             return -1;
2310         }
2311         if (ac->m4ac.sampling_index > 12) {
2312             av_log(ac->avctx, AV_LOG_ERROR, "invalid sampling rate index %d\n", ac->m4ac.sampling_index);
2313             return -1;
2314         }
2315     }
2316
2317     ac->tags_mapped = 0;
2318     // parse
2319     while ((elem_type = get_bits(gb, 3)) != TYPE_END) {
2320         elem_id = get_bits(gb, 4);
2321
2322         if (elem_type < TYPE_DSE) {
2323             if (!(che=get_che(ac, elem_type, elem_id))) {
2324                 av_log(ac->avctx, AV_LOG_ERROR, "channel element %d.%d is not allocated\n",
2325                        elem_type, elem_id);
2326                 return -1;
2327             }
2328             samples = 1024;
2329         }
2330
2331         switch (elem_type) {
2332
2333         case TYPE_SCE:
2334             err = decode_ics(ac, &che->ch[0], gb, 0, 0);
2335             audio_found = 1;
2336             break;
2337
2338         case TYPE_CPE:
2339             err = decode_cpe(ac, gb, che);
2340             audio_found = 1;
2341             break;
2342
2343         case TYPE_CCE:
2344             err = decode_cce(ac, gb, che);
2345             break;
2346
2347         case TYPE_LFE:
2348             err = decode_ics(ac, &che->ch[0], gb, 0, 0);
2349             audio_found = 1;
2350             break;
2351
2352         case TYPE_DSE:
2353             err = skip_data_stream_element(ac, gb);
2354             break;
2355
2356         case TYPE_PCE: {
2357             uint8_t layout_map[MAX_ELEM_ID*4][3];
2358             int tags;
2359             tags = decode_pce(avctx, &ac->m4ac, layout_map, gb);
2360             if (tags < 0) {
2361                 err = tags;
2362                 break;
2363             }
2364             if (ac->output_configured > OC_TRIAL_PCE)
2365                 av_log(avctx, AV_LOG_ERROR,
2366                        "Not evaluating a further program_config_element as this construct is dubious at best.\n");
2367             else
2368                 err = output_configure(ac, layout_map, tags, 0, OC_TRIAL_PCE);
2369             break;
2370         }
2371
2372         case TYPE_FIL:
2373             if (elem_id == 15)
2374                 elem_id += get_bits(gb, 8) - 1;
2375             if (get_bits_left(gb) < 8 * elem_id) {
2376                     av_log(avctx, AV_LOG_ERROR, overread_err);
2377                     return -1;
2378             }
2379             while (elem_id > 0)
2380                 elem_id -= decode_extension_payload(ac, gb, elem_id, che_prev, elem_type_prev);
2381             err = 0; /* FIXME */
2382             break;
2383
2384         default:
2385             err = -1; /* should not happen, but keeps compiler happy */
2386             break;
2387         }
2388
2389         che_prev       = che;
2390         elem_type_prev = elem_type;
2391
2392         if (err)
2393             return err;
2394
2395         if (get_bits_left(gb) < 3) {
2396             av_log(avctx, AV_LOG_ERROR, overread_err);
2397             return -1;
2398         }
2399     }
2400
2401     spectral_to_sample(ac);
2402
2403     multiplier = (ac->m4ac.sbr == 1) ? ac->m4ac.ext_sample_rate > ac->m4ac.sample_rate : 0;
2404     samples <<= multiplier;
2405     if (ac->output_configured < OC_LOCKED) {
2406         avctx->sample_rate = ac->m4ac.sample_rate << multiplier;
2407         avctx->frame_size = samples;
2408     }
2409
2410     if (samples) {
2411         /* get output buffer */
2412         ac->frame.nb_samples = samples;
2413         if ((err = avctx->get_buffer(avctx, &ac->frame)) < 0) {
2414             av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
2415             return err;
2416         }
2417
2418         if (avctx->sample_fmt == AV_SAMPLE_FMT_FLT)
2419             ac->fmt_conv.float_interleave((float *)ac->frame.data[0],
2420                                           (const float **)ac->output_data,
2421                                           samples, avctx->channels);
2422         else
2423             ac->fmt_conv.float_to_int16_interleave((int16_t *)ac->frame.data[0],
2424                                                    (const float **)ac->output_data,
2425                                                    samples, avctx->channels);
2426
2427         *(AVFrame *)data = ac->frame;
2428     }
2429     *got_frame_ptr = !!samples;
2430
2431     if (ac->output_configured && audio_found)
2432         ac->output_configured = OC_LOCKED;
2433
2434     return 0;
2435 }
2436
2437 static int aac_decode_frame(AVCodecContext *avctx, void *data,
2438                             int *got_frame_ptr, AVPacket *avpkt)
2439 {
2440     AACContext *ac = avctx->priv_data;
2441     const uint8_t *buf = avpkt->data;
2442     int buf_size = avpkt->size;
2443     GetBitContext gb;
2444     int buf_consumed;
2445     int buf_offset;
2446     int err;
2447     int new_extradata_size;
2448     const uint8_t *new_extradata = av_packet_get_side_data(avpkt,
2449                                        AV_PKT_DATA_NEW_EXTRADATA,
2450                                        &new_extradata_size);
2451
2452     if (new_extradata) {
2453         av_free(avctx->extradata);
2454         avctx->extradata = av_mallocz(new_extradata_size +
2455                                       FF_INPUT_BUFFER_PADDING_SIZE);
2456         if (!avctx->extradata)
2457             return AVERROR(ENOMEM);
2458         avctx->extradata_size = new_extradata_size;
2459         memcpy(avctx->extradata, new_extradata, new_extradata_size);
2460         if (decode_audio_specific_config(ac, ac->avctx, &ac->m4ac,
2461                                          avctx->extradata,
2462                                          avctx->extradata_size*8, 1) < 0)
2463             return AVERROR_INVALIDDATA;
2464     }
2465
2466     init_get_bits(&gb, buf, buf_size * 8);
2467
2468     if ((err = aac_decode_frame_int(avctx, data, got_frame_ptr, &gb)) < 0)
2469         return err;
2470
2471     buf_consumed = (get_bits_count(&gb) + 7) >> 3;
2472     for (buf_offset = buf_consumed; buf_offset < buf_size; buf_offset++)
2473         if (buf[buf_offset])
2474             break;
2475
2476     return buf_size > buf_offset ? buf_consumed : buf_size;
2477 }
2478
2479 static av_cold int aac_decode_close(AVCodecContext *avctx)
2480 {
2481     AACContext *ac = avctx->priv_data;
2482     int i, type;
2483
2484     for (i = 0; i < MAX_ELEM_ID; i++) {
2485         for (type = 0; type < 4; type++) {
2486             if (ac->che[type][i])
2487                 ff_aac_sbr_ctx_close(&ac->che[type][i]->sbr);
2488             av_freep(&ac->che[type][i]);
2489         }
2490     }
2491
2492     ff_mdct_end(&ac->mdct);
2493     ff_mdct_end(&ac->mdct_small);
2494     ff_mdct_end(&ac->mdct_ltp);
2495     return 0;
2496 }
2497
2498
2499 #define LOAS_SYNC_WORD   0x2b7       ///< 11 bits LOAS sync word
2500
2501 struct LATMContext {
2502     AACContext      aac_ctx;             ///< containing AACContext
2503     int             initialized;         ///< initilized after a valid extradata was seen
2504
2505     // parser data
2506     int             audio_mux_version_A; ///< LATM syntax version
2507     int             frame_length_type;   ///< 0/1 variable/fixed frame length
2508     int             frame_length;        ///< frame length for fixed frame length
2509 };
2510
2511 static inline uint32_t latm_get_value(GetBitContext *b)
2512 {
2513     int length = get_bits(b, 2);
2514
2515     return get_bits_long(b, (length+1)*8);
2516 }
2517
2518 static int latm_decode_audio_specific_config(struct LATMContext *latmctx,
2519                                              GetBitContext *gb, int asclen)
2520 {
2521     AACContext *ac        = &latmctx->aac_ctx;
2522     AVCodecContext *avctx = ac->avctx;
2523     MPEG4AudioConfig m4ac = {0};
2524     int config_start_bit  = get_bits_count(gb);
2525     int sync_extension    = 0;
2526     int bits_consumed, esize;
2527
2528     if (asclen) {
2529         sync_extension = 1;
2530         asclen         = FFMIN(asclen, get_bits_left(gb));
2531     } else
2532         asclen         = get_bits_left(gb);
2533
2534     if (config_start_bit % 8) {
2535         av_log_missing_feature(latmctx->aac_ctx.avctx, "audio specific "
2536                                "config not byte aligned.\n", 1);
2537         return AVERROR_INVALIDDATA;
2538     }
2539     if (asclen <= 0)
2540         return AVERROR_INVALIDDATA;
2541     bits_consumed = decode_audio_specific_config(NULL, avctx, &m4ac,
2542                                          gb->buffer + (config_start_bit / 8),
2543                                          asclen, sync_extension);
2544
2545     if (bits_consumed < 0)
2546         return AVERROR_INVALIDDATA;
2547
2548     if (ac->m4ac.sample_rate != m4ac.sample_rate ||
2549         ac->m4ac.chan_config != m4ac.chan_config) {
2550
2551         av_log(avctx, AV_LOG_INFO, "audio config changed\n");
2552         latmctx->initialized = 0;
2553
2554         esize = (bits_consumed+7) / 8;
2555
2556         if (avctx->extradata_size < esize) {
2557             av_free(avctx->extradata);
2558             avctx->extradata = av_malloc(esize + FF_INPUT_BUFFER_PADDING_SIZE);
2559             if (!avctx->extradata)
2560                 return AVERROR(ENOMEM);
2561         }
2562
2563         avctx->extradata_size = esize;
2564         memcpy(avctx->extradata, gb->buffer + (config_start_bit/8), esize);
2565         memset(avctx->extradata+esize, 0, FF_INPUT_BUFFER_PADDING_SIZE);
2566     }
2567     skip_bits_long(gb, bits_consumed);
2568
2569     return bits_consumed;
2570 }
2571
2572 static int read_stream_mux_config(struct LATMContext *latmctx,
2573                                   GetBitContext *gb)
2574 {
2575     int ret, audio_mux_version = get_bits(gb, 1);
2576
2577     latmctx->audio_mux_version_A = 0;
2578     if (audio_mux_version)
2579         latmctx->audio_mux_version_A = get_bits(gb, 1);
2580
2581     if (!latmctx->audio_mux_version_A) {
2582
2583         if (audio_mux_version)
2584             latm_get_value(gb);                 // taraFullness
2585
2586         skip_bits(gb, 1);                       // allStreamSameTimeFraming
2587         skip_bits(gb, 6);                       // numSubFrames
2588         // numPrograms
2589         if (get_bits(gb, 4)) {                  // numPrograms
2590             av_log_missing_feature(latmctx->aac_ctx.avctx,
2591                                    "multiple programs are not supported\n", 1);
2592             return AVERROR_PATCHWELCOME;
2593         }
2594
2595         // for each program (which there is only on in DVB)
2596
2597         // for each layer (which there is only on in DVB)
2598         if (get_bits(gb, 3)) {                   // numLayer
2599             av_log_missing_feature(latmctx->aac_ctx.avctx,
2600                                    "multiple layers are not supported\n", 1);
2601             return AVERROR_PATCHWELCOME;
2602         }
2603
2604         // for all but first stream: use_same_config = get_bits(gb, 1);
2605         if (!audio_mux_version) {
2606             if ((ret = latm_decode_audio_specific_config(latmctx, gb, 0)) < 0)
2607                 return ret;
2608         } else {
2609             int ascLen = latm_get_value(gb);
2610             if ((ret = latm_decode_audio_specific_config(latmctx, gb, ascLen)) < 0)
2611                 return ret;
2612             ascLen -= ret;
2613             skip_bits_long(gb, ascLen);
2614         }
2615
2616         latmctx->frame_length_type = get_bits(gb, 3);
2617         switch (latmctx->frame_length_type) {
2618         case 0:
2619             skip_bits(gb, 8);       // latmBufferFullness
2620             break;
2621         case 1:
2622             latmctx->frame_length = get_bits(gb, 9);
2623             break;
2624         case 3:
2625         case 4:
2626         case 5:
2627             skip_bits(gb, 6);       // CELP frame length table index
2628             break;
2629         case 6:
2630         case 7:
2631             skip_bits(gb, 1);       // HVXC frame length table index
2632             break;
2633         }
2634
2635         if (get_bits(gb, 1)) {                  // other data
2636             if (audio_mux_version) {
2637                 latm_get_value(gb);             // other_data_bits
2638             } else {
2639                 int esc;
2640                 do {
2641                     esc = get_bits(gb, 1);
2642                     skip_bits(gb, 8);
2643                 } while (esc);
2644             }
2645         }
2646
2647         if (get_bits(gb, 1))                     // crc present
2648             skip_bits(gb, 8);                    // config_crc
2649     }
2650
2651     return 0;
2652 }
2653
2654 static int read_payload_length_info(struct LATMContext *ctx, GetBitContext *gb)
2655 {
2656     uint8_t tmp;
2657
2658     if (ctx->frame_length_type == 0) {
2659         int mux_slot_length = 0;
2660         do {
2661             tmp = get_bits(gb, 8);
2662             mux_slot_length += tmp;
2663         } while (tmp == 255);
2664         return mux_slot_length;
2665     } else if (ctx->frame_length_type == 1) {
2666         return ctx->frame_length;
2667     } else if (ctx->frame_length_type == 3 ||
2668                ctx->frame_length_type == 5 ||
2669                ctx->frame_length_type == 7) {
2670         skip_bits(gb, 2);          // mux_slot_length_coded
2671     }
2672     return 0;
2673 }
2674
2675 static int read_audio_mux_element(struct LATMContext *latmctx,
2676                                   GetBitContext *gb)
2677 {
2678     int err;
2679     uint8_t use_same_mux = get_bits(gb, 1);
2680     if (!use_same_mux) {
2681         if ((err = read_stream_mux_config(latmctx, gb)) < 0)
2682             return err;
2683     } else if (!latmctx->aac_ctx.avctx->extradata) {
2684         av_log(latmctx->aac_ctx.avctx, AV_LOG_DEBUG,
2685                "no decoder config found\n");
2686         return AVERROR(EAGAIN);
2687     }
2688     if (latmctx->audio_mux_version_A == 0) {
2689         int mux_slot_length_bytes = read_payload_length_info(latmctx, gb);
2690         if (mux_slot_length_bytes * 8 > get_bits_left(gb)) {
2691             av_log(latmctx->aac_ctx.avctx, AV_LOG_ERROR, "incomplete frame\n");
2692             return AVERROR_INVALIDDATA;
2693         } else if (mux_slot_length_bytes * 8 + 256 < get_bits_left(gb)) {
2694             av_log(latmctx->aac_ctx.avctx, AV_LOG_ERROR,
2695                    "frame length mismatch %d << %d\n",
2696                    mux_slot_length_bytes * 8, get_bits_left(gb));
2697             return AVERROR_INVALIDDATA;
2698         }
2699     }
2700     return 0;
2701 }
2702
2703
2704 static int latm_decode_frame(AVCodecContext *avctx, void *out,
2705                              int *got_frame_ptr, AVPacket *avpkt)
2706 {
2707     struct LATMContext *latmctx = avctx->priv_data;
2708     int                 muxlength, err;
2709     GetBitContext       gb;
2710
2711     init_get_bits(&gb, avpkt->data, avpkt->size * 8);
2712
2713     // check for LOAS sync word
2714     if (get_bits(&gb, 11) != LOAS_SYNC_WORD)
2715         return AVERROR_INVALIDDATA;
2716
2717     muxlength = get_bits(&gb, 13) + 3;
2718     // not enough data, the parser should have sorted this
2719     if (muxlength > avpkt->size)
2720         return AVERROR_INVALIDDATA;
2721
2722     if ((err = read_audio_mux_element(latmctx, &gb)) < 0)
2723         return err;
2724
2725     if (!latmctx->initialized) {
2726         if (!avctx->extradata) {
2727             *got_frame_ptr = 0;
2728             return avpkt->size;
2729         } else {
2730             if ((err = decode_audio_specific_config(
2731                     &latmctx->aac_ctx, avctx, &latmctx->aac_ctx.m4ac,
2732                     avctx->extradata, avctx->extradata_size*8, 1)) < 0)
2733                 return err;
2734             latmctx->initialized = 1;
2735         }
2736     }
2737
2738     if (show_bits(&gb, 12) == 0xfff) {
2739         av_log(latmctx->aac_ctx.avctx, AV_LOG_ERROR,
2740                "ADTS header detected, probably as result of configuration "
2741                "misparsing\n");
2742         return AVERROR_INVALIDDATA;
2743     }
2744
2745     if ((err = aac_decode_frame_int(avctx, out, got_frame_ptr, &gb)) < 0)
2746         return err;
2747
2748     return muxlength;
2749 }
2750
2751 av_cold static int latm_decode_init(AVCodecContext *avctx)
2752 {
2753     struct LATMContext *latmctx = avctx->priv_data;
2754     int ret = aac_decode_init(avctx);
2755
2756     if (avctx->extradata_size > 0)
2757         latmctx->initialized = !ret;
2758
2759     return ret;
2760 }
2761
2762
2763 AVCodec ff_aac_decoder = {
2764     .name           = "aac",
2765     .type           = AVMEDIA_TYPE_AUDIO,
2766     .id             = CODEC_ID_AAC,
2767     .priv_data_size = sizeof(AACContext),
2768     .init           = aac_decode_init,
2769     .close          = aac_decode_close,
2770     .decode         = aac_decode_frame,
2771     .long_name = NULL_IF_CONFIG_SMALL("Advanced Audio Coding"),
2772     .sample_fmts = (const enum AVSampleFormat[]) {
2773         AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_NONE
2774     },
2775     .capabilities = CODEC_CAP_CHANNEL_CONF | CODEC_CAP_DR1,
2776     .channel_layouts = aac_channel_layout,
2777 };
2778
2779 /*
2780     Note: This decoder filter is intended to decode LATM streams transferred
2781     in MPEG transport streams which only contain one program.
2782     To do a more complex LATM demuxing a separate LATM demuxer should be used.
2783 */
2784 AVCodec ff_aac_latm_decoder = {
2785     .name = "aac_latm",
2786     .type = AVMEDIA_TYPE_AUDIO,
2787     .id   = CODEC_ID_AAC_LATM,
2788     .priv_data_size = sizeof(struct LATMContext),
2789     .init   = latm_decode_init,
2790     .close  = aac_decode_close,
2791     .decode = latm_decode_frame,
2792     .long_name = NULL_IF_CONFIG_SMALL("AAC LATM (Advanced Audio Codec LATM syntax)"),
2793     .sample_fmts = (const enum AVSampleFormat[]) {
2794         AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_NONE
2795     },
2796     .capabilities = CODEC_CAP_CHANNEL_CONF | CODEC_CAP_DR1,
2797     .channel_layouts = aac_channel_layout,
2798 };