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