FFmpeg
aacdec.c
Go to the documentation of this file.
1 /*
2  * Common parts of the AAC decoders
3  * Copyright (c) 2005-2006 Oded Shimon ( ods15 ods15 dyndns org )
4  * Copyright (c) 2006-2007 Maxim Gavrilov ( maxim.gavrilov gmail com )
5  * Copyright (c) 2008-2013 Alex Converse <alex.converse@gmail.com>
6  *
7  * AAC LATM decoder
8  * Copyright (c) 2008-2010 Paul Kendall <paul@kcbbs.gen.nz>
9  * Copyright (c) 2010 Janne Grunau <janne-libav@jannau.net>
10  *
11  * AAC decoder fixed-point implementation
12  * Copyright (c) 2013
13  * MIPS Technologies, Inc., California.
14  *
15  * This file is part of FFmpeg.
16  *
17  * FFmpeg is free software; you can redistribute it and/or
18  * modify it under the terms of the GNU Lesser General Public
19  * License as published by the Free Software Foundation; either
20  * version 2.1 of the License, or (at your option) any later version.
21  *
22  * FFmpeg is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25  * Lesser General Public License for more details.
26  *
27  * You should have received a copy of the GNU Lesser General Public
28  * License along with FFmpeg; if not, write to the Free Software
29  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
30  */
31 
32 /* We use several quantization functions here (Q31, Q30),
33  * for which we need this to be defined for them to work as expected. */
34 #define USE_FIXED 1
35 
36 #include "config_components.h"
37 
38 #include <limits.h>
39 #include <stddef.h>
40 
41 #include "aacdec.h"
42 #include "aacdec_tab.h"
43 #include "aacdec_usac.h"
44 
45 #include "libavcodec/aac.h"
46 #include "libavcodec/aac_defines.h"
47 #include "libavcodec/aacsbr.h"
48 #include "libavcodec/aactab.h"
49 #include "libavcodec/adts_header.h"
50 
51 #include "libavcodec/avcodec.h"
52 #include "libavcodec/internal.h"
54 #include "libavcodec/decode.h"
55 #include "libavcodec/profiles.h"
56 
57 #include "libavutil/attributes.h"
58 #include "libavutil/error.h"
59 #include "libavutil/log.h"
60 #include "libavutil/macros.h"
61 #include "libavutil/mem.h"
62 #include "libavutil/opt.h"
63 #include "libavutil/tx.h"
64 #include "libavutil/version.h"
65 
66 /*
67  * supported tools
68  *
69  * Support? Name
70  * N (code in SoC repo) gain control
71  * Y block switching
72  * Y window shapes - standard
73  * N window shapes - Low Delay
74  * Y filterbank - standard
75  * N (code in SoC repo) filterbank - Scalable Sample Rate
76  * Y Temporal Noise Shaping
77  * Y Long Term Prediction
78  * Y intensity stereo
79  * Y channel coupling
80  * Y frequency domain prediction
81  * Y Perceptual Noise Substitution
82  * Y Mid/Side stereo
83  * N Scalable Inverse AAC Quantization
84  * N Frequency Selective Switch
85  * N upsampling filter
86  * Y quantization & coding - AAC
87  * N quantization & coding - TwinVQ
88  * N quantization & coding - BSAC
89  * N AAC Error Resilience tools
90  * N Error Resilience payload syntax
91  * N Error Protection tool
92  * N CELP
93  * N Silence Compression
94  * N HVXC
95  * N HVXC 4kbits/s VR
96  * N Structured Audio tools
97  * N Structured Audio Sample Bank Format
98  * N MIDI
99  * N Harmonic and Individual Lines plus Noise
100  * N Text-To-Speech Interface
101  * Y Spectral Band Replication
102  * Y (not in this code) Layer-1
103  * Y (not in this code) Layer-2
104  * Y (not in this code) Layer-3
105  * N SinuSoidal Coding (Transient, Sinusoid, Noise)
106  * Y Parametric Stereo
107  * N Direct Stream Transfer
108  * Y (not in fixed point code) Enhanced AAC Low Delay (ER AAC ELD)
109  *
110  * Note: - HE AAC v1 comprises LC AAC with Spectral Band Replication.
111  * - HE AAC v2 comprises LC AAC with Spectral Band Replication and
112  Parametric Stereo.
113  */
114 
115 #define overread_err "Input buffer exhausted before END element found\n"
116 
117 static int count_channels(uint8_t (*layout)[3], int tags)
118 {
119  int i, sum = 0;
120  for (i = 0; i < tags; i++) {
121  int syn_ele = layout[i][0];
122  int pos = layout[i][2];
123  sum += (1 + (syn_ele == TYPE_CPE)) *
125  }
126  return sum;
127 }
128 
129 /**
130  * Check for the channel element in the current channel position configuration.
131  * If it exists, make sure the appropriate element is allocated and map the
132  * channel order to match the internal FFmpeg channel layout.
133  *
134  * @param che_pos current channel position configuration
135  * @param type channel element type
136  * @param id channel element id
137  * @param channels count of the number of channels in the configuration
138  *
139  * @return Returns error status. 0 - OK, !0 - error
140  */
142  enum ChannelPosition che_pos,
143  int type, int id, int *channels)
144 {
145  if (*channels >= MAX_CHANNELS)
146  return AVERROR_INVALIDDATA;
147  if (che_pos) {
148  if (!ac->che[type][id]) {
149  int ret = ac->proc.sbr_ctx_alloc_init(ac, &ac->che[type][id], type);
150  if (ret < 0)
151  return ret;
152  }
153  if (type != TYPE_CCE) {
154  if (*channels >= MAX_CHANNELS - (type == TYPE_CPE || (type == TYPE_SCE && ac->oc[1].m4ac.ps == 1))) {
155  av_log(ac->avctx, AV_LOG_ERROR, "Too many channels\n");
156  return AVERROR_INVALIDDATA;
157  }
158  ac->output_element[(*channels)++] = &ac->che[type][id]->ch[0];
159  if (type == TYPE_CPE ||
160  (type == TYPE_SCE && ac->oc[1].m4ac.ps == 1)) {
161  ac->output_element[(*channels)++] = &ac->che[type][id]->ch[1];
162  }
163  }
164  } else {
165  if (ac->che[type][id]) {
166  ac->proc.sbr_ctx_close(ac->che[type][id]);
167  }
168  av_freep(&ac->che[type][id]);
169  memset(ac->output_element, 0, sizeof(ac->output_element));
170  }
171  return 0;
172 }
173 
175 {
176  AACDecContext *ac = avctx->priv_data;
177  int type, id, ch, ret;
178 
179  /* set channel pointers to internal buffers by default */
180  for (type = 0; type < 4; type++) {
181  for (id = 0; id < MAX_ELEM_ID; id++) {
182  ChannelElement *che = ac->che[type][id];
183  if (che) {
184  che->ch[0].output = che->ch[0].ret_buf;
185  che->ch[1].output = che->ch[1].ret_buf;
186  }
187  }
188  }
189 
190  /* get output buffer */
191  av_frame_unref(ac->frame);
192  if (!avctx->ch_layout.nb_channels)
193  return 1;
194 
195  ac->frame->nb_samples = 2048;
196  if ((ret = ff_get_buffer(avctx, ac->frame, 0)) < 0)
197  return ret;
198 
199  /* map output channel pointers to AVFrame data */
200  for (ch = 0; ch < avctx->ch_layout.nb_channels; ch++) {
201  if (ac->output_element[ch])
202  ac->output_element[ch]->output = (void *)ac->frame->extended_data[ch];
203  }
204 
205  return 0;
206 }
207 
209  uint64_t av_position;
210  uint8_t syn_ele;
211  uint8_t elem_id;
212  uint8_t aac_position;
213 };
214 
215 static int assign_pair(struct elem_to_channel e2c_vec[MAX_ELEM_ID],
216  uint8_t (*layout_map)[3], int offset, uint64_t left,
217  uint64_t right, int pos, uint64_t *layout)
218 {
219  if (layout_map[offset][0] == TYPE_CPE) {
220  e2c_vec[offset] = (struct elem_to_channel) {
221  .av_position = left | right,
222  .syn_ele = TYPE_CPE,
223  .elem_id = layout_map[offset][1],
224  .aac_position = pos
225  };
226  if (e2c_vec[offset].av_position != UINT64_MAX)
227  *layout |= e2c_vec[offset].av_position;
228 
229  return 1;
230  } else {
231  e2c_vec[offset] = (struct elem_to_channel) {
232  .av_position = left,
233  .syn_ele = TYPE_SCE,
234  .elem_id = layout_map[offset][1],
235  .aac_position = pos
236  };
237  e2c_vec[offset + 1] = (struct elem_to_channel) {
238  .av_position = right,
239  .syn_ele = TYPE_SCE,
240  .elem_id = layout_map[offset + 1][1],
241  .aac_position = pos
242  };
243  if (left != UINT64_MAX)
244  *layout |= left;
245 
246  if (right != UINT64_MAX)
247  *layout |= right;
248 
249  return 2;
250  }
251 }
252 
253 static int count_paired_channels(uint8_t (*layout_map)[3], int tags, int pos,
254  int current)
255 {
256  int num_pos_channels = 0;
257  int first_cpe = 0;
258  int sce_parity = 0;
259  int i;
260  for (i = current; i < tags; i++) {
261  if (layout_map[i][2] != pos)
262  break;
263  if (layout_map[i][0] == TYPE_CPE) {
264  if (sce_parity) {
265  if (pos == AAC_CHANNEL_FRONT && !first_cpe) {
266  sce_parity = 0;
267  } else {
268  return -1;
269  }
270  }
271  num_pos_channels += 2;
272  first_cpe = 1;
273  } else {
274  num_pos_channels++;
275  sce_parity ^= (pos != AAC_CHANNEL_LFE);
276  }
277  }
278  if (sce_parity &&
279  (pos == AAC_CHANNEL_FRONT && first_cpe))
280  return -1;
281 
282  return num_pos_channels;
283 }
284 
285 static int assign_channels(struct elem_to_channel e2c_vec[MAX_ELEM_ID], uint8_t (*layout_map)[3],
286  uint64_t *layout, int tags, int layer, int pos, int *current)
287 {
288  int i = *current, j = 0;
289  int nb_channels = count_paired_channels(layout_map, tags, pos, i);
290 
291  if (nb_channels < 0 || nb_channels > 5)
292  return 0;
293 
294  if (pos == AAC_CHANNEL_LFE) {
295  while (nb_channels) {
296  if (ff_aac_channel_map[layer][pos - 1][j] == AV_CHAN_NONE)
297  return -1;
298  e2c_vec[i] = (struct elem_to_channel) {
299  .av_position = 1ULL << ff_aac_channel_map[layer][pos - 1][j],
300  .syn_ele = layout_map[i][0],
301  .elem_id = layout_map[i][1],
302  .aac_position = pos
303  };
304  *layout |= e2c_vec[i].av_position;
305  i++;
306  j++;
307  nb_channels--;
308  }
309  *current = i;
310 
311  return 0;
312  }
313 
314  while (nb_channels & 1) {
315  if (ff_aac_channel_map[layer][pos - 1][0] == AV_CHAN_NONE)
316  return -1;
317  if (ff_aac_channel_map[layer][pos - 1][0] == AV_CHAN_UNUSED)
318  break;
319  e2c_vec[i] = (struct elem_to_channel) {
320  .av_position = 1ULL << ff_aac_channel_map[layer][pos - 1][0],
321  .syn_ele = layout_map[i][0],
322  .elem_id = layout_map[i][1],
323  .aac_position = pos
324  };
325  *layout |= e2c_vec[i].av_position;
326  i++;
327  nb_channels--;
328  }
329 
330  j = (pos != AAC_CHANNEL_SIDE) && nb_channels <= 3 ? 3 : 1;
331  while (nb_channels >= 2) {
332  if (ff_aac_channel_map[layer][pos - 1][j] == AV_CHAN_NONE ||
333  ff_aac_channel_map[layer][pos - 1][j+1] == AV_CHAN_NONE)
334  return -1;
335  i += assign_pair(e2c_vec, layout_map, i,
336  1ULL << ff_aac_channel_map[layer][pos - 1][j],
337  1ULL << ff_aac_channel_map[layer][pos - 1][j+1],
338  pos, layout);
339  j += 2;
340  nb_channels -= 2;
341  }
342  while (nb_channels & 1) {
343  if (ff_aac_channel_map[layer][pos - 1][5] == AV_CHAN_NONE)
344  return -1;
345  e2c_vec[i] = (struct elem_to_channel) {
346  .av_position = 1ULL << ff_aac_channel_map[layer][pos - 1][5],
347  .syn_ele = layout_map[i][0],
348  .elem_id = layout_map[i][1],
349  .aac_position = pos
350  };
351  *layout |= e2c_vec[i].av_position;
352  i++;
353  nb_channels--;
354  }
355  if (nb_channels)
356  return -1;
357 
358  *current = i;
359 
360  return 0;
361 }
362 
363 static uint64_t sniff_channel_order(uint8_t (*layout_map)[3], int tags)
364 {
365  int i, n, total_non_cc_elements;
366  struct elem_to_channel e2c_vec[4 * MAX_ELEM_ID] = { { 0 } };
367  uint64_t layout = 0;
368 
369  if (FF_ARRAY_ELEMS(e2c_vec) < tags)
370  return 0;
371 
372  for (n = 0, i = 0; n < 3 && i < tags; n++) {
373  int ret = assign_channels(e2c_vec, layout_map, &layout, tags, n, AAC_CHANNEL_FRONT, &i);
374  if (ret < 0)
375  return 0;
376  ret = assign_channels(e2c_vec, layout_map, &layout, tags, n, AAC_CHANNEL_SIDE, &i);
377  if (ret < 0)
378  return 0;
379  ret = assign_channels(e2c_vec, layout_map, &layout, tags, n, AAC_CHANNEL_BACK, &i);
380  if (ret < 0)
381  return 0;
382  ret = assign_channels(e2c_vec, layout_map, &layout, tags, n, AAC_CHANNEL_LFE, &i);
383  if (ret < 0)
384  return 0;
385  }
386 
387  total_non_cc_elements = n = i;
388 
389  if (layout == AV_CH_LAYOUT_22POINT2) {
390  // For 22.2 reorder the result as needed
391  FFSWAP(struct elem_to_channel, e2c_vec[2], e2c_vec[0]); // FL & FR first (final), FC third
392  FFSWAP(struct elem_to_channel, e2c_vec[2], e2c_vec[1]); // FC second (final), FLc & FRc third
393  FFSWAP(struct elem_to_channel, e2c_vec[6], e2c_vec[2]); // LFE1 third (final), FLc & FRc seventh
394  FFSWAP(struct elem_to_channel, e2c_vec[4], e2c_vec[3]); // BL & BR fourth (final), SiL & SiR fifth
395  FFSWAP(struct elem_to_channel, e2c_vec[6], e2c_vec[4]); // FLc & FRc fifth (final), SiL & SiR seventh
396  FFSWAP(struct elem_to_channel, e2c_vec[7], e2c_vec[6]); // LFE2 seventh (final), SiL & SiR eight (final)
397  FFSWAP(struct elem_to_channel, e2c_vec[9], e2c_vec[8]); // TpFL & TpFR ninth (final), TFC tenth (final)
398  FFSWAP(struct elem_to_channel, e2c_vec[11], e2c_vec[10]); // TC eleventh (final), TpSiL & TpSiR twelth
399  FFSWAP(struct elem_to_channel, e2c_vec[12], e2c_vec[11]); // TpBL & TpBR twelth (final), TpSiL & TpSiR thirteenth (final)
400  } else {
401  // For everything else, utilize the AV channel position define as a
402  // stable sort.
403  do {
404  int next_n = 0;
405  for (i = 1; i < n; i++)
406  if (e2c_vec[i - 1].av_position > e2c_vec[i].av_position) {
407  FFSWAP(struct elem_to_channel, e2c_vec[i - 1], e2c_vec[i]);
408  next_n = i;
409  }
410  n = next_n;
411  } while (n > 0);
412 
413  }
414 
415  for (i = 0; i < total_non_cc_elements; i++) {
416  layout_map[i][0] = e2c_vec[i].syn_ele;
417  layout_map[i][1] = e2c_vec[i].elem_id;
418  layout_map[i][2] = e2c_vec[i].aac_position;
419  }
420 
421  return layout;
422 }
423 
424 /**
425  * Save current output configuration if and only if it has been locked.
426  */
428 {
429  int pushed = 0;
430 
431  if (ac->oc[1].status == OC_LOCKED || ac->oc[0].status == OC_NONE) {
432  ac->oc[0] = ac->oc[1];
433  pushed = 1;
434  }
435  ac->oc[1].status = OC_NONE;
436  return pushed;
437 }
438 
439 /**
440  * Restore the previous output configuration if and only if the current
441  * configuration is unlocked.
442  */
444 {
445  if (ac->oc[1].status != OC_LOCKED && ac->oc[0].status != OC_NONE) {
446  ac->oc[1] = ac->oc[0];
447  ac->avctx->ch_layout = ac->oc[1].ch_layout;
449  ac->oc[1].status, 0);
450  }
451 }
452 
453 /**
454  * Configure output channel order based on the current program
455  * configuration element.
456  *
457  * @return Returns error status. 0 - OK, !0 - error
458  */
460  uint8_t layout_map[MAX_ELEM_ID * 4][3], int tags,
461  enum OCStatus oc_type, int get_new_frame)
462 {
463  AVCodecContext *avctx = ac->avctx;
464  int i, channels = 0, ret;
465  uint64_t layout = 0;
466  uint8_t id_map[TYPE_END][MAX_ELEM_ID] = {{ 0 }};
467  uint8_t type_counts[TYPE_END] = { 0 };
468 
469  if (ac->oc[1].layout_map != layout_map) {
470  memcpy(ac->oc[1].layout_map, layout_map, tags * sizeof(layout_map[0]));
471  ac->oc[1].layout_map_tags = tags;
472  }
473  for (i = 0; i < tags; i++) {
474  int type = layout_map[i][0];
475  int id = layout_map[i][1];
476  id_map[type][id] = type_counts[type]++;
477  if (id_map[type][id] >= MAX_ELEM_ID) {
478  avpriv_request_sample(ac->avctx, "Too large remapped id");
479  return AVERROR_PATCHWELCOME;
480  }
481  }
482  // Try to sniff a reasonable channel order, otherwise output the
483  // channels in the order the PCE declared them.
485  layout = sniff_channel_order(layout_map, tags);
486  for (i = 0; i < tags; i++) {
487  int type = layout_map[i][0];
488  int id = layout_map[i][1];
489  int iid = id_map[type][id];
490  int position = layout_map[i][2];
491  // Allocate or free elements depending on if they are in the
492  // current program configuration.
493  ret = che_configure(ac, position, type, iid, &channels);
494  if (ret < 0)
495  return ret;
496  ac->tag_che_map[type][id] = ac->che[type][iid];
497  }
498  if (ac->oc[1].m4ac.ps == 1 && channels == 2) {
499  if (layout == AV_CH_FRONT_CENTER) {
501  } else {
502  layout = 0;
503  }
504  }
505 
507  if (layout)
509  else {
511  ac->oc[1].ch_layout.nb_channels = channels;
512  }
513 
514  av_channel_layout_copy(&avctx->ch_layout, &ac->oc[1].ch_layout);
515  ac->oc[1].status = oc_type;
516 
517  if (get_new_frame) {
518  if ((ret = frame_configure_elements(ac->avctx)) < 0)
519  return ret;
520  }
521 
522  return 0;
523 }
524 
525 static av_cold void flush(AVCodecContext *avctx)
526 {
527  AACDecContext *ac= avctx->priv_data;
528  int type, i, j;
529 
530  for (type = 3; type >= 0; type--) {
531  for (i = 0; i < MAX_ELEM_ID; i++) {
532  ChannelElement *che = ac->che[type][i];
533  if (che) {
534  for (j = 0; j <= 1; j++) {
535  memset(che->ch[j].saved, 0, sizeof(che->ch[j].saved));
536  }
537  }
538  }
539  }
540 
541  ff_aac_usac_reset_state(ac, &ac->oc[1]);
542 }
543 
544 /**
545  * Set up channel positions based on a default channel configuration
546  * as specified in table 1.17.
547  *
548  * @return Returns error status. 0 - OK, !0 - error
549  */
551  uint8_t (*layout_map)[3],
552  int *tags,
553  int channel_config)
554 {
555  if (channel_config < 1 || (channel_config > 7 && channel_config < 11) ||
556  channel_config > 14) {
557  av_log(avctx, AV_LOG_ERROR,
558  "invalid default channel configuration (%d)\n",
559  channel_config);
560  return AVERROR_INVALIDDATA;
561  }
562  *tags = ff_tags_per_config[channel_config];
563  memcpy(layout_map, ff_aac_channel_layout_map[channel_config - 1],
564  *tags * sizeof(*layout_map));
565 
566  /*
567  * AAC specification has 7.1(wide) as a default layout for 8-channel streams.
568  * However, at least Nero AAC encoder encodes 7.1 streams using the default
569  * channel config 7, mapping the side channels of the original audio stream
570  * to the second AAC_CHANNEL_FRONT pair in the AAC stream. Similarly, e.g. FAAD
571  * decodes the second AAC_CHANNEL_FRONT pair as side channels, therefore decoding
572  * the incorrect streams as if they were correct (and as the encoder intended).
573  *
574  * As actual intended 7.1(wide) streams are very rare, default to assuming a
575  * 7.1 layout was intended.
576  */
577  if (channel_config == 7 && avctx->strict_std_compliance < FF_COMPLIANCE_STRICT) {
578  layout_map[2][2] = AAC_CHANNEL_BACK;
579 
580  if (!ac || !ac->warned_71_wide++) {
581  av_log(avctx, AV_LOG_INFO, "Assuming an incorrectly encoded 7.1 channel layout"
582  " instead of a spec-compliant 7.1(wide) layout, use -strict %d to decode"
583  " according to the specification instead.\n", FF_COMPLIANCE_STRICT);
584  }
585  }
586 
587  return 0;
588 }
589 
591 {
592  /* For PCE based channel configurations map the channels solely based
593  * on tags. */
594  if (!ac->oc[1].m4ac.chan_config) {
595  return ac->tag_che_map[type][elem_id];
596  }
597  // Allow single CPE stereo files to be signalled with mono configuration.
598  if (!ac->tags_mapped && type == TYPE_CPE &&
599  ac->oc[1].m4ac.chan_config == 1) {
600  uint8_t layout_map[MAX_ELEM_ID*4][3];
601  int layout_map_tags;
603 
604  av_log(ac->avctx, AV_LOG_DEBUG, "mono with CPE\n");
605 
606  if (ff_aac_set_default_channel_config(ac, ac->avctx, layout_map,
607  &layout_map_tags, 2) < 0)
608  return NULL;
609  if (ff_aac_output_configure(ac, layout_map, layout_map_tags,
610  OC_TRIAL_FRAME, 1) < 0)
611  return NULL;
612 
613  ac->oc[1].m4ac.chan_config = 2;
614  ac->oc[1].m4ac.ps = 0;
615  }
616  // And vice-versa
617  if (!ac->tags_mapped && type == TYPE_SCE &&
618  ac->oc[1].m4ac.chan_config == 2) {
619  uint8_t layout_map[MAX_ELEM_ID * 4][3];
620  int layout_map_tags;
622 
623  av_log(ac->avctx, AV_LOG_DEBUG, "stereo with SCE\n");
624 
625  layout_map_tags = 2;
626  layout_map[0][0] = layout_map[1][0] = TYPE_SCE;
627  layout_map[0][2] = layout_map[1][2] = AAC_CHANNEL_FRONT;
628  layout_map[0][1] = 0;
629  layout_map[1][1] = 1;
630  if (ff_aac_output_configure(ac, layout_map, layout_map_tags,
631  OC_TRIAL_FRAME, 1) < 0)
632  return NULL;
633 
634  if (ac->oc[1].m4ac.sbr)
635  ac->oc[1].m4ac.ps = -1;
636  }
637  /* For indexed channel configurations map the channels solely based
638  * on position. */
639  switch (ac->oc[1].m4ac.chan_config) {
640  case 14:
641  if (ac->tags_mapped > 2 && ((type == TYPE_CPE && elem_id < 3) ||
642  (type == TYPE_LFE && elem_id < 1))) {
643  ac->tags_mapped++;
644  return ac->tag_che_map[type][elem_id] = ac->che[type][elem_id];
645  }
646  case 13:
647  if (ac->tags_mapped > 3 && ((type == TYPE_CPE && elem_id < 8) ||
648  (type == TYPE_SCE && elem_id < 6) ||
649  (type == TYPE_LFE && elem_id < 2))) {
650  ac->tags_mapped++;
651  return ac->tag_che_map[type][elem_id] = ac->che[type][elem_id];
652  }
653  case 12:
654  case 7:
655  if (ac->tags_mapped == 3 && type == TYPE_CPE) {
656  ac->tags_mapped++;
657  return ac->tag_che_map[TYPE_CPE][elem_id] = ac->che[TYPE_CPE][2];
658  }
659  case 11:
660  if (ac->tags_mapped == 3 && type == TYPE_SCE) {
661  ac->tags_mapped++;
662  return ac->tag_che_map[TYPE_SCE][elem_id] = ac->che[TYPE_SCE][1];
663  }
664  case 6:
665  /* Some streams incorrectly code 5.1 audio as
666  * SCE[0] CPE[0] CPE[1] SCE[1]
667  * instead of
668  * SCE[0] CPE[0] CPE[1] LFE[0].
669  * If we seem to have encountered such a stream, transfer
670  * the LFE[0] element to the SCE[1]'s mapping */
671  if (ac->tags_mapped == ff_tags_per_config[ac->oc[1].m4ac.chan_config] - 1 && (type == TYPE_LFE || type == TYPE_SCE)) {
672  if (!ac->warned_remapping_once && (type != TYPE_LFE || elem_id != 0)) {
674  "This stream seems to incorrectly report its last channel as %s[%d], mapping to LFE[0]\n",
675  type == TYPE_SCE ? "SCE" : "LFE", elem_id);
676  ac->warned_remapping_once++;
677  }
678  ac->tags_mapped++;
679  return ac->tag_che_map[type][elem_id] = ac->che[TYPE_LFE][0];
680  }
681  case 5:
682  if (ac->tags_mapped == 2 && type == TYPE_CPE) {
683  ac->tags_mapped++;
684  return ac->tag_che_map[TYPE_CPE][elem_id] = ac->che[TYPE_CPE][1];
685  }
686  case 4:
687  /* Some streams incorrectly code 4.0 audio as
688  * SCE[0] CPE[0] LFE[0]
689  * instead of
690  * SCE[0] CPE[0] SCE[1].
691  * If we seem to have encountered such a stream, transfer
692  * the SCE[1] element to the LFE[0]'s mapping */
693  if (ac->tags_mapped == ff_tags_per_config[ac->oc[1].m4ac.chan_config] - 1 && (type == TYPE_LFE || type == TYPE_SCE)) {
694  if (!ac->warned_remapping_once && (type != TYPE_SCE || elem_id != 1)) {
696  "This stream seems to incorrectly report its last channel as %s[%d], mapping to SCE[1]\n",
697  type == TYPE_SCE ? "SCE" : "LFE", elem_id);
698  ac->warned_remapping_once++;
699  }
700  ac->tags_mapped++;
701  return ac->tag_che_map[type][elem_id] = ac->che[TYPE_SCE][1];
702  }
703  if (ac->tags_mapped == 2 &&
704  ac->oc[1].m4ac.chan_config == 4 &&
705  type == TYPE_SCE) {
706  ac->tags_mapped++;
707  return ac->tag_che_map[TYPE_SCE][elem_id] = ac->che[TYPE_SCE][1];
708  }
709  case 3:
710  case 2:
711  if (ac->tags_mapped == (ac->oc[1].m4ac.chan_config != 2) &&
712  type == TYPE_CPE) {
713  ac->tags_mapped++;
714  return ac->tag_che_map[TYPE_CPE][elem_id] = ac->che[TYPE_CPE][0];
715  } else if (ac->tags_mapped == 1 && ac->oc[1].m4ac.chan_config == 2 &&
716  type == TYPE_SCE) {
717  ac->tags_mapped++;
718  return ac->tag_che_map[TYPE_SCE][elem_id] = ac->che[TYPE_SCE][1];
719  }
720  case 1:
721  if (!ac->tags_mapped && type == TYPE_SCE) {
722  ac->tags_mapped++;
723  return ac->tag_che_map[TYPE_SCE][elem_id] = ac->che[TYPE_SCE][0];
724  }
725  default:
726  return NULL;
727  }
728 }
729 
730 /**
731  * Decode an array of 4 bit element IDs, optionally interleaved with a
732  * stereo/mono switching bit.
733  *
734  * @param type speaker type/position for these channels
735  */
736 static void decode_channel_map(uint8_t layout_map[][3],
737  enum ChannelPosition type,
738  GetBitContext *gb, int n)
739 {
740  while (n--) {
742  switch (type) {
743  case AAC_CHANNEL_FRONT:
744  case AAC_CHANNEL_BACK:
745  case AAC_CHANNEL_SIDE:
746  syn_ele = get_bits1(gb);
747  break;
748  case AAC_CHANNEL_CC:
749  skip_bits1(gb);
750  syn_ele = TYPE_CCE;
751  break;
752  case AAC_CHANNEL_LFE:
753  syn_ele = TYPE_LFE;
754  break;
755  default:
756  // AAC_CHANNEL_OFF has no channel map
757  av_assert0(0);
758  }
759  layout_map[0][0] = syn_ele;
760  layout_map[0][1] = get_bits(gb, 4);
761  layout_map[0][2] = type;
762  layout_map++;
763  }
764 }
765 
766 static inline void relative_align_get_bits(GetBitContext *gb,
767  int reference_position) {
768  int n = (reference_position - get_bits_count(gb) & 7);
769  if (n)
770  skip_bits(gb, n);
771 }
772 
773 /**
774  * Decode program configuration element; reference: table 4.2.
775  *
776  * @return Returns error status. 0 - OK, !0 - error
777  */
778 static int decode_pce(AVCodecContext *avctx, MPEG4AudioConfig *m4ac,
779  uint8_t (*layout_map)[3],
780  GetBitContext *gb, int byte_align_ref)
781 {
782  int num_front, num_side, num_back, num_lfe, num_assoc_data, num_cc;
783  int sampling_index;
784  int comment_len;
785  int tags;
786 
787  skip_bits(gb, 2); // object_type
788 
789  sampling_index = get_bits(gb, 4);
790  if (m4ac->sampling_index != sampling_index)
791  av_log(avctx, AV_LOG_WARNING,
792  "Sample rate index in program config element does not "
793  "match the sample rate index configured by the container.\n");
794 
795  num_front = get_bits(gb, 4);
796  num_side = get_bits(gb, 4);
797  num_back = get_bits(gb, 4);
798  num_lfe = get_bits(gb, 2);
799  num_assoc_data = get_bits(gb, 3);
800  num_cc = get_bits(gb, 4);
801 
802  if (get_bits1(gb))
803  skip_bits(gb, 4); // mono_mixdown_tag
804  if (get_bits1(gb))
805  skip_bits(gb, 4); // stereo_mixdown_tag
806 
807  if (get_bits1(gb))
808  skip_bits(gb, 3); // mixdown_coeff_index and pseudo_surround
809 
810  if (get_bits_left(gb) < 5 * (num_front + num_side + num_back + num_cc) + 4 *(num_lfe + num_assoc_data + num_cc)) {
811  av_log(avctx, AV_LOG_ERROR, "decode_pce: " overread_err);
812  return -1;
813  }
814  decode_channel_map(layout_map , AAC_CHANNEL_FRONT, gb, num_front);
815  tags = num_front;
816  decode_channel_map(layout_map + tags, AAC_CHANNEL_SIDE, gb, num_side);
817  tags += num_side;
818  decode_channel_map(layout_map + tags, AAC_CHANNEL_BACK, gb, num_back);
819  tags += num_back;
820  decode_channel_map(layout_map + tags, AAC_CHANNEL_LFE, gb, num_lfe);
821  tags += num_lfe;
822 
823  skip_bits_long(gb, 4 * num_assoc_data);
824 
825  decode_channel_map(layout_map + tags, AAC_CHANNEL_CC, gb, num_cc);
826  tags += num_cc;
827 
828  relative_align_get_bits(gb, byte_align_ref);
829 
830  /* comment field, first byte is length */
831  comment_len = get_bits(gb, 8) * 8;
832  if (get_bits_left(gb) < comment_len) {
833  av_log(avctx, AV_LOG_ERROR, "decode_pce: " overread_err);
834  return AVERROR_INVALIDDATA;
835  }
836  skip_bits_long(gb, comment_len);
837  return tags;
838 }
839 
840 /**
841  * Decode GA "General Audio" specific configuration; reference: table 4.1.
842  *
843  * @param ac pointer to AACDecContext, may be null
844  * @param avctx pointer to AVCCodecContext, used for logging
845  *
846  * @return Returns error status. 0 - OK, !0 - error
847  */
849  GetBitContext *gb,
850  int get_bit_alignment,
851  MPEG4AudioConfig *m4ac,
852  int channel_config)
853 {
854  int extension_flag, ret, ep_config, res_flags;
855  uint8_t layout_map[MAX_ELEM_ID*4][3];
856  int tags = 0;
857 
858  m4ac->frame_length_short = get_bits1(gb);
859  if (m4ac->frame_length_short && m4ac->sbr == 1) {
860  avpriv_report_missing_feature(avctx, "SBR with 960 frame length");
861  if (ac) ac->warned_960_sbr = 1;
862  m4ac->sbr = 0;
863  m4ac->ps = 0;
864  }
865 
866  if (get_bits1(gb)) // dependsOnCoreCoder
867  skip_bits(gb, 14); // coreCoderDelay
868  extension_flag = get_bits1(gb);
869 
870  if (m4ac->object_type == AOT_AAC_SCALABLE ||
872  skip_bits(gb, 3); // layerNr
873 
874  if (channel_config == 0) {
875  skip_bits(gb, 4); // element_instance_tag
876  tags = decode_pce(avctx, m4ac, layout_map, gb, get_bit_alignment);
877  if (tags < 0)
878  return tags;
879  } else {
880  if ((ret = ff_aac_set_default_channel_config(ac, avctx, layout_map,
881  &tags, channel_config)))
882  return ret;
883  }
884 
885  if (count_channels(layout_map, tags) > 1) {
886  m4ac->ps = 0;
887  } else if (m4ac->sbr == 1 && m4ac->ps == -1)
888  m4ac->ps = 1;
889 
890  if (ac && (ret = ff_aac_output_configure(ac, layout_map, tags, OC_GLOBAL_HDR, 0)))
891  return ret;
892 
893  if (extension_flag) {
894  switch (m4ac->object_type) {
895  case AOT_ER_BSAC:
896  skip_bits(gb, 5); // numOfSubFrame
897  skip_bits(gb, 11); // layer_length
898  break;
899  case AOT_ER_AAC_LC:
900  case AOT_ER_AAC_LTP:
901  case AOT_ER_AAC_SCALABLE:
902  case AOT_ER_AAC_LD:
903  res_flags = get_bits(gb, 3);
904  if (res_flags) {
906  "AAC data resilience (flags %x)",
907  res_flags);
908  return AVERROR_PATCHWELCOME;
909  }
910  break;
911  }
912  skip_bits1(gb); // extensionFlag3 (TBD in version 3)
913  }
914  switch (m4ac->object_type) {
915  case AOT_ER_AAC_LC:
916  case AOT_ER_AAC_LTP:
917  case AOT_ER_AAC_SCALABLE:
918  case AOT_ER_AAC_LD:
919  ep_config = get_bits(gb, 2);
920  if (ep_config) {
922  "epConfig %d", ep_config);
923  return AVERROR_PATCHWELCOME;
924  }
925  }
926  return 0;
927 }
928 
930  GetBitContext *gb,
931  MPEG4AudioConfig *m4ac,
932  int channel_config)
933 {
934  int ret, ep_config, res_flags;
935  uint8_t layout_map[MAX_ELEM_ID*4][3];
936  int tags = 0;
937  const int ELDEXT_TERM = 0;
938 
939  m4ac->ps = 0;
940  m4ac->sbr = 0;
941  m4ac->frame_length_short = get_bits1(gb);
942 
943  res_flags = get_bits(gb, 3);
944  if (res_flags) {
946  "AAC data resilience (flags %x)",
947  res_flags);
948  return AVERROR_PATCHWELCOME;
949  }
950 
951  if (get_bits1(gb)) { // ldSbrPresentFlag
953  "Low Delay SBR");
954  return AVERROR_PATCHWELCOME;
955  }
956 
957  while (get_bits(gb, 4) != ELDEXT_TERM) {
958  int len = get_bits(gb, 4);
959  if (len == 15)
960  len += get_bits(gb, 8);
961  if (len == 15 + 255)
962  len += get_bits(gb, 16);
963  if (get_bits_left(gb) < len * 8 + 4) {
965  return AVERROR_INVALIDDATA;
966  }
967  skip_bits_long(gb, 8 * len);
968  }
969 
970  if ((ret = ff_aac_set_default_channel_config(ac, avctx, layout_map,
971  &tags, channel_config)))
972  return ret;
973 
974  if (ac && (ret = ff_aac_output_configure(ac, layout_map, tags, OC_GLOBAL_HDR, 0)))
975  return ret;
976 
977  ep_config = get_bits(gb, 2);
978  if (ep_config) {
980  "epConfig %d", ep_config);
981  return AVERROR_PATCHWELCOME;
982  }
983  return 0;
984 }
985 
986 /**
987  * Decode audio specific configuration; reference: table 1.13.
988  *
989  * @param ac pointer to AACDecContext, may be null
990  * @param avctx pointer to AVCCodecContext, used for logging
991  * @param m4ac pointer to MPEG4AudioConfig, used for parsing
992  * @param gb buffer holding an audio specific config
993  * @param get_bit_alignment relative alignment for byte align operations
994  * @param sync_extension look for an appended sync extension
995  *
996  * @return Returns error status or number of consumed bits. <0 - error
997  */
999  AVCodecContext *avctx,
1000  OutputConfiguration *oc,
1001  GetBitContext *gb,
1002  int get_bit_alignment,
1003  int sync_extension)
1004 {
1005  int i, ret;
1006  GetBitContext gbc = *gb;
1007  MPEG4AudioConfig *m4ac = &oc->m4ac;
1008  MPEG4AudioConfig m4ac_bak = *m4ac;
1009 
1010  if ((i = ff_mpeg4audio_get_config_gb(m4ac, &gbc, sync_extension, avctx)) < 0) {
1011  *m4ac = m4ac_bak;
1012  return AVERROR_INVALIDDATA;
1013  }
1014 
1015  if (m4ac->sampling_index > 12) {
1016  av_log(avctx, AV_LOG_ERROR,
1017  "invalid sampling rate index %d\n",
1018  m4ac->sampling_index);
1019  *m4ac = m4ac_bak;
1020  return AVERROR_INVALIDDATA;
1021  }
1022  if (m4ac->object_type == AOT_ER_AAC_LD &&
1023  (m4ac->sampling_index < 3 || m4ac->sampling_index > 7)) {
1024  av_log(avctx, AV_LOG_ERROR,
1025  "invalid low delay sampling rate index %d\n",
1026  m4ac->sampling_index);
1027  *m4ac = m4ac_bak;
1028  return AVERROR_INVALIDDATA;
1029  }
1030 
1031  skip_bits_long(gb, i);
1032 
1033  switch (m4ac->object_type) {
1034  case AOT_AAC_MAIN:
1035  case AOT_AAC_LC:
1036  case AOT_AAC_SSR:
1037  case AOT_AAC_LTP:
1038  case AOT_ER_AAC_LC:
1039  case AOT_ER_AAC_LD:
1040  if ((ret = decode_ga_specific_config(ac, avctx, gb, get_bit_alignment,
1041  &oc->m4ac, m4ac->chan_config)) < 0)
1042  return ret;
1043  break;
1044  case AOT_ER_AAC_ELD:
1045  if ((ret = decode_eld_specific_config(ac, avctx, gb,
1046  &oc->m4ac, m4ac->chan_config)) < 0)
1047  return ret;
1048  break;
1049 #if CONFIG_AAC_DECODER
1050  case AOT_USAC:
1051  if ((ret = ff_aac_usac_config_decode(ac, avctx, gb,
1052  oc, m4ac->chan_config)) < 0)
1053  return ret;
1054  break;
1055 #endif
1056  default:
1058  "Audio object type %s%d",
1059  m4ac->sbr == 1 ? "SBR+" : "",
1060  m4ac->object_type);
1061  return AVERROR(ENOSYS);
1062  }
1063 
1064  ff_dlog(avctx,
1065  "AOT %d chan config %d sampling index %d (%d) SBR %d PS %d\n",
1066  m4ac->object_type, m4ac->chan_config, m4ac->sampling_index,
1067  m4ac->sample_rate, m4ac->sbr,
1068  m4ac->ps);
1069 
1070  return get_bits_count(gb);
1071 }
1072 
1074  AVCodecContext *avctx,
1075  OutputConfiguration *oc,
1076  const uint8_t *data, int64_t bit_size,
1077  int sync_extension)
1078 {
1079  int i, ret;
1080  GetBitContext gb;
1081 
1082  if (bit_size < 0 || bit_size > INT_MAX) {
1083  av_log(avctx, AV_LOG_ERROR, "Audio specific config size is invalid\n");
1084  return AVERROR_INVALIDDATA;
1085  }
1086 
1087  ff_dlog(avctx, "audio specific config size %d\n", (int)bit_size >> 3);
1088  for (i = 0; i < bit_size >> 3; i++)
1089  ff_dlog(avctx, "%02x ", data[i]);
1090  ff_dlog(avctx, "\n");
1091 
1092  if ((ret = init_get_bits(&gb, data, bit_size)) < 0)
1093  return ret;
1094 
1095  return decode_audio_specific_config_gb(ac, avctx, oc, &gb, 0,
1096  sync_extension);
1097 }
1098 
1100 {
1101  AACDecContext *ac = avctx->priv_data;
1102 
1103  for (int i = 0; i < 2; i++) {
1104  OutputConfiguration *oc = &ac->oc[i];
1105  AACUSACConfig *usac = &oc->usac;
1106  for (int j = 0; j < usac->nb_elems; j++) {
1107  AACUsacElemConfig *ec = &usac->elems[i];
1108  av_freep(&ec->ext.pl_data);
1109  }
1110  }
1111 
1112  for (int type = 0; type < FF_ARRAY_ELEMS(ac->che); type++) {
1113  for (int i = 0; i < MAX_ELEM_ID; i++) {
1114  if (ac->che[type][i]) {
1115  ac->proc.sbr_ctx_close(ac->che[type][i]);
1116  av_freep(&ac->che[type][i]);
1117  }
1118  }
1119  }
1120 
1121  av_tx_uninit(&ac->mdct96);
1122  av_tx_uninit(&ac->mdct120);
1123  av_tx_uninit(&ac->mdct128);
1124  av_tx_uninit(&ac->mdct480);
1125  av_tx_uninit(&ac->mdct512);
1126  av_tx_uninit(&ac->mdct768);
1127  av_tx_uninit(&ac->mdct960);
1128  av_tx_uninit(&ac->mdct1024);
1129  av_tx_uninit(&ac->mdct_ltp);
1130 
1131  // Compiler will optimize this branch away.
1132  if (ac->is_fixed)
1133  av_freep(&ac->RENAME_FIXED(fdsp));
1134  else
1135  av_freep(&ac->fdsp);
1136 
1137  return 0;
1138 }
1139 
1140 static av_cold int init_dsp(AVCodecContext *avctx)
1141 {
1142  AACDecContext *ac = avctx->priv_data;
1143  int is_fixed = ac->is_fixed, ret;
1144  float scale_fixed, scale_float;
1145  const float *const scalep = is_fixed ? &scale_fixed : &scale_float;
1146  enum AVTXType tx_type = is_fixed ? AV_TX_INT32_MDCT : AV_TX_FLOAT_MDCT;
1147 
1148 #define MDCT_INIT(s, fn, len, sval) \
1149  scale_fixed = (sval) * 128.0f; \
1150  scale_float = (sval) / 32768.0f; \
1151  ret = av_tx_init(&s, &fn, tx_type, 1, len, scalep, 0); \
1152  if (ret < 0) \
1153  return ret
1154 
1155  MDCT_INIT(ac->mdct96, ac->mdct96_fn, 96, 1.0/96);
1156  MDCT_INIT(ac->mdct120, ac->mdct120_fn, 120, 1.0/120);
1157  MDCT_INIT(ac->mdct128, ac->mdct128_fn, 128, 1.0/128);
1158  MDCT_INIT(ac->mdct480, ac->mdct480_fn, 480, 1.0/480);
1159  MDCT_INIT(ac->mdct512, ac->mdct512_fn, 512, 1.0/512);
1160  MDCT_INIT(ac->mdct768, ac->mdct768_fn, 768, 1.0/768);
1161  MDCT_INIT(ac->mdct960, ac->mdct960_fn, 960, 1.0/960);
1162  MDCT_INIT(ac->mdct1024, ac->mdct1024_fn, 1024, 1.0/1024);
1163 #undef MDCT_INIT
1164 
1165  /* LTP forward MDCT */
1166  scale_fixed = -1.0;
1167  scale_float = -32786.0*2 + 36;
1168  ret = av_tx_init(&ac->mdct_ltp, &ac->mdct_ltp_fn, tx_type, 0, 1024, scalep, 0);
1169  if (ret < 0)
1170  return ret;
1171 
1172  return 0;
1173 }
1174 
1176 {
1177  AACDecContext *ac = avctx->priv_data;
1178  int ret;
1179 
1180  if (avctx->sample_rate > 96000)
1181  return AVERROR_INVALIDDATA;
1182 
1184 
1185  ac->avctx = avctx;
1186  ac->oc[1].m4ac.sample_rate = avctx->sample_rate;
1187 
1188  if (avctx->extradata_size > 0) {
1189  if ((ret = decode_audio_specific_config(ac, ac->avctx, &ac->oc[1],
1190  avctx->extradata,
1191  avctx->extradata_size * 8LL,
1192  1)) < 0)
1193  return ret;
1194  } else {
1195  int sr, i;
1196  uint8_t layout_map[MAX_ELEM_ID*4][3];
1197  int layout_map_tags;
1198 
1199  sr = ff_aac_sample_rate_idx(avctx->sample_rate);
1200  ac->oc[1].m4ac.sampling_index = sr;
1201  ac->oc[1].m4ac.channels = avctx->ch_layout.nb_channels;
1202  ac->oc[1].m4ac.sbr = -1;
1203  ac->oc[1].m4ac.ps = -1;
1204 
1205  for (i = 0; i < FF_ARRAY_ELEMS(ff_mpeg4audio_channels); i++)
1207  break;
1209  i = 0;
1210  }
1211  ac->oc[1].m4ac.chan_config = i;
1212 
1213  if (ac->oc[1].m4ac.chan_config) {
1214  int ret = ff_aac_set_default_channel_config(ac, avctx, layout_map,
1215  &layout_map_tags,
1216  ac->oc[1].m4ac.chan_config);
1217  if (!ret)
1218  ff_aac_output_configure(ac, layout_map, layout_map_tags,
1219  OC_GLOBAL_HDR, 0);
1220  else if (avctx->err_recognition & AV_EF_EXPLODE)
1221  return AVERROR_INVALIDDATA;
1222  }
1223  }
1224 
1225  if (avctx->ch_layout.nb_channels > MAX_CHANNELS) {
1226  av_log(avctx, AV_LOG_ERROR, "Too many channels\n");
1227  return AVERROR_INVALIDDATA;
1228  }
1229 
1230  ac->random_state = 0x1f2e3d4c;
1231 
1232  return init_dsp(avctx);
1233 }
1234 
1235 /**
1236  * Skip data_stream_element; reference: table 4.10.
1237  */
1239 {
1240  int byte_align = get_bits1(gb);
1241  int count = get_bits(gb, 8);
1242  if (count == 255)
1243  count += get_bits(gb, 8);
1244  if (byte_align)
1245  align_get_bits(gb);
1246 
1247  if (get_bits_left(gb) < 8 * count) {
1248  av_log(ac->avctx, AV_LOG_ERROR, "skip_data_stream_element: "overread_err);
1249  return AVERROR_INVALIDDATA;
1250  }
1251  skip_bits_long(gb, 8 * count);
1252  return 0;
1253 }
1254 
1256  GetBitContext *gb)
1257 {
1258  int sfb;
1259  if (get_bits1(gb)) {
1260  ics->predictor_reset_group = get_bits(gb, 5);
1261  if (ics->predictor_reset_group == 0 ||
1262  ics->predictor_reset_group > 30) {
1263  av_log(ac->avctx, AV_LOG_ERROR,
1264  "Invalid Predictor Reset Group.\n");
1265  return AVERROR_INVALIDDATA;
1266  }
1267  }
1268  for (sfb = 0; sfb < FFMIN(ics->max_sfb, ff_aac_pred_sfb_max[ac->oc[1].m4ac.sampling_index]); sfb++) {
1269  ics->prediction_used[sfb] = get_bits1(gb);
1270  }
1271  return 0;
1272 }
1273 
1274 /**
1275  * Decode Long Term Prediction data; reference: table 4.xx.
1276  */
1278  GetBitContext *gb, uint8_t max_sfb)
1279 {
1280  int sfb;
1281 
1282  ltp->lag = get_bits(gb, 11);
1283  if (CONFIG_AAC_FIXED_DECODER && ac->is_fixed)
1284  ltp->coef_fixed = Q30(ff_ltp_coef[get_bits(gb, 3)]);
1285  else if (CONFIG_AAC_DECODER)
1286  ltp->coef = ff_ltp_coef[get_bits(gb, 3)];
1287 
1288  for (sfb = 0; sfb < FFMIN(max_sfb, MAX_LTP_LONG_SFB); sfb++)
1289  ltp->used[sfb] = get_bits1(gb);
1290 }
1291 
1292 /**
1293  * Decode Individual Channel Stream info; reference: table 4.6.
1294  */
1296  GetBitContext *gb)
1297 {
1298  const MPEG4AudioConfig *const m4ac = &ac->oc[1].m4ac;
1299  const int aot = m4ac->object_type;
1300  const int sampling_index = m4ac->sampling_index;
1301  int ret_fail = AVERROR_INVALIDDATA;
1302 
1303  if (aot != AOT_ER_AAC_ELD) {
1304  if (get_bits1(gb)) {
1305  av_log(ac->avctx, AV_LOG_ERROR, "Reserved bit set.\n");
1307  return AVERROR_INVALIDDATA;
1308  }
1309  ics->window_sequence[1] = ics->window_sequence[0];
1310  ics->window_sequence[0] = get_bits(gb, 2);
1311  if (aot == AOT_ER_AAC_LD &&
1312  ics->window_sequence[0] != ONLY_LONG_SEQUENCE) {
1313  av_log(ac->avctx, AV_LOG_ERROR,
1314  "AAC LD is only defined for ONLY_LONG_SEQUENCE but "
1315  "window sequence %d found.\n", ics->window_sequence[0]);
1317  return AVERROR_INVALIDDATA;
1318  }
1319  ics->use_kb_window[1] = ics->use_kb_window[0];
1320  ics->use_kb_window[0] = get_bits1(gb);
1321  }
1323  ics->num_window_groups = 1;
1324  ics->group_len[0] = 1;
1325  if (ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE) {
1326  int i;
1327  ics->max_sfb = get_bits(gb, 4);
1328  for (i = 0; i < 7; i++) {
1329  if (get_bits1(gb)) {
1330  ics->group_len[ics->num_window_groups - 1]++;
1331  } else {
1332  ics->num_window_groups++;
1333  ics->group_len[ics->num_window_groups - 1] = 1;
1334  }
1335  }
1336  ics->num_windows = 8;
1337  if (m4ac->frame_length_short) {
1338  ics->swb_offset = ff_swb_offset_120[sampling_index];
1339  ics->num_swb = ff_aac_num_swb_120[sampling_index];
1340  } else {
1341  ics->swb_offset = ff_swb_offset_128[sampling_index];
1342  ics->num_swb = ff_aac_num_swb_128[sampling_index];
1343  }
1344  ics->tns_max_bands = ff_tns_max_bands_128[sampling_index];
1345  ics->predictor_present = 0;
1346  } else {
1347  ics->max_sfb = get_bits(gb, 6);
1348  ics->num_windows = 1;
1349  if (aot == AOT_ER_AAC_LD || aot == AOT_ER_AAC_ELD) {
1350  if (m4ac->frame_length_short) {
1351  ics->swb_offset = ff_swb_offset_480[sampling_index];
1352  ics->num_swb = ff_aac_num_swb_480[sampling_index];
1353  ics->tns_max_bands = ff_tns_max_bands_480[sampling_index];
1354  } else {
1355  ics->swb_offset = ff_swb_offset_512[sampling_index];
1356  ics->num_swb = ff_aac_num_swb_512[sampling_index];
1357  ics->tns_max_bands = ff_tns_max_bands_512[sampling_index];
1358  }
1359  if (!ics->num_swb || !ics->swb_offset) {
1360  ret_fail = AVERROR_BUG;
1361  goto fail;
1362  }
1363  } else {
1364  if (m4ac->frame_length_short) {
1365  ics->num_swb = ff_aac_num_swb_960[sampling_index];
1366  ics->swb_offset = ff_swb_offset_960[sampling_index];
1367  } else {
1368  ics->num_swb = ff_aac_num_swb_1024[sampling_index];
1369  ics->swb_offset = ff_swb_offset_1024[sampling_index];
1370  }
1371  ics->tns_max_bands = ff_tns_max_bands_1024[sampling_index];
1372  }
1373  if (aot != AOT_ER_AAC_ELD) {
1374  ics->predictor_present = get_bits1(gb);
1375  ics->predictor_reset_group = 0;
1376  }
1377  if (ics->predictor_present) {
1378  if (aot == AOT_AAC_MAIN) {
1379  if (decode_prediction(ac, ics, gb)) {
1380  goto fail;
1381  }
1382  } else if (aot == AOT_AAC_LC ||
1383  aot == AOT_ER_AAC_LC) {
1384  av_log(ac->avctx, AV_LOG_ERROR,
1385  "Prediction is not allowed in AAC-LC.\n");
1386  goto fail;
1387  } else {
1388  if (aot == AOT_ER_AAC_LD) {
1389  av_log(ac->avctx, AV_LOG_ERROR,
1390  "LTP in ER AAC LD not yet implemented.\n");
1391  ret_fail = AVERROR_PATCHWELCOME;
1392  goto fail;
1393  }
1394  if ((ics->ltp.present = get_bits(gb, 1)))
1395  decode_ltp(ac, &ics->ltp, gb, ics->max_sfb);
1396  }
1397  }
1398  }
1399 
1400  if (ics->max_sfb > ics->num_swb) {
1401  av_log(ac->avctx, AV_LOG_ERROR,
1402  "Number of scalefactor bands in group (%d) "
1403  "exceeds limit (%d).\n",
1404  ics->max_sfb, ics->num_swb);
1405  goto fail;
1406  }
1407 
1408  return 0;
1409 fail:
1410  ics->max_sfb = 0;
1411  return ret_fail;
1412 }
1413 
1414 /**
1415  * Decode band types (section_data payload); reference: table 4.46.
1416  *
1417  * @param band_type array of the used band type
1418  * @param band_type_run_end array of the last scalefactor band of a band type run
1419  *
1420  * @return Returns error status. 0 - OK, !0 - error
1421  */
1423  GetBitContext *gb)
1424 {
1425  IndividualChannelStream *ics = &sce->ics;
1426  const int bits = (ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE) ? 3 : 5;
1427 
1428  for (int g = 0; g < ics->num_window_groups; g++) {
1429  int k = 0;
1430  while (k < ics->max_sfb) {
1431  uint8_t sect_end = k;
1432  int sect_len_incr;
1433  int sect_band_type = get_bits(gb, 4);
1434  if (sect_band_type == 12) {
1435  av_log(ac->avctx, AV_LOG_ERROR, "invalid band type\n");
1436  return AVERROR_INVALIDDATA;
1437  }
1438  do {
1439  sect_len_incr = get_bits(gb, bits);
1440  sect_end += sect_len_incr;
1441  if (get_bits_left(gb) < 0) {
1442  av_log(ac->avctx, AV_LOG_ERROR, "decode_band_types: "overread_err);
1443  return AVERROR_INVALIDDATA;
1444  }
1445  if (sect_end > ics->max_sfb) {
1446  av_log(ac->avctx, AV_LOG_ERROR,
1447  "Number of bands (%d) exceeds limit (%d).\n",
1448  sect_end, ics->max_sfb);
1449  return AVERROR_INVALIDDATA;
1450  }
1451  } while (sect_len_incr == (1 << bits) - 1);
1452  for (; k < sect_end; k++)
1453  sce->band_type[g*ics->max_sfb + k] = sect_band_type;
1454  }
1455  }
1456  return 0;
1457 }
1458 
1459 /**
1460  * Decode scalefactors; reference: table 4.47.
1461  *
1462  * @param global_gain first scalefactor value as scalefactors are differentially coded
1463  * @param band_type array of the used band type
1464  * @param band_type_run_end array of the last scalefactor band of a band type run
1465  * @param sf array of scalefactors or intensity stereo positions
1466  *
1467  * @return Returns error status. 0 - OK, !0 - error
1468  */
1470  GetBitContext *gb, unsigned int global_gain)
1471 {
1472  IndividualChannelStream *ics = &sce->ics;
1473  int offset[3] = { global_gain, global_gain - NOISE_OFFSET, 0 };
1474  int clipped_offset;
1475  int noise_flag = 1;
1476 
1477  for (int g = 0; g < ics->num_window_groups; g++) {
1478  for (int sfb = 0; sfb < ics->max_sfb; sfb++) {
1479  switch (sce->band_type[g*ics->max_sfb + sfb]) {
1480  case ZERO_BT:
1481  sce->sfo[g*ics->max_sfb + sfb] = 0;
1482  break;
1483  case INTENSITY_BT: /* fallthrough */
1484  case INTENSITY_BT2:
1486  clipped_offset = av_clip(offset[2], -155, 100);
1487  if (offset[2] != clipped_offset) {
1489  "If you heard an audible artifact, there may be a bug in the decoder. "
1490  "Clipped intensity stereo position (%d -> %d)",
1491  offset[2], clipped_offset);
1492  }
1493  sce->sfo[g*ics->max_sfb + sfb] = clipped_offset - 100;
1494  break;
1495  case NOISE_BT:
1496  if (noise_flag-- > 0)
1497  offset[1] += get_bits(gb, NOISE_PRE_BITS) - NOISE_PRE;
1498  else
1500  clipped_offset = av_clip(offset[1], -100, 155);
1501  if (offset[1] != clipped_offset) {
1503  "If you heard an audible artifact, there may be a bug in the decoder. "
1504  "Clipped noise gain (%d -> %d)",
1505  offset[1], clipped_offset);
1506  }
1507  sce->sfo[g*ics->max_sfb + sfb] = clipped_offset;
1508  break;
1509  default:
1511  if (offset[0] > 255U) {
1512  av_log(ac->avctx, AV_LOG_ERROR,
1513  "Scalefactor (%d) out of range.\n", offset[0]);
1514  return AVERROR_INVALIDDATA;
1515  }
1516  sce->sfo[g*ics->max_sfb + sfb] = offset[0] - 100;
1517  break;
1518  }
1519  }
1520  }
1521 
1522  return 0;
1523 }
1524 
1525 /**
1526  * Decode pulse data; reference: table 4.7.
1527  */
1528 static int decode_pulses(Pulse *pulse, GetBitContext *gb,
1529  const uint16_t *swb_offset, int num_swb)
1530 {
1531  int i, pulse_swb;
1532  pulse->num_pulse = get_bits(gb, 2) + 1;
1533  pulse_swb = get_bits(gb, 6);
1534  if (pulse_swb >= num_swb)
1535  return -1;
1536  pulse->pos[0] = swb_offset[pulse_swb];
1537  pulse->pos[0] += get_bits(gb, 5);
1538  if (pulse->pos[0] >= swb_offset[num_swb])
1539  return -1;
1540  pulse->amp[0] = get_bits(gb, 4);
1541  for (i = 1; i < pulse->num_pulse; i++) {
1542  pulse->pos[i] = get_bits(gb, 5) + pulse->pos[i - 1];
1543  if (pulse->pos[i] >= swb_offset[num_swb])
1544  return -1;
1545  pulse->amp[i] = get_bits(gb, 4);
1546  }
1547  return 0;
1548 }
1549 
1550 /**
1551  * Decode Temporal Noise Shaping data; reference: table 4.48.
1552  *
1553  * @return Returns error status. 0 - OK, !0 - error
1554  */
1556  GetBitContext *gb, const IndividualChannelStream *ics)
1557 {
1558  int tns_max_order = INT32_MAX;
1559  const int is_usac = ac->oc[1].m4ac.object_type == AOT_USAC;
1560  int w, filt, i, coef_len, coef_res, coef_compress;
1561  const int is8 = ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE;
1562 
1563  /* USAC doesn't seem to have a limit */
1564  if (!is_usac)
1565  tns_max_order = is8 ? 7 : ac->oc[1].m4ac.object_type == AOT_AAC_MAIN ? 20 : 12;
1566 
1567  for (w = 0; w < ics->num_windows; w++) {
1568  if ((tns->n_filt[w] = get_bits(gb, 2 - is8))) {
1569  coef_res = get_bits1(gb);
1570 
1571  for (filt = 0; filt < tns->n_filt[w]; filt++) {
1572  int tmp2_idx;
1573  tns->length[w][filt] = get_bits(gb, 6 - 2 * is8);
1574 
1575  if (is_usac)
1576  tns->order[w][filt] = get_bits(gb, 4 - is8);
1577  else
1578  tns->order[w][filt] = get_bits(gb, 5 - (2 * is8));
1579 
1580  if (tns->order[w][filt] > tns_max_order) {
1581  av_log(ac->avctx, AV_LOG_ERROR,
1582  "TNS filter order %d is greater than maximum %d.\n",
1583  tns->order[w][filt], tns_max_order);
1584  tns->order[w][filt] = 0;
1585  return AVERROR_INVALIDDATA;
1586  }
1587  if (tns->order[w][filt]) {
1588  tns->direction[w][filt] = get_bits1(gb);
1589  coef_compress = get_bits1(gb);
1590  coef_len = coef_res + 3 - coef_compress;
1591  tmp2_idx = 2 * coef_compress + coef_res;
1592 
1593  for (i = 0; i < tns->order[w][filt]; i++) {
1594  if (CONFIG_AAC_FIXED_DECODER && ac->is_fixed)
1595  tns->coef_fixed[w][filt][i] = Q31(ff_tns_tmp2_map[tmp2_idx][get_bits(gb, coef_len)]);
1596  else if (CONFIG_AAC_DECODER)
1597  tns->coef[w][filt][i] = ff_tns_tmp2_map[tmp2_idx][get_bits(gb, coef_len)];
1598  }
1599  }
1600  }
1601  }
1602  }
1603  return 0;
1604 }
1605 
1606 /**
1607  * Decode Mid/Side data; reference: table 4.54.
1608  *
1609  * @param ms_present Indicates mid/side stereo presence. [0] mask is all 0s;
1610  * [1] mask is decoded from bitstream; [2] mask is all 1s;
1611  * [3] reserved for scalable AAC
1612  */
1614  int ms_present)
1615 {
1616  int idx;
1617  int max_idx = cpe->ch[0].ics.num_window_groups * cpe->ch[0].ics.max_sfb;
1618  cpe->max_sfb_ste = cpe->ch[0].ics.max_sfb;
1619  if (ms_present == 1) {
1620  for (idx = 0; idx < max_idx; idx++)
1621  cpe->ms_mask[idx] = get_bits1(gb);
1622  } else if (ms_present == 2) {
1623  memset(cpe->ms_mask, 1, max_idx * sizeof(cpe->ms_mask[0]));
1624  }
1625 }
1626 
1628 {
1629  // wd_num, wd_test, aloc_size
1630  static const uint8_t gain_mode[4][3] = {
1631  {1, 0, 5}, // ONLY_LONG_SEQUENCE = 0,
1632  {2, 1, 2}, // LONG_START_SEQUENCE,
1633  {8, 0, 2}, // EIGHT_SHORT_SEQUENCE,
1634  {2, 1, 5}, // LONG_STOP_SEQUENCE
1635  };
1636 
1637  const int mode = sce->ics.window_sequence[0];
1638  uint8_t bd, wd, ad;
1639 
1640  // FIXME: Store the gain control data on |sce| and do something with it.
1641  uint8_t max_band = get_bits(gb, 2);
1642  for (bd = 0; bd < max_band; bd++) {
1643  for (wd = 0; wd < gain_mode[mode][0]; wd++) {
1644  uint8_t adjust_num = get_bits(gb, 3);
1645  for (ad = 0; ad < adjust_num; ad++) {
1646  skip_bits(gb, 4 + ((wd == 0 && gain_mode[mode][1])
1647  ? 4
1648  : gain_mode[mode][2]));
1649  }
1650  }
1651  }
1652 }
1653 
1654 /**
1655  * Decode an individual_channel_stream payload; reference: table 4.44.
1656  *
1657  * @param common_window Channels have independent [0], or shared [1], Individual Channel Stream information.
1658  * @param scale_flag scalable [1] or non-scalable [0] AAC (Unused until scalable AAC is implemented.)
1659  *
1660  * @return Returns error status. 0 - OK, !0 - error
1661  */
1663  GetBitContext *gb, int common_window, int scale_flag)
1664 {
1665  Pulse pulse;
1666  TemporalNoiseShaping *tns = &sce->tns;
1667  IndividualChannelStream *ics = &sce->ics;
1668  int global_gain, eld_syntax, er_syntax, pulse_present = 0;
1669  int ret;
1670 
1671  eld_syntax = ac->oc[1].m4ac.object_type == AOT_ER_AAC_ELD;
1672  er_syntax = ac->oc[1].m4ac.object_type == AOT_ER_AAC_LC ||
1673  ac->oc[1].m4ac.object_type == AOT_ER_AAC_LTP ||
1674  ac->oc[1].m4ac.object_type == AOT_ER_AAC_LD ||
1675  ac->oc[1].m4ac.object_type == AOT_ER_AAC_ELD;
1676 
1677  /* This assignment is to silence a GCC warning about the variable being used
1678  * uninitialized when in fact it always is.
1679  */
1680  pulse.num_pulse = 0;
1681 
1682  global_gain = get_bits(gb, 8);
1683 
1684  if (!common_window && !scale_flag) {
1685  ret = decode_ics_info(ac, ics, gb);
1686  if (ret < 0)
1687  goto fail;
1688  }
1689 
1690  if ((ret = decode_band_types(ac, sce, gb)) < 0)
1691  goto fail;
1692  if ((ret = decode_scalefactors(ac, sce, gb, global_gain)) < 0)
1693  goto fail;
1694 
1695  ac->dsp.dequant_scalefactors(sce);
1696 
1697  pulse_present = 0;
1698  if (!scale_flag) {
1699  if (!eld_syntax && (pulse_present = get_bits1(gb))) {
1700  if (ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE) {
1701  av_log(ac->avctx, AV_LOG_ERROR,
1702  "Pulse tool not allowed in eight short sequence.\n");
1704  goto fail;
1705  }
1706  if (decode_pulses(&pulse, gb, ics->swb_offset, ics->num_swb)) {
1707  av_log(ac->avctx, AV_LOG_ERROR,
1708  "Pulse data corrupt or invalid.\n");
1710  goto fail;
1711  }
1712  }
1713  tns->present = get_bits1(gb);
1714  if (tns->present && !er_syntax) {
1715  ret = ff_aac_decode_tns(ac, tns, gb, ics);
1716  if (ret < 0)
1717  goto fail;
1718  }
1719  if (!eld_syntax && get_bits1(gb)) {
1720  decode_gain_control(sce, gb);
1721  if (!ac->warned_gain_control) {
1722  avpriv_report_missing_feature(ac->avctx, "Gain control");
1723  ac->warned_gain_control = 1;
1724  }
1725  }
1726  // I see no textual basis in the spec for this occurring after SSR gain
1727  // control, but this is what both reference and real implmentations do
1728  if (tns->present && er_syntax) {
1729  ret = ff_aac_decode_tns(ac, tns, gb, ics);
1730  if (ret < 0)
1731  goto fail;
1732  }
1733  }
1734 
1735  ret = ac->proc.decode_spectrum_and_dequant(ac, gb,
1736  pulse_present ? &pulse : NULL,
1737  sce);
1738  if (ret < 0)
1739  goto fail;
1740 
1741  if (ac->oc[1].m4ac.object_type == AOT_AAC_MAIN && !common_window)
1742  ac->dsp.apply_prediction(ac, sce);
1743 
1744  return 0;
1745 fail:
1746  tns->present = 0;
1747  return ret;
1748 }
1749 
1750 /**
1751  * Decode a channel_pair_element; reference: table 4.4.
1752  *
1753  * @return Returns error status. 0 - OK, !0 - error
1754  */
1756 {
1757  int i, ret, common_window, ms_present = 0;
1758  int eld_syntax = ac->oc[1].m4ac.object_type == AOT_ER_AAC_ELD;
1759 
1760  common_window = eld_syntax || get_bits1(gb);
1761  if (common_window) {
1762  if (decode_ics_info(ac, &cpe->ch[0].ics, gb))
1763  return AVERROR_INVALIDDATA;
1764  i = cpe->ch[1].ics.use_kb_window[0];
1765  cpe->ch[1].ics = cpe->ch[0].ics;
1766  cpe->ch[1].ics.use_kb_window[1] = i;
1767  if (cpe->ch[1].ics.predictor_present &&
1768  (ac->oc[1].m4ac.object_type != AOT_AAC_MAIN))
1769  if ((cpe->ch[1].ics.ltp.present = get_bits(gb, 1)))
1770  decode_ltp(ac, &cpe->ch[1].ics.ltp, gb, cpe->ch[1].ics.max_sfb);
1771  ms_present = get_bits(gb, 2);
1772  if (ms_present == 3) {
1773  av_log(ac->avctx, AV_LOG_ERROR, "ms_present = 3 is reserved.\n");
1774  return AVERROR_INVALIDDATA;
1775  } else if (ms_present)
1776  decode_mid_side_stereo(cpe, gb, ms_present);
1777  }
1778  if ((ret = ff_aac_decode_ics(ac, &cpe->ch[0], gb, common_window, 0)))
1779  return ret;
1780  if ((ret = ff_aac_decode_ics(ac, &cpe->ch[1], gb, common_window, 0)))
1781  return ret;
1782 
1783  if (common_window) {
1784  if (ms_present)
1785  ac->dsp.apply_mid_side_stereo(ac, cpe);
1786  if (ac->oc[1].m4ac.object_type == AOT_AAC_MAIN) {
1787  ac->dsp.apply_prediction(ac, &cpe->ch[0]);
1788  ac->dsp.apply_prediction(ac, &cpe->ch[1]);
1789  }
1790  }
1791 
1792  ac->dsp.apply_intensity_stereo(ac, cpe, ms_present);
1793  return 0;
1794 }
1795 
1796 /**
1797  * Parse whether channels are to be excluded from Dynamic Range Compression; reference: table 4.53.
1798  *
1799  * @return Returns number of bytes consumed.
1800  */
1802  GetBitContext *gb)
1803 {
1804  int i;
1805  int num_excl_chan = 0;
1806 
1807  do {
1808  for (i = 0; i < 7; i++)
1809  che_drc->exclude_mask[num_excl_chan++] = get_bits1(gb);
1810  } while (num_excl_chan < MAX_CHANNELS - 7 && get_bits1(gb));
1811 
1812  return num_excl_chan / 7;
1813 }
1814 
1815 /**
1816  * Decode dynamic range information; reference: table 4.52.
1817  *
1818  * @return Returns number of bytes consumed.
1819  */
1821  GetBitContext *gb)
1822 {
1823  int n = 1;
1824  int drc_num_bands = 1;
1825  int i;
1826 
1827  /* pce_tag_present? */
1828  if (get_bits1(gb)) {
1829  che_drc->pce_instance_tag = get_bits(gb, 4);
1830  skip_bits(gb, 4); // tag_reserved_bits
1831  n++;
1832  }
1833 
1834  /* excluded_chns_present? */
1835  if (get_bits1(gb)) {
1836  n += decode_drc_channel_exclusions(che_drc, gb);
1837  }
1838 
1839  /* drc_bands_present? */
1840  if (get_bits1(gb)) {
1841  che_drc->band_incr = get_bits(gb, 4);
1842  che_drc->interpolation_scheme = get_bits(gb, 4);
1843  n++;
1844  drc_num_bands += che_drc->band_incr;
1845  for (i = 0; i < drc_num_bands; i++) {
1846  che_drc->band_top[i] = get_bits(gb, 8);
1847  n++;
1848  }
1849  }
1850 
1851  /* prog_ref_level_present? */
1852  if (get_bits1(gb)) {
1853  che_drc->prog_ref_level = get_bits(gb, 7);
1854  skip_bits1(gb); // prog_ref_level_reserved_bits
1855  n++;
1856  }
1857 
1858  for (i = 0; i < drc_num_bands; i++) {
1859  che_drc->dyn_rng_sgn[i] = get_bits1(gb);
1860  che_drc->dyn_rng_ctl[i] = get_bits(gb, 7);
1861  n++;
1862  }
1863 
1864  return n;
1865 }
1866 
1867 static int decode_fill(AACDecContext *ac, GetBitContext *gb, int len) {
1868  uint8_t buf[256];
1869  int i, major, minor;
1870 
1871  if (len < 13+7*8)
1872  goto unknown;
1873 
1874  get_bits(gb, 13); len -= 13;
1875 
1876  for(i=0; i+1<sizeof(buf) && len>=8; i++, len-=8)
1877  buf[i] = get_bits(gb, 8);
1878 
1879  buf[i] = 0;
1880  if (ac->avctx->debug & FF_DEBUG_PICT_INFO)
1881  av_log(ac->avctx, AV_LOG_DEBUG, "FILL:%s\n", buf);
1882 
1883  if (sscanf(buf, "libfaac %d.%d", &major, &minor) == 2){
1884  ac->avctx->internal->skip_samples = 1024;
1885  }
1886 
1887 unknown:
1888  skip_bits_long(gb, len);
1889 
1890  return 0;
1891 }
1892 
1893 /**
1894  * Decode extension data (incomplete); reference: table 4.51.
1895  *
1896  * @param cnt length of TYPE_FIL syntactic element in bytes
1897  *
1898  * @return Returns number of bytes consumed
1899  */
1901  ChannelElement *che, enum RawDataBlockType elem_type)
1902 {
1903  int crc_flag = 0;
1904  int res = cnt;
1905  int type = get_bits(gb, 4);
1906 
1907  if (ac->avctx->debug & FF_DEBUG_STARTCODE)
1908  av_log(ac->avctx, AV_LOG_DEBUG, "extension type: %d len:%d\n", type, cnt);
1909 
1910  switch (type) { // extension type
1911  case EXT_SBR_DATA_CRC:
1912  crc_flag++;
1913  case EXT_SBR_DATA:
1914  if (!che) {
1915  av_log(ac->avctx, AV_LOG_ERROR, "SBR was found before the first channel element.\n");
1916  return res;
1917  } else if (ac->oc[1].m4ac.frame_length_short) {
1918  if (!ac->warned_960_sbr)
1920  "SBR with 960 frame length");
1921  ac->warned_960_sbr = 1;
1922  skip_bits_long(gb, 8 * cnt - 4);
1923  return res;
1924  } else if (!ac->oc[1].m4ac.sbr) {
1925  av_log(ac->avctx, AV_LOG_ERROR, "SBR signaled to be not-present but was found in the bitstream.\n");
1926  skip_bits_long(gb, 8 * cnt - 4);
1927  return res;
1928  } else if (ac->oc[1].m4ac.sbr == -1 && ac->oc[1].status == OC_LOCKED) {
1929  av_log(ac->avctx, AV_LOG_ERROR, "Implicit SBR was found with a first occurrence after the first frame.\n");
1930  skip_bits_long(gb, 8 * cnt - 4);
1931  return res;
1932  } else if (ac->oc[1].m4ac.ps == -1 && ac->oc[1].status < OC_LOCKED &&
1933  ac->avctx->ch_layout.nb_channels == 1) {
1934  ac->oc[1].m4ac.sbr = 1;
1935  ac->oc[1].m4ac.ps = 1;
1938  ac->oc[1].status, 1);
1939  } else {
1940  ac->oc[1].m4ac.sbr = 1;
1942  }
1943 
1944  ac->proc.sbr_decode_extension(ac, che, gb, crc_flag, cnt, elem_type);
1945 
1946  if (ac->oc[1].m4ac.ps == 1 && !ac->warned_he_aac_mono) {
1947  av_log(ac->avctx, AV_LOG_VERBOSE, "Treating HE-AAC mono as stereo.\n");
1948  ac->warned_he_aac_mono = 1;
1949  }
1950  break;
1951  case EXT_DYNAMIC_RANGE:
1952  res = decode_dynamic_range(&ac->che_drc, gb);
1953  break;
1954  case EXT_FILL:
1955  decode_fill(ac, gb, 8 * cnt - 4);
1956  break;
1957  case EXT_FILL_DATA:
1958  case EXT_DATA_ELEMENT:
1959  default:
1960  skip_bits_long(gb, 8 * cnt - 4);
1961  break;
1962  };
1963  return res;
1964 }
1965 
1966 /**
1967  * channel coupling transformation interface
1968  *
1969  * @param apply_coupling_method pointer to (in)dependent coupling function
1970  */
1972  enum RawDataBlockType type, int elem_id,
1973  enum CouplingPoint coupling_point,
1974  void (*apply_coupling_method)(AACDecContext *ac, SingleChannelElement *target, ChannelElement *cce, int index))
1975 {
1976  int i, c;
1977 
1978  for (i = 0; i < MAX_ELEM_ID; i++) {
1979  ChannelElement *cce = ac->che[TYPE_CCE][i];
1980  int index = 0;
1981 
1982  if (cce && cce->coup.coupling_point == coupling_point) {
1983  ChannelCoupling *coup = &cce->coup;
1984 
1985  for (c = 0; c <= coup->num_coupled; c++) {
1986  if (coup->type[c] == type && coup->id_select[c] == elem_id) {
1987  if (coup->ch_select[c] != 1) {
1988  apply_coupling_method(ac, &cc->ch[0], cce, index);
1989  if (coup->ch_select[c] != 0)
1990  index++;
1991  }
1992  if (coup->ch_select[c] != 2)
1993  apply_coupling_method(ac, &cc->ch[1], cce, index++);
1994  } else
1995  index += 1 + (coup->ch_select[c] == 3);
1996  }
1997  }
1998  }
1999 }
2000 
2001 /**
2002  * Convert spectral data to samples, applying all supported tools as appropriate.
2003  */
2005 {
2006  int i, type;
2008  switch (ac->oc[1].m4ac.object_type) {
2009  case AOT_ER_AAC_LD:
2011  break;
2012  case AOT_ER_AAC_ELD:
2014  break;
2015  default:
2016  if (ac->oc[1].m4ac.frame_length_short)
2018  else
2020  }
2021  for (type = 3; type >= 0; type--) {
2022  for (i = 0; i < MAX_ELEM_ID; i++) {
2023  ChannelElement *che = ac->che[type][i];
2024  if (che && che->present) {
2025  if (type <= TYPE_CPE)
2027  if (ac->oc[1].m4ac.object_type == AOT_AAC_LTP) {
2028  if (che->ch[0].ics.predictor_present) {
2029  if (che->ch[0].ics.ltp.present)
2030  ac->dsp.apply_ltp(ac, &che->ch[0]);
2031  if (che->ch[1].ics.ltp.present && type == TYPE_CPE)
2032  ac->dsp.apply_ltp(ac, &che->ch[1]);
2033  }
2034  }
2035  if (che->ch[0].tns.present)
2036  ac->dsp.apply_tns(che->ch[0].coeffs,
2037  &che->ch[0].tns, &che->ch[0].ics, 1);
2038  if (che->ch[1].tns.present)
2039  ac->dsp.apply_tns(che->ch[1].coeffs,
2040  &che->ch[1].tns, &che->ch[1].ics, 1);
2041  if (type <= TYPE_CPE)
2043  if (type != TYPE_CCE || che->coup.coupling_point == AFTER_IMDCT) {
2044  imdct_and_window(ac, &che->ch[0]);
2045  if (ac->oc[1].m4ac.object_type == AOT_AAC_LTP)
2046  ac->dsp.update_ltp(ac, &che->ch[0]);
2047  if (type == TYPE_CPE) {
2048  imdct_and_window(ac, &che->ch[1]);
2049  if (ac->oc[1].m4ac.object_type == AOT_AAC_LTP)
2050  ac->dsp.update_ltp(ac, &che->ch[1]);
2051  }
2052  if (ac->oc[1].m4ac.sbr > 0) {
2053  ac->proc.sbr_apply(ac, che, type,
2054  che->ch[0].output,
2055  che->ch[1].output);
2056  }
2057  }
2058  if (type <= TYPE_CCE)
2060  ac->dsp.clip_output(ac, che, type, samples);
2061  che->present = 0;
2062  } else if (che) {
2063  av_log(ac->avctx, AV_LOG_VERBOSE, "ChannelElement %d.%d missing \n", type, i);
2064  }
2065  }
2066  }
2067 }
2068 
2070 {
2071  int size;
2072  AACADTSHeaderInfo hdr_info;
2073  uint8_t layout_map[MAX_ELEM_ID*4][3];
2074  int layout_map_tags, ret;
2075 
2076  size = ff_adts_header_parse(gb, &hdr_info);
2077  if (size > 0) {
2078  if (!ac->warned_num_aac_frames && hdr_info.num_aac_frames != 1) {
2079  // This is 2 for "VLB " audio in NSV files.
2080  // See samples/nsv/vlb_audio.
2082  "More than one AAC RDB per ADTS frame");
2083  ac->warned_num_aac_frames = 1;
2084  }
2086  if (hdr_info.chan_config) {
2087  ac->oc[1].m4ac.chan_config = hdr_info.chan_config;
2089  layout_map,
2090  &layout_map_tags,
2091  hdr_info.chan_config)) < 0)
2092  return ret;
2093  if ((ret = ff_aac_output_configure(ac, layout_map, layout_map_tags,
2094  FFMAX(ac->oc[1].status,
2095  OC_TRIAL_FRAME), 0)) < 0)
2096  return ret;
2097  } else {
2098  ac->oc[1].m4ac.chan_config = 0;
2099  /**
2100  * dual mono frames in Japanese DTV can have chan_config 0
2101  * WITHOUT specifying PCE.
2102  * thus, set dual mono as default.
2103  */
2104  if (ac->dmono_mode && ac->oc[0].status == OC_NONE) {
2105  layout_map_tags = 2;
2106  layout_map[0][0] = layout_map[1][0] = TYPE_SCE;
2107  layout_map[0][2] = layout_map[1][2] = AAC_CHANNEL_FRONT;
2108  layout_map[0][1] = 0;
2109  layout_map[1][1] = 1;
2110  if (ff_aac_output_configure(ac, layout_map, layout_map_tags,
2111  OC_TRIAL_FRAME, 0))
2112  return -7;
2113  }
2114  }
2115  ac->oc[1].m4ac.sample_rate = hdr_info.sample_rate;
2116  ac->oc[1].m4ac.sampling_index = hdr_info.sampling_index;
2117  ac->oc[1].m4ac.object_type = hdr_info.object_type;
2118  ac->oc[1].m4ac.frame_length_short = 0;
2119  if (ac->oc[0].status != OC_LOCKED ||
2120  ac->oc[0].m4ac.chan_config != hdr_info.chan_config ||
2121  ac->oc[0].m4ac.sample_rate != hdr_info.sample_rate) {
2122  ac->oc[1].m4ac.sbr = -1;
2123  ac->oc[1].m4ac.ps = -1;
2124  }
2125  if (!hdr_info.crc_absent)
2126  skip_bits(gb, 16);
2127  }
2128  return size;
2129 }
2130 
2132  int *got_frame_ptr, GetBitContext *gb)
2133 {
2134  AACDecContext *ac = avctx->priv_data;
2135  const MPEG4AudioConfig *const m4ac = &ac->oc[1].m4ac;
2136  ChannelElement *che;
2137  int err, i;
2138  int samples = m4ac->frame_length_short ? 960 : 1024;
2139  int chan_config = m4ac->chan_config;
2140  int aot = m4ac->object_type;
2141 
2142  if (aot == AOT_ER_AAC_LD || aot == AOT_ER_AAC_ELD)
2143  samples >>= 1;
2144 
2145  ac->frame = frame;
2146 
2147  if ((err = frame_configure_elements(avctx)) < 0)
2148  return err;
2149 
2150  // The AV_PROFILE_AAC_* defines are all object_type - 1
2151  // This may lead to an undefined profile being signaled
2152  ac->avctx->profile = aot - 1;
2153 
2154  ac->tags_mapped = 0;
2155 
2156  if (chan_config < 0 || (chan_config >= 8 && chan_config < 11) || chan_config >= 13) {
2157  avpriv_request_sample(avctx, "Unknown ER channel configuration %d",
2158  chan_config);
2159  return AVERROR_INVALIDDATA;
2160  }
2161  for (i = 0; i < ff_tags_per_config[chan_config]; i++) {
2162  const int elem_type = ff_aac_channel_layout_map[chan_config-1][i][0];
2163  const int elem_id = ff_aac_channel_layout_map[chan_config-1][i][1];
2164  if (!(che=ff_aac_get_che(ac, elem_type, elem_id))) {
2165  av_log(ac->avctx, AV_LOG_ERROR,
2166  "channel element %d.%d is not allocated\n",
2167  elem_type, elem_id);
2168  return AVERROR_INVALIDDATA;
2169  }
2170  che->present = 1;
2171  if (aot != AOT_ER_AAC_ELD)
2172  skip_bits(gb, 4);
2173  switch (elem_type) {
2174  case TYPE_SCE:
2175  err = ff_aac_decode_ics(ac, &che->ch[0], gb, 0, 0);
2176  break;
2177  case TYPE_CPE:
2178  err = decode_cpe(ac, gb, che);
2179  break;
2180  case TYPE_LFE:
2181  err = ff_aac_decode_ics(ac, &che->ch[0], gb, 0, 0);
2182  break;
2183  }
2184  if (err < 0)
2185  return err;
2186  }
2187 
2189 
2190  if (!ac->frame->data[0] && samples) {
2191  av_log(avctx, AV_LOG_ERROR, "no frame data found\n");
2192  return AVERROR_INVALIDDATA;
2193  }
2194 
2195  ac->frame->nb_samples = samples;
2196  ac->frame->sample_rate = avctx->sample_rate;
2197  *got_frame_ptr = 1;
2198 
2199  skip_bits_long(gb, get_bits_left(gb));
2200  return 0;
2201 }
2202 
2204  GetBitContext *gb, int *got_frame_ptr)
2205 {
2206  int err;
2207  int is_dmono;
2208  int elem_id;
2209  enum RawDataBlockType elem_type, che_prev_type = TYPE_END;
2210  uint8_t che_presence[4][MAX_ELEM_ID] = {{0}};
2211  ChannelElement *che = NULL, *che_prev = NULL;
2212  int samples = 0, multiplier, audio_found = 0, pce_found = 0, sce_count = 0;
2213  AVFrame *frame = ac->frame;
2214 
2215  int payload_alignment = get_bits_count(gb);
2216  // parse
2217  while ((elem_type = get_bits(gb, 3)) != TYPE_END) {
2218  elem_id = get_bits(gb, 4);
2219 
2220  if (avctx->debug & FF_DEBUG_STARTCODE)
2221  av_log(avctx, AV_LOG_DEBUG, "Elem type:%x id:%x\n", elem_type, elem_id);
2222 
2223  if (!avctx->ch_layout.nb_channels && elem_type != TYPE_PCE)
2224  return AVERROR_INVALIDDATA;
2225 
2226  if (elem_type < TYPE_DSE) {
2227  if (che_presence[elem_type][elem_id]) {
2228  int error = che_presence[elem_type][elem_id] > 1;
2229  av_log(ac->avctx, error ? AV_LOG_ERROR : AV_LOG_DEBUG, "channel element %d.%d duplicate\n",
2230  elem_type, elem_id);
2231  if (error)
2232  return AVERROR_INVALIDDATA;
2233  }
2234  che_presence[elem_type][elem_id]++;
2235 
2236  if (!(che=ff_aac_get_che(ac, elem_type, elem_id))) {
2237  av_log(ac->avctx, AV_LOG_ERROR, "channel element %d.%d is not allocated\n",
2238  elem_type, elem_id);
2239  return AVERROR_INVALIDDATA;
2240  }
2241  samples = ac->oc[1].m4ac.frame_length_short ? 960 : 1024;
2242  che->present = 1;
2243  }
2244 
2245  switch (elem_type) {
2246 
2247  case TYPE_SCE:
2248  err = ff_aac_decode_ics(ac, &che->ch[0], gb, 0, 0);
2249  audio_found = 1;
2250  sce_count++;
2251  break;
2252 
2253  case TYPE_CPE:
2254  err = decode_cpe(ac, gb, che);
2255  audio_found = 1;
2256  break;
2257 
2258  case TYPE_CCE:
2259  err = ac->proc.decode_cce(ac, gb, che);
2260  break;
2261 
2262  case TYPE_LFE:
2263  err = ff_aac_decode_ics(ac, &che->ch[0], gb, 0, 0);
2264  audio_found = 1;
2265  break;
2266 
2267  case TYPE_DSE:
2268  err = skip_data_stream_element(ac, gb);
2269  break;
2270 
2271  case TYPE_PCE: {
2272  uint8_t layout_map[MAX_ELEM_ID*4][3] = {{0}};
2273  int tags;
2274 
2275  int pushed = push_output_configuration(ac);
2276  if (pce_found && !pushed)
2277  return AVERROR_INVALIDDATA;
2278 
2279  tags = decode_pce(avctx, &ac->oc[1].m4ac, layout_map, gb,
2280  payload_alignment);
2281  if (tags < 0) {
2282  err = tags;
2283  break;
2284  }
2285  if (pce_found) {
2286  av_log(avctx, AV_LOG_ERROR,
2287  "Not evaluating a further program_config_element as this construct is dubious at best.\n");
2289  } else {
2290  err = ff_aac_output_configure(ac, layout_map, tags, OC_TRIAL_PCE, 1);
2291  if (!err)
2292  ac->oc[1].m4ac.chan_config = 0;
2293  pce_found = 1;
2294  }
2295  break;
2296  }
2297 
2298  case TYPE_FIL:
2299  if (elem_id == 15)
2300  elem_id += get_bits(gb, 8) - 1;
2301  if (get_bits_left(gb) < 8 * elem_id) {
2302  av_log(avctx, AV_LOG_ERROR, "TYPE_FIL: "overread_err);
2303  return AVERROR_INVALIDDATA;
2304  }
2305  err = 0;
2306  while (elem_id > 0) {
2307  int ret = decode_extension_payload(ac, gb, elem_id, che_prev, che_prev_type);
2308  if (ret < 0) {
2309  err = ret;
2310  break;
2311  }
2312  elem_id -= ret;
2313  }
2314  break;
2315 
2316  default:
2317  err = AVERROR_BUG; /* should not happen, but keeps compiler happy */
2318  break;
2319  }
2320 
2321  if (elem_type < TYPE_DSE) {
2322  che_prev = che;
2323  che_prev_type = elem_type;
2324  }
2325 
2326  if (err)
2327  return err;
2328 
2329  if (get_bits_left(gb) < 3) {
2330  av_log(avctx, AV_LOG_ERROR, overread_err);
2331  return AVERROR_INVALIDDATA;
2332  }
2333  }
2334 
2335  if (!avctx->ch_layout.nb_channels)
2336  return 0;
2337 
2338  multiplier = (ac->oc[1].m4ac.sbr == 1) ? ac->oc[1].m4ac.ext_sample_rate > ac->oc[1].m4ac.sample_rate : 0;
2339  samples <<= multiplier;
2340 
2342 
2343  if (ac->oc[1].status && audio_found) {
2344  avctx->sample_rate = ac->oc[1].m4ac.sample_rate << multiplier;
2345  avctx->frame_size = samples;
2346  ac->oc[1].status = OC_LOCKED;
2347  }
2348 
2349  if (!ac->frame->data[0] && samples) {
2350  av_log(avctx, AV_LOG_ERROR, "no frame data found\n");
2351  return AVERROR_INVALIDDATA;
2352  }
2353 
2354  if (samples) {
2355  ac->frame->nb_samples = samples;
2356  ac->frame->sample_rate = avctx->sample_rate;
2357  *got_frame_ptr = 1;
2358  } else {
2359  av_frame_unref(ac->frame);
2360  *got_frame_ptr = 0;
2361  }
2362 
2363  /* for dual-mono audio (SCE + SCE) */
2364  is_dmono = ac->dmono_mode && sce_count == 2 &&
2367  if (is_dmono) {
2368  if (ac->dmono_mode == 1)
2369  frame->data[1] = frame->data[0];
2370  else if (ac->dmono_mode == 2)
2371  frame->data[0] = frame->data[1];
2372  }
2373 
2374  return 0;
2375 }
2376 
2378  int *got_frame_ptr, GetBitContext *gb,
2379  const AVPacket *avpkt)
2380 {
2381  int err;
2382  AACDecContext *ac = avctx->priv_data;
2383 
2384  ac->frame = frame;
2385  *got_frame_ptr = 0;
2386 
2387  if (show_bits(gb, 12) == 0xfff) {
2388  if ((err = parse_adts_frame_header(ac, gb)) < 0) {
2389  av_log(avctx, AV_LOG_ERROR, "Error decoding AAC frame header.\n");
2390  goto fail;
2391  }
2392  if (ac->oc[1].m4ac.sampling_index > 12) {
2393  av_log(ac->avctx, AV_LOG_ERROR, "invalid sampling rate index %d\n", ac->oc[1].m4ac.sampling_index);
2394  err = AVERROR_INVALIDDATA;
2395  goto fail;
2396  }
2397  }
2398 
2399  if ((err = frame_configure_elements(avctx)) < 0)
2400  goto fail;
2401 
2402  // The AV_PROFILE_AAC_* defines are all object_type - 1
2403  // This may lead to an undefined profile being signaled
2404  ac->avctx->profile = ac->oc[1].m4ac.object_type - 1;
2405 
2406  ac->tags_mapped = 0;
2407 
2408  if (ac->oc[1].m4ac.object_type == AOT_USAC) {
2409  if (ac->is_fixed) {
2411  "AAC USAC fixed-point decoding");
2412  return AVERROR_PATCHWELCOME;
2413  }
2414 #if CONFIG_AAC_DECODER
2415  err = ff_aac_usac_decode_frame(avctx, ac, gb, got_frame_ptr);
2416  if (err < 0)
2417  goto fail;
2418 #endif
2419  } else {
2420  err = decode_frame_ga(avctx, ac, gb, got_frame_ptr);
2421  if (err < 0)
2422  goto fail;
2423  }
2424 
2425  return err;
2426 
2427 fail:
2429  return err;
2430 }
2431 
2433  int *got_frame_ptr, AVPacket *avpkt)
2434 {
2435  AACDecContext *ac = avctx->priv_data;
2436  const uint8_t *buf = avpkt->data;
2437  int buf_size = avpkt->size;
2438  GetBitContext gb;
2439  int buf_consumed;
2440  int buf_offset;
2441  int err;
2442  size_t new_extradata_size;
2443  const uint8_t *new_extradata = av_packet_get_side_data(avpkt,
2445  &new_extradata_size);
2446  size_t jp_dualmono_size;
2447  const uint8_t *jp_dualmono = av_packet_get_side_data(avpkt,
2449  &jp_dualmono_size);
2450 
2451  if (new_extradata) {
2452  /* discard previous configuration */
2453  ac->oc[1].status = OC_NONE;
2454  err = decode_audio_specific_config(ac, ac->avctx, &ac->oc[1],
2455  new_extradata,
2456  new_extradata_size * 8LL, 1);
2457  if (err < 0) {
2458  return err;
2459  }
2460  }
2461 
2462  ac->dmono_mode = 0;
2463  if (jp_dualmono && jp_dualmono_size > 0)
2464  ac->dmono_mode = 1 + *jp_dualmono;
2465  if (ac->force_dmono_mode >= 0)
2466  ac->dmono_mode = ac->force_dmono_mode;
2467 
2468  if (INT_MAX / 8 <= buf_size)
2469  return AVERROR_INVALIDDATA;
2470 
2471  if ((err = init_get_bits8(&gb, buf, buf_size)) < 0)
2472  return err;
2473 
2474  switch (ac->oc[1].m4ac.object_type) {
2475  case AOT_ER_AAC_LC:
2476  case AOT_ER_AAC_LTP:
2477  case AOT_ER_AAC_LD:
2478  case AOT_ER_AAC_ELD:
2479  err = aac_decode_er_frame(avctx, frame, got_frame_ptr, &gb);
2480  break;
2481  default:
2482  err = aac_decode_frame_int(avctx, frame, got_frame_ptr, &gb, avpkt);
2483  }
2484  if (err < 0)
2485  return err;
2486 
2487  buf_consumed = (get_bits_count(&gb) + 7) >> 3;
2488  for (buf_offset = buf_consumed; buf_offset < buf_size; buf_offset++)
2489  if (buf[buf_offset])
2490  break;
2491 
2492  return buf_size > buf_offset ? buf_consumed : buf_size;
2493 }
2494 
2495 #if CONFIG_AAC_LATM_DECODER
2496 #include "aacdec_latm.h"
2497 #endif
2498 
2499 #define AACDEC_FLAGS AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM
2500 #define OFF(field) offsetof(AACDecContext, field)
2501 static const AVOption options[] = {
2502  /**
2503  * AVOptions for Japanese DTV specific extensions (ADTS only)
2504  */
2505  {"dual_mono_mode", "Select the channel to decode for dual mono",
2506  OFF(force_dmono_mode), AV_OPT_TYPE_INT, {.i64=-1}, -1, 2,
2507  AACDEC_FLAGS, .unit = "dual_mono_mode"},
2508 
2509  {"auto", "autoselection", 0, AV_OPT_TYPE_CONST, {.i64=-1}, INT_MIN, INT_MAX, AACDEC_FLAGS, .unit = "dual_mono_mode"},
2510  {"main", "Select Main/Left channel", 0, AV_OPT_TYPE_CONST, {.i64= 1}, INT_MIN, INT_MAX, AACDEC_FLAGS, .unit = "dual_mono_mode"},
2511  {"sub" , "Select Sub/Right channel", 0, AV_OPT_TYPE_CONST, {.i64= 2}, INT_MIN, INT_MAX, AACDEC_FLAGS, .unit = "dual_mono_mode"},
2512  {"both", "Select both channels", 0, AV_OPT_TYPE_CONST, {.i64= 0}, INT_MIN, INT_MAX, AACDEC_FLAGS, .unit = "dual_mono_mode"},
2513 
2514  { "channel_order", "Order in which the channels are to be exported",
2515  OFF(output_channel_order), AV_OPT_TYPE_INT,
2516  { .i64 = CHANNEL_ORDER_DEFAULT }, 0, 1, AACDEC_FLAGS, .unit = "channel_order" },
2517  { "default", "normal libavcodec channel order", 0, AV_OPT_TYPE_CONST,
2518  { .i64 = CHANNEL_ORDER_DEFAULT }, .flags = AACDEC_FLAGS, .unit = "channel_order" },
2519  { "coded", "order in which the channels are coded in the bitstream",
2520  0, AV_OPT_TYPE_CONST, { .i64 = CHANNEL_ORDER_CODED }, .flags = AACDEC_FLAGS, .unit = "channel_order" },
2521 
2522  {NULL},
2523 };
2524 
2525 static const AVClass decoder_class = {
2526  .class_name = "AAC decoder",
2527  .item_name = av_default_item_name,
2528  .option = options,
2529  .version = LIBAVUTIL_VERSION_INT,
2530 };
2531 
2532 #if CONFIG_AAC_DECODER
2533 const FFCodec ff_aac_decoder = {
2534  .p.name = "aac",
2535  CODEC_LONG_NAME("AAC (Advanced Audio Coding)"),
2536  .p.type = AVMEDIA_TYPE_AUDIO,
2537  .p.id = AV_CODEC_ID_AAC,
2538  .p.priv_class = &decoder_class,
2539  .priv_data_size = sizeof(AACDecContext),
2541  .close = decode_close,
2543  .p.sample_fmts = (const enum AVSampleFormat[]) {
2545  },
2546  .p.capabilities = AV_CODEC_CAP_CHANNEL_CONF | AV_CODEC_CAP_DR1,
2547  .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
2548  .p.ch_layouts = ff_aac_ch_layout,
2549  .flush = flush,
2550  .p.profiles = NULL_IF_CONFIG_SMALL(ff_aac_profiles),
2551 };
2552 #endif
2553 
2554 #if CONFIG_AAC_FIXED_DECODER
2555 const FFCodec ff_aac_fixed_decoder = {
2556  .p.name = "aac_fixed",
2557  CODEC_LONG_NAME("AAC (Advanced Audio Coding)"),
2558  .p.type = AVMEDIA_TYPE_AUDIO,
2559  .p.id = AV_CODEC_ID_AAC,
2560  .p.priv_class = &decoder_class,
2561  .priv_data_size = sizeof(AACDecContext),
2563  .close = decode_close,
2565  .p.sample_fmts = (const enum AVSampleFormat[]) {
2567  },
2568  .p.capabilities = AV_CODEC_CAP_CHANNEL_CONF | AV_CODEC_CAP_DR1,
2569  .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
2570  .p.ch_layouts = ff_aac_ch_layout,
2571  .p.profiles = NULL_IF_CONFIG_SMALL(ff_aac_profiles),
2572  .flush = flush,
2573 };
2574 #endif
error
static void error(const char *err)
Definition: target_bsf_fuzzer.c:32
ChannelCoupling::type
enum RawDataBlockType type[8]
Type of channel element to be coupled - SCE or CPE.
Definition: aacdec.h:199
CouplingPoint
CouplingPoint
The point during decoding at which channel coupling is applied.
Definition: aacdec.h:68
MAX_ELEM_ID
#define MAX_ELEM_ID
Definition: aac.h:34
AVCodecContext::frame_size
int frame_size
Number of samples per channel in an audio frame.
Definition: avcodec.h:1077
AAC_CHANNEL_BACK
@ AAC_CHANNEL_BACK
Definition: aac.h:80
AV_SAMPLE_FMT_FLTP
@ AV_SAMPLE_FMT_FLTP
float, planar
Definition: samplefmt.h:66
decode_close
static av_cold int decode_close(AVCodecContext *avctx)
Definition: aacdec.c:1099
decode_frame_ga
static int decode_frame_ga(AVCodecContext *avctx, AACDecContext *ac, GetBitContext *gb, int *got_frame_ptr)
Definition: aacdec.c:2203
AACDecProc::decode_spectrum_and_dequant
int(* decode_spectrum_and_dequant)(AACDecContext *ac, GetBitContext *gb, const Pulse *pulse, SingleChannelElement *sce)
Definition: aacdec.h:396
skip_bits_long
static void skip_bits_long(GetBitContext *s, int n)
Skips the specified number of bits.
Definition: get_bits.h:278
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:186
pop_output_configuration
static void pop_output_configuration(AACDecContext *ac)
Restore the previous output configuration if and only if the current configuration is unlocked.
Definition: aacdec.c:443
AACDecContext::mdct960_fn
av_tx_fn mdct960_fn
Definition: aacdec.h:499
ff_tns_max_bands_128
const uint8_t ff_tns_max_bands_128[]
Definition: aactab.c:2000
AV_EF_EXPLODE
#define AV_EF_EXPLODE
abort decoding on minor error detection
Definition: defs.h:51
av_clip
#define av_clip
Definition: common.h:100
BETWEEN_TNS_AND_IMDCT
@ BETWEEN_TNS_AND_IMDCT
Definition: aacdec.h:70
FF_CODEC_CAP_INIT_CLEANUP
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: codec_internal.h:43
get_bits_left
static int get_bits_left(GetBitContext *gb)
Definition: get_bits.h:695
AVERROR
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
opt.h
AACDecDSP::apply_intensity_stereo
void(* apply_intensity_stereo)(AACDecContext *ac, ChannelElement *cpe, int ms_present)
Definition: aacdec.h:418
AACUSACConfig
Definition: aacdec.h:351
assign_channels
static int assign_channels(struct elem_to_channel e2c_vec[MAX_ELEM_ID], uint8_t(*layout_map)[3], uint64_t *layout, int tags, int layer, int pos, int *current)
Definition: aacdec.c:285
TYPE_FIL
@ TYPE_FIL
Definition: aac.h:46
EXT_FILL
@ EXT_FILL
Definition: aac.h:51
AV_CHANNEL_LAYOUT_STEREO
#define AV_CHANNEL_LAYOUT_STEREO
Definition: channel_layout.h:387
AVCodecContext::sample_rate
int sample_rate
samples per second
Definition: avcodec.h:1050
AACDecContext::mdct1024_fn
av_tx_fn mdct1024_fn
Definition: aacdec.h:500
decode_scalefactors
static int decode_scalefactors(AACDecContext *ac, SingleChannelElement *sce, GetBitContext *gb, unsigned int global_gain)
Decode scalefactors; reference: table 4.47.
Definition: aacdec.c:1469
AACDecContext::warned_he_aac_mono
int warned_he_aac_mono
Definition: aacdec.h:532
AACDecContext::mdct96
AVTXContext * mdct96
Definition: aacdec.h:483
AV_PKT_DATA_NEW_EXTRADATA
@ AV_PKT_DATA_NEW_EXTRADATA
The AV_PKT_DATA_NEW_EXTRADATA is used to notify the codec or the format that the extradata buffer was...
Definition: packet.h:56
ff_aac_usac_config_decode
int ff_aac_usac_config_decode(AACDecContext *ac, AVCodecContext *avctx, GetBitContext *gb, OutputConfiguration *oc, int channel_config)
Definition: aacdec_usac.c:333
AVCodecInternal::skip_samples
int skip_samples
Number of audio samples to skip at the start of the next decoded frame.
Definition: internal.h:125
AACDecProc::sbr_ctx_alloc_init
int(* sbr_ctx_alloc_init)(AACDecContext *ac, ChannelElement **che, int id_aac)
Definition: aacdec.h:403
AVCodecContext::err_recognition
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
Definition: avcodec.h:1424
Pulse::num_pulse
int num_pulse
Definition: aac.h:100
ff_ltp_coef
const float ff_ltp_coef[8]
Definition: aactab.c:110
int64_t
long long int64_t
Definition: coverity.c:34
decode_audio_specific_config
static int decode_audio_specific_config(AACDecContext *ac, AVCodecContext *avctx, OutputConfiguration *oc, const uint8_t *data, int64_t bit_size, int sync_extension)
Definition: aacdec.c:1073
get_bits_count
static int get_bits_count(const GetBitContext *s)
Definition: get_bits.h:266
LongTermPrediction::used
int8_t used[MAX_LTP_LONG_SFB]
Definition: aacdec.h:121
AACDecContext::mdct768
AVTXContext * mdct768
Definition: aacdec.h:488
OC_TRIAL_PCE
@ OC_TRIAL_PCE
Output configuration under trial specified by an inband PCE.
Definition: aacdec.h:54
aacsbr.h
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:374
LongTermPrediction::coef
float coef
Definition: aacenc.h:84
aac_decode_frame_int
static int aac_decode_frame_int(AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, GetBitContext *gb, const AVPacket *avpkt)
Definition: aacdec.c:2377
decode_drc_channel_exclusions
static int decode_drc_channel_exclusions(DynamicRangeControl *che_drc, GetBitContext *gb)
Parse whether channels are to be excluded from Dynamic Range Compression; reference: table 4....
Definition: aacdec.c:1801
w
uint8_t w
Definition: llviddspenc.c:38
internal.h
AVPacket::data
uint8_t * data
Definition: packet.h:533
ff_aac_num_swb_960
const uint8_t ff_aac_num_swb_960[]
Definition: aactab.c:153
AVOption
AVOption.
Definition: opt.h:429
AACDecContext::mdct960
AVTXContext * mdct960
Definition: aacdec.h:489
AOT_ER_AAC_LTP
@ AOT_ER_AAC_LTP
N Error Resilient Long Term Prediction.
Definition: mpeg4audio.h:90
TYPE_PCE
@ TYPE_PCE
Definition: aac.h:45
AV_SAMPLE_FMT_S32P
@ AV_SAMPLE_FMT_S32P
signed 32 bits, planar
Definition: samplefmt.h:65
data
const char data[16]
Definition: mxf.c:148
aacdec_usac.h
FF_COMPLIANCE_STRICT
#define FF_COMPLIANCE_STRICT
Strictly conform to all the things in the spec no matter what consequences.
Definition: defs.h:59
TemporalNoiseShaping::present
int present
Definition: aacdec.h:185
FFCodec
Definition: codec_internal.h:127
parse_adts_frame_header
static int parse_adts_frame_header(AACDecContext *ac, GetBitContext *gb)
Definition: aacdec.c:2069
ff_aac_profiles
const AVProfile ff_aac_profiles[]
Definition: profiles.c:27
ff_aac_num_swb_120
const uint8_t ff_aac_num_swb_120[]
Definition: aactab.c:173
AV_LOG_VERBOSE
#define AV_LOG_VERBOSE
Detailed information.
Definition: log.h:196
AACDecContext::tag_che_map
ChannelElement * tag_che_map[4][MAX_ELEM_ID]
Definition: aacdec.h:465
AACDecDSP::apply_tns
void(* apply_tns)(void *_coef_param, TemporalNoiseShaping *tns, IndividualChannelStream *ics, int decode)
Definition: aacdec.h:421
AVChannelLayout::order
enum AVChannelOrder order
Channel order used in this layout.
Definition: channel_layout.h:316
FFMAX
#define FFMAX(a, b)
Definition: macros.h:47
ff_aac_num_swb_480
const uint8_t ff_aac_num_swb_480[]
Definition: aactab.c:165
AACDecContext::warned_remapping_once
int warned_remapping_once
Definition: aacdec.h:467
AACDecContext::proc
AACDecProc proc
Definition: aacdec.h:453
AVChannelLayout::nb_channels
int nb_channels
Number of channels in this layout.
Definition: channel_layout.h:321
AACDecContext::mdct512_fn
av_tx_fn mdct512_fn
Definition: aacdec.h:497
AACDecDSP::apply_prediction
void(* apply_prediction)(AACDecContext *ac, SingleChannelElement *sce)
Definition: aacdec.h:427
ChannelElement::ch
SingleChannelElement ch[2]
Definition: aacdec.h:266
ff_aac_sample_rate_idx
static int ff_aac_sample_rate_idx(int rate)
Definition: aac.h:106
EXT_DYNAMIC_RANGE
@ EXT_DYNAMIC_RANGE
Definition: aac.h:54
ff_swb_offset_128
const uint16_t *const ff_swb_offset_128[]
Definition: aactab.c:1950
init_get_bits
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition: get_bits.h:514
av_tx_init
av_cold int av_tx_init(AVTXContext **ctx, av_tx_fn *tx, enum AVTXType type, int inv, int len, const void *scale, uint64_t flags)
Initialize a transform context with the given configuration (i)MDCTs with an odd length are currently...
Definition: tx.c:903
ff_aac_decode_ics
int ff_aac_decode_ics(AACDecContext *ac, SingleChannelElement *sce, GetBitContext *gb, int common_window, int scale_flag)
Decode an individual_channel_stream payload; reference: table 4.44.
Definition: aacdec.c:1662
ChannelElement::present
int present
Definition: aacdec.h:261
FF_DEBUG_PICT_INFO
#define FF_DEBUG_PICT_INFO
Definition: avcodec.h:1401
AVFrame::data
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
Definition: frame.h:395
ff_tns_max_bands_1024
const uint8_t ff_tns_max_bands_1024[]
Definition: aactab.c:1984
ff_aac_decode_init_float
int ff_aac_decode_init_float(AVCodecContext *avctx)
Definition: aacdec_float.c:164
AACDecContext::dmono_mode
int dmono_mode
0->not dmono, 1->use first channel, 2->use second channel
Definition: aacdec.h:522
MPEG4AudioConfig
Definition: mpeg4audio.h:29
skip_bits
static void skip_bits(GetBitContext *s, int n)
Definition: get_bits.h:381
DynamicRangeControl
Dynamic Range Control - decoded from the bitstream but not processed further.
Definition: aacdec.h:379
IndividualChannelStream::num_swb
int num_swb
number of scalefactor window bands
Definition: aacdec.h:171
options
static const AVOption options[]
Definition: aacdec.c:2501
ff_aac_decode_init_fixed
int ff_aac_decode_init_fixed(AVCodecContext *avctx)
Dequantization-related.
Definition: aacdec_fixed.c:87
get_bits
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:335
ChannelCoupling::coupling_point
enum CouplingPoint coupling_point
The point during decoding at which coupling is applied.
Definition: aacdec.h:197
SingleChannelElement::coeffs
float coeffs[1024]
coefficients for IMDCT, maybe processed
Definition: aacenc.h:139
ff_aac_num_swb_512
const uint8_t ff_aac_num_swb_512[]
Definition: aactab.c:161
AACDecContext::force_dmono_mode
int force_dmono_mode
0->not dmono, 1->use first channel, 2->use second channel
Definition: aacdec.h:521
AACDecContext::warned_960_sbr
int warned_960_sbr
Definition: aacdec.h:529
FFCodec::p
AVCodec p
The public AVCodec.
Definition: codec_internal.h:131
AACDecContext::mdct480
AVTXContext * mdct480
Definition: aacdec.h:486
AVCodecContext::ch_layout
AVChannelLayout ch_layout
Audio channel layout.
Definition: avcodec.h:1065
macros.h
fail
#define fail()
Definition: checkasm.h:188
ChannelElement::coup
ChannelCoupling coup
Definition: aacdec.h:268
ChannelCoupling::id_select
int id_select[8]
element id
Definition: aacdec.h:200
SingleChannelElement::ret_buf
float ret_buf[2048]
PCM output buffer.
Definition: aacenc.h:140
ff_adts_header_parse
int ff_adts_header_parse(GetBitContext *gbc, AACADTSHeaderInfo *hdr)
Parse the ADTS frame header to the end of the variable header, which is the first 54 bits.
Definition: adts_header.c:30
AACDecContext::warned_71_wide
unsigned warned_71_wide
Definition: aacdec.h:530
TYPE_CPE
@ TYPE_CPE
Definition: aac.h:41
GetBitContext
Definition: get_bits.h:108
AV_EF_BITSTREAM
#define AV_EF_BITSTREAM
detect bitstream specification deviations
Definition: defs.h:49
AACDecContext::tags_mapped
int tags_mapped
Definition: aacdec.h:466
Pulse::amp
int amp[4]
Definition: aac.h:103
Pulse::pos
int pos[4]
Definition: aac.h:102
AACDecProc::sbr_apply
void(* sbr_apply)(AACDecContext *ac, ChannelElement *che, int id_aac, void *L, void *R)
Definition: aacdec.h:406
OutputConfiguration::status
enum OCStatus status
Definition: aacdec.h:372
type
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf type
Definition: writing_filters.txt:86
AACDecContext::che_drc
DynamicRangeControl che_drc
Definition: aacdec.h:458
MAX_LTP_LONG_SFB
#define MAX_LTP_LONG_SFB
Definition: aac.h:37
SingleChannelElement::ics
IndividualChannelStream ics
Definition: aacdec.h:211
AACDecContext::mdct480_fn
av_tx_fn mdct480_fn
Definition: aacdec.h:496
AACUSACConfig::elems
AACUsacElemConfig elems[64]
Definition: aacdec.h:356
decode_cpe
static int decode_cpe(AACDecContext *ac, GetBitContext *gb, ChannelElement *cpe)
Decode a channel_pair_element; reference: table 4.4.
Definition: aacdec.c:1755
decode_pulses
static int decode_pulses(Pulse *pulse, GetBitContext *gb, const uint16_t *swb_offset, int num_swb)
Decode pulse data; reference: table 4.7.
Definition: aacdec.c:1528
AACUsacElemConfig
Definition: aacdec.h:297
AOT_ER_AAC_LC
@ AOT_ER_AAC_LC
N Error Resilient Low Complexity.
Definition: mpeg4audio.h:88
AACADTSHeaderInfo::chan_config
uint8_t chan_config
Definition: adts_header.h:42
decode_fill
static int decode_fill(AACDecContext *ac, GetBitContext *gb, int len)
Definition: aacdec.c:1867
AV_LOG_ERROR
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:180
ZERO_BT
@ ZERO_BT
Scalefactors and spectral data are all zero.
Definition: aac.h:67
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen.c:29
AACDecDSP::dequant_scalefactors
void(* dequant_scalefactors)(SingleChannelElement *sce)
Definition: aacdec.h:415
av_cold
#define av_cold
Definition: attributes.h:90
init_get_bits8
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition: get_bits.h:545
DynamicRangeControl::exclude_mask
int exclude_mask[MAX_CHANNELS]
Channels to be excluded from DRC processing.
Definition: aacdec.h:383
AV_CH_LAYOUT_22POINT2
#define AV_CH_LAYOUT_22POINT2
Definition: channel_layout.h:248
ff_aac_decode_init
av_cold int ff_aac_decode_init(AVCodecContext *avctx)
Definition: aacdec.c:1175
OC_GLOBAL_HDR
@ OC_GLOBAL_HDR
Output configuration set in a global header but not yet locked.
Definition: aacdec.h:56
AACDecContext::mdct_ltp
AVTXContext * mdct_ltp
Definition: aacdec.h:491
AVCodecContext::extradata_size
int extradata_size
Definition: avcodec.h:524
NOISE_BT
@ NOISE_BT
Spectral data are scaled white noise not coded in the bitstream.
Definition: aac.h:71
AV_TX_FLOAT_MDCT
@ AV_TX_FLOAT_MDCT
Standard MDCT with a sample data type of float, double or int32_t, respecively.
Definition: tx.h:68
AOT_ER_AAC_LD
@ AOT_ER_AAC_LD
N Error Resilient Low Delay.
Definition: mpeg4audio.h:94
FF_CODEC_DECODE_CB
#define FF_CODEC_DECODE_CB(func)
Definition: codec_internal.h:311
AACDecDSP::apply_mid_side_stereo
void(* apply_mid_side_stereo)(AACDecContext *ac, ChannelElement *cpe)
Definition: aacdec.h:417
ff_swb_offset_960
const uint16_t *const ff_swb_offset_960[]
Definition: aactab.c:1918
ChannelCoupling::num_coupled
int num_coupled
number of target elements
Definition: aacdec.h:198
AV_TX_INT32_MDCT
@ AV_TX_INT32_MDCT
Definition: tx.h:70
g
const char * g
Definition: vf_curves.c:128
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
EIGHT_SHORT_SEQUENCE
@ EIGHT_SHORT_SEQUENCE
Definition: aac.h:62
AV_CHANNEL_ORDER_UNSPEC
@ AV_CHANNEL_ORDER_UNSPEC
Only the channel count is specified, without any further information about the channel order.
Definition: channel_layout.h:116
TemporalNoiseShaping::direction
int direction[8][4]
Definition: aacdec.h:188
av_channel_layout_from_mask
int av_channel_layout_from_mask(AVChannelLayout *channel_layout, uint64_t mask)
Initialize a native channel layout from a bitmask indicating which channels are present.
Definition: channel_layout.c:247
AACUsacElemConfig::pl_data
uint8_t * pl_data
Definition: aacdec.h:347
INTENSITY_BT2
@ INTENSITY_BT2
Scalefactor data are intensity stereo positions (out of phase).
Definition: aac.h:72
bits
uint8_t bits
Definition: vp3data.h:128
AACDecProc::decode_cce
int(* decode_cce)(AACDecContext *ac, GetBitContext *gb, ChannelElement *che)
Definition: aacdec.h:401
TYPE_DSE
@ TYPE_DSE
Definition: aac.h:44
av_assert0
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:40
elem_to_channel::av_position
uint64_t av_position
Definition: aacdec.c:209
ff_aac_get_che
ChannelElement * ff_aac_get_che(AACDecContext *ac, int type, int elem_id)
Definition: aacdec.c:590
AV_LOG_DEBUG
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:201
flush
static av_cold void flush(AVCodecContext *avctx)
Definition: aacdec.c:525
ChannelPosition
ChannelPosition
Definition: aac.h:76
AACDecDSP::imdct_and_windowing_ld
void(* imdct_and_windowing_ld)(AACDecContext *ac, SingleChannelElement *sce)
Definition: aacdec.h:439
channels
channels
Definition: aptx.h:31
decode.h
limits.h
LongTermPrediction::present
int8_t present
Definition: aacdec.h:118
IndividualChannelStream
Individual Channel Stream.
Definition: aacdec.h:162
AACDecContext::che
ChannelElement * che[4][MAX_ELEM_ID]
Definition: aacdec.h:464
SCALE_DIFF_ZERO
#define SCALE_DIFF_ZERO
codebook index corresponding to zero scalefactor indices difference
Definition: aac.h:91
NOISE_PRE
#define NOISE_PRE
preamble for NOISE_BT, put in bitstream with the first noise band
Definition: aac.h:95
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:296
AACDecContext::fdsp
AVFloatDSPContext * fdsp
Definition: aacdec.h:504
ff_aac_usac_decode_frame
int ff_aac_usac_decode_frame(AVCodecContext *avctx, AACDecContext *ac, GetBitContext *gb, int *got_frame_ptr)
Definition: aacdec_usac.c:1658
AACDecContext::warned_num_aac_frames
int warned_num_aac_frames
Definition: aacdec.h:528
AACADTSHeaderInfo::num_aac_frames
uint8_t num_aac_frames
Definition: adts_header.h:43
INTENSITY_BT
@ INTENSITY_BT
Scalefactor data are intensity stereo positions (in phase).
Definition: aac.h:73
elem_to_channel::syn_ele
uint8_t syn_ele
Definition: aacdec.c:210
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
decode_extension_payload
static int decode_extension_payload(AACDecContext *ac, GetBitContext *gb, int cnt, ChannelElement *che, enum RawDataBlockType elem_type)
Decode extension data (incomplete); reference: table 4.51.
Definition: aacdec.c:1900
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
AACDecContext::mdct96_fn
av_tx_fn mdct96_fn
Definition: aacdec.h:493
NULL
#define NULL
Definition: coverity.c:32
spectral_to_sample
static void spectral_to_sample(AACDecContext *ac, int samples)
Convert spectral data to samples, applying all supported tools as appropriate.
Definition: aacdec.c:2004
AVERROR_PATCHWELCOME
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:64
AACDecProc::sbr_decode_extension
int(* sbr_decode_extension)(AACDecContext *ac, ChannelElement *che, GetBitContext *gb, int crc, int cnt, int id_aac)
Definition: aacdec.h:404
IndividualChannelStream::use_kb_window
uint8_t use_kb_window[2]
If set, use Kaiser-Bessel window, otherwise use a sine window.
Definition: aacdec.h:165
ff_aac_num_swb_128
const uint8_t ff_aac_num_swb_128[]
Definition: aactab.c:169
AVCodecContext::internal
struct AVCodecInternal * internal
Private context used for internal data.
Definition: avcodec.h:480
IndividualChannelStream::num_window_groups
int num_window_groups
Definition: aacdec.h:166
AAC_CHANNEL_SIDE
@ AAC_CHANNEL_SIDE
Definition: aac.h:79
BEFORE_TNS
@ BEFORE_TNS
Definition: aacdec.h:69
AACADTSHeaderInfo::sampling_index
uint8_t sampling_index
Definition: adts_header.h:41
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:237
get_bits1
static unsigned int get_bits1(GetBitContext *s)
Definition: get_bits.h:388
ff_aac_ch_layout
const AVChannelLayout ff_aac_ch_layout[]
Definition: aacdec_tab.c:96
profiles.h
MPEG4AudioConfig::sampling_index
int sampling_index
Definition: mpeg4audio.h:31
ff_aac_fixed_decoder
const FFCodec ff_aac_fixed_decoder
AOT_USAC
@ AOT_USAC
Y Unified Speech and Audio Coding.
Definition: mpeg4audio.h:113
ChannelElement::ms_mask
uint8_t ms_mask[128]
Set if mid/side stereo is used for each scalefactor window band.
Definition: aacdec.h:264
aac.h
aactab.h
IndividualChannelStream::predictor_present
int predictor_present
Definition: aacdec.h:174
DynamicRangeControl::band_top
int band_top[17]
Indicates the top of the i-th DRC band in units of 4 spectral lines.
Definition: aacdec.h:386
ff_swb_offset_480
const uint16_t *const ff_swb_offset_480[]
Definition: aactab.c:1942
AAC_CHANNEL_FRONT
@ AAC_CHANNEL_FRONT
Definition: aac.h:78
sniff_channel_order
static uint64_t sniff_channel_order(uint8_t(*layout_map)[3], int tags)
Definition: aacdec.c:363
aac_decode_er_frame
static int aac_decode_er_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, GetBitContext *gb)
Definition: aacdec.c:2131
AV_CH_FRONT_CENTER
#define AV_CH_FRONT_CENTER
Definition: channel_layout.h:174
count_channels
static int count_channels(uint8_t(*layout)[3], int tags)
Definition: aacdec.c:117
AOT_AAC_MAIN
@ AOT_AAC_MAIN
Y Main.
Definition: mpeg4audio.h:73
decode_mid_side_stereo
static void decode_mid_side_stereo(ChannelElement *cpe, GetBitContext *gb, int ms_present)
Decode Mid/Side data; reference: table 4.54.
Definition: aacdec.c:1613
get_vlc2
static av_always_inline int get_vlc2(GetBitContext *s, const VLCElem *table, int bits, int max_depth)
Parse a vlc code.
Definition: get_bits.h:652
AAC_CHANNEL_OFF
@ AAC_CHANNEL_OFF
Definition: aac.h:77
AACDecContext::mdct120
AVTXContext * mdct120
Definition: aacdec.h:484
OC_LOCKED
@ OC_LOCKED
Output configuration locked in place.
Definition: aacdec.h:57
index
int index
Definition: gxfenc.c:90
c
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
Definition: undefined.txt:32
IndividualChannelStream::prev_num_window_groups
int prev_num_window_groups
Previous frame's number of window groups.
Definition: aacdec.h:167
aac_decode_frame
static int aac_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, AVPacket *avpkt)
Definition: aacdec.c:2432
error.h
ff_tns_max_bands_512
const uint8_t ff_tns_max_bands_512[]
Definition: aactab.c:1992
OutputConfiguration::layout_map_tags
int layout_map_tags
Definition: aacdec.h:370
AV_CODEC_CAP_CHANNEL_CONF
#define AV_CODEC_CAP_CHANNEL_CONF
Codec should fill in channel configuration and samplerate instead of container.
Definition: codec.h:106
AV_CODEC_ID_AAC
@ AV_CODEC_ID_AAC
Definition: codec_id.h:442
OutputConfiguration::layout_map
uint8_t layout_map[MAX_ELEM_ID *4][3]
Definition: aacdec.h:369
ff_dlog
#define ff_dlog(a,...)
Definition: tableprint_vlc.h:28
AACDecDSP::update_ltp
void(* update_ltp)(AACDecContext *ac, SingleChannelElement *sce)
Definition: aacdec.h:425
AACDecDSP::apply_independent_coupling
void(* apply_independent_coupling)(AACDecContext *ac, SingleChannelElement *target, ChannelElement *cce, int index)
Definition: aacdec.h:432
frame_configure_elements
static int frame_configure_elements(AVCodecContext *avctx)
Definition: aacdec.c:174
ff_aac_pred_sfb_max
const uint8_t ff_aac_pred_sfb_max[]
Definition: aactab.c:181
IndividualChannelStream::window_sequence
enum WindowSequence window_sequence[2]
Definition: aacdec.h:164
AACDecContext::dsp
AACDecDSP dsp
Definition: aacdec.h:452
AACDecDSP::clip_output
void(* clip_output)(AACDecContext *ac, ChannelElement *che, int type, int samples)
Definition: aacdec.h:442
ff_get_buffer
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition: decode.c:1599
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:366
AOT_ER_AAC_SCALABLE
@ AOT_ER_AAC_SCALABLE
N Error Resilient Scalable.
Definition: mpeg4audio.h:91
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
OC_NONE
@ OC_NONE
Output unconfigured.
Definition: aacdec.h:53
AACDecDSP::apply_dependent_coupling
void(* apply_dependent_coupling)(AACDecContext *ac, SingleChannelElement *target, ChannelElement *cce, int index)
Definition: aacdec.h:429
ff_swb_offset_1024
const uint16_t *const ff_swb_offset_1024[]
Definition: aactab.c:1910
AOT_AAC_SCALABLE
@ AOT_AAC_SCALABLE
N Scalable.
Definition: mpeg4audio.h:78
AVPacket::size
int size
Definition: packet.h:534
skip_data_stream_element
static int skip_data_stream_element(AACDecContext *ac, GetBitContext *gb)
Skip data_stream_element; reference: table 4.10.
Definition: aacdec.c:1238
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:94
AVChannelLayout
An AVChannelLayout holds information about the channel layout of audio data.
Definition: channel_layout.h:311
codec_internal.h
ONLY_LONG_SEQUENCE
@ ONLY_LONG_SEQUENCE
Definition: aac.h:60
TYPE_END
@ TYPE_END
Definition: aac.h:47
AACDecContext::mdct1024
AVTXContext * mdct1024
Definition: aacdec.h:490
AVTXType
AVTXType
Definition: tx.h:39
AVFrame::sample_rate
int sample_rate
Sample rate of the audio data.
Definition: frame.h:573
AACDecDSP::imdct_and_windowing
void(* imdct_and_windowing)(AACDecContext *ac, SingleChannelElement *sce)
Definition: aacdec.h:436
ChannelElement::max_sfb_ste
uint8_t max_sfb_ste
(USAC) Maximum of both max_sfb values
Definition: aacdec.h:263
OCStatus
OCStatus
Output configuration status.
Definition: aacdec.h:52
AV_SAMPLE_FMT_NONE
@ AV_SAMPLE_FMT_NONE
Definition: samplefmt.h:56
size
int size
Definition: twinvq_data.h:10344
SingleChannelElement::sfo
int sfo[128]
scalefactor offsets
Definition: aacdec.h:215
ff_tags_per_config
const int8_t ff_tags_per_config[16]
Definition: aacdec_tab.c:38
DynamicRangeControl::prog_ref_level
int prog_ref_level
A reference level for the long-term program audio level for all channels combined.
Definition: aacdec.h:387
avpriv_report_missing_feature
void avpriv_report_missing_feature(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
AACDecContext::output_element
SingleChannelElement * output_element[MAX_CHANNELS]
Points to each SingleChannelElement.
Definition: aacdec.h:513
ff_mpeg4audio_get_config_gb
int ff_mpeg4audio_get_config_gb(MPEG4AudioConfig *c, GetBitContext *gb, int sync_extension, void *logctx)
Parse MPEG-4 systems extradata from a potentially unaligned GetBitContext to retrieve audio configura...
Definition: mpeg4audio.c:92
AACDecContext::output_channel_order
enum AACOutputChannelOrder output_channel_order
Definition: aacdec.h:525
decode_dynamic_range
static int decode_dynamic_range(DynamicRangeControl *che_drc, GetBitContext *gb)
Decode dynamic range information; reference: table 4.52.
Definition: aacdec.c:1820
OutputConfiguration
Definition: aacdec.h:367
elem_to_channel::elem_id
uint8_t elem_id
Definition: aacdec.c:211
ff_tns_max_bands_480
const uint8_t ff_tns_max_bands_480[]
Definition: aactab.c:1996
elem_to_channel
Definition: aacdec.c:208
ff_swb_offset_512
const uint16_t *const ff_swb_offset_512[]
Definition: aactab.c:1934
offset
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf offset
Definition: writing_filters.txt:86
attributes.h
decoder_class
static const AVClass decoder_class
Definition: aacdec.c:2525
skip_bits1
static void skip_bits1(GetBitContext *s)
Definition: get_bits.h:413
AACADTSHeaderInfo::object_type
uint8_t object_type
Definition: adts_header.h:40
SingleChannelElement::band_type
enum BandType band_type[128]
band types
Definition: aacdec.h:214
MAX_CHANNELS
#define MAX_CHANNELS
Definition: aac.h:33
AV_CHAN_UNUSED
@ AV_CHAN_UNUSED
Channel is empty can be safely skipped.
Definition: channel_layout.h:88
AACDecContext::mdct128
AVTXContext * mdct128
Definition: aacdec.h:485
DynamicRangeControl::dyn_rng_ctl
int dyn_rng_ctl[17]
DRC magnitude information.
Definition: aacdec.h:382
decode_ga_specific_config
static int decode_ga_specific_config(AACDecContext *ac, AVCodecContext *avctx, GetBitContext *gb, int get_bit_alignment, MPEG4AudioConfig *m4ac, int channel_config)
Decode GA "General Audio" specific configuration; reference: table 4.1.
Definition: aacdec.c:848
AACDecDSP::apply_ltp
void(* apply_ltp)(AACDecContext *ac, SingleChannelElement *sce)
Definition: aacdec.h:424
SingleChannelElement::output
float * output
PCM output.
Definition: aacdec.h:227
MPEG4AudioConfig::channels
int channels
Definition: mpeg4audio.h:39
av_tx_uninit
av_cold void av_tx_uninit(AVTXContext **ctx)
Frees a context and sets *ctx to NULL, does nothing when *ctx == NULL.
Definition: tx.c:295
decode_eld_specific_config
static int decode_eld_specific_config(AACDecContext *ac, AVCodecContext *avctx, GetBitContext *gb, MPEG4AudioConfig *m4ac, int channel_config)
Definition: aacdec.c:929
av_channel_layout_compare
int av_channel_layout_compare(const AVChannelLayout *chl, const AVChannelLayout *chl1)
Check whether two channel layouts are semantically the same, i.e.
Definition: channel_layout.c:804
EXT_FILL_DATA
@ EXT_FILL_DATA
Definition: aac.h:52
decode_prediction
static int decode_prediction(AACDecContext *ac, IndividualChannelStream *ics, GetBitContext *gb)
Definition: aacdec.c:1255
AV_LOG_INFO
#define AV_LOG_INFO
Standard information.
Definition: log.h:191
AOT_AAC_SSR
@ AOT_AAC_SSR
N (code in SoC repo) Scalable Sample Rate.
Definition: mpeg4audio.h:75
AACDecContext::mdct768_fn
av_tx_fn mdct768_fn
Definition: aacdec.h:498
MDCT_INIT
#define MDCT_INIT(s, fn, len, sval)
AACDecDSP::imdct_and_windowing_960
void(* imdct_and_windowing_960)(AACDecContext *ac, SingleChannelElement *sce)
Definition: aacdec.h:438
layout
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel layout
Definition: filter_design.txt:18
decode_audio_specific_config_gb
static int decode_audio_specific_config_gb(AACDecContext *ac, AVCodecContext *avctx, OutputConfiguration *oc, GetBitContext *gb, int get_bit_alignment, int sync_extension)
Decode audio specific configuration; reference: table 1.13.
Definition: aacdec.c:998
ff_tns_tmp2_map
const float *const ff_tns_tmp2_map[4]
Definition: aactab.c:142
CHANNEL_ORDER_CODED
@ CHANNEL_ORDER_CODED
Definition: aacdec.h:62
AVFrame::nb_samples
int nb_samples
number of audio samples (per channel) described by this frame
Definition: frame.h:454
RawDataBlockType
RawDataBlockType
Definition: aac.h:39
log.h
SingleChannelElement
Single Channel Element - used for both SCE and LFE elements.
Definition: aacdec.h:210
AACDecContext::is_fixed
int is_fixed
Definition: aacdec.h:534
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:256
IndividualChannelStream::num_windows
int num_windows
Definition: aacdec.h:172
OutputConfiguration::usac
AACUSACConfig usac
Definition: aacdec.h:373
AACDecContext::warned_gain_control
int warned_gain_control
Definition: aacdec.h:531
AVCodecContext::extradata
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:523
show_bits
static unsigned int show_bits(GetBitContext *s, int n)
Show 1-25 bits.
Definition: get_bits.h:371
av_packet_get_side_data
uint8_t * av_packet_get_side_data(const AVPacket *pkt, enum AVPacketSideDataType type, size_t *size)
Get side information from packet.
Definition: packet.c:252
ff_aac_channel_layout_map
const uint8_t ff_aac_channel_layout_map[16][16][3]
Definition: aacdec_tab.c:40
push_output_configuration
static int push_output_configuration(AACDecContext *ac)
Save current output configuration if and only if it has been locked.
Definition: aacdec.c:427
AACDecContext::random_state
int random_state
Definition: aacdec.h:506
relative_align_get_bits
static void relative_align_get_bits(GetBitContext *gb, int reference_position)
Definition: aacdec.c:766
AACDEC_FLAGS
#define AACDEC_FLAGS
Definition: aacdec.c:2499
AVFrame::extended_data
uint8_t ** extended_data
pointers to the data planes/channels.
Definition: frame.h:435
ChannelElement
channel element - generic struct for SCE/CPE/CCE/LFE
Definition: aacdec.h:260
IndividualChannelStream::swb_offset
const uint16_t * swb_offset
table of offsets to the lowest spectral coefficient of a scalefactor band, sfb, for a particular wind...
Definition: aacdec.h:170
AOT_ER_AAC_ELD
@ AOT_ER_AAC_ELD
N Error Resilient Enhanced Low Delay.
Definition: mpeg4audio.h:110
assign_pair
static int assign_pair(struct elem_to_channel e2c_vec[MAX_ELEM_ID], uint8_t(*layout_map)[3], int offset, uint64_t left, uint64_t right, int pos, uint64_t *layout)
Definition: aacdec.c:215
AVSampleFormat
AVSampleFormat
Audio sample formats.
Definition: samplefmt.h:55
NOISE_PRE_BITS
#define NOISE_PRE_BITS
length of preamble
Definition: aac.h:96
FF_DEBUG_STARTCODE
#define FF_DEBUG_STARTCODE
Definition: avcodec.h:1408
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
AV_CH_FRONT_LEFT
#define AV_CH_FRONT_LEFT
Definition: channel_layout.h:172
TYPE_LFE
@ TYPE_LFE
Definition: aac.h:43
av_frame_unref
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
Definition: frame.c:608
LongTermPrediction::lag
int16_t lag
Definition: aacdec.h:119
ff_aac_decoder
const FFCodec ff_aac_decoder
MPEG4AudioConfig::chan_config
int chan_config
Definition: mpeg4audio.h:33
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:194
TemporalNoiseShaping::order
int order[8][4]
Definition: aacdec.h:189
TYPE_SCE
@ TYPE_SCE
Definition: aac.h:40
decode_ics_info
static int decode_ics_info(AACDecContext *ac, IndividualChannelStream *ics, GetBitContext *gb)
Decode Individual Channel Stream info; reference: table 4.6.
Definition: aacdec.c:1295
len
int len
Definition: vorbis_enc_data.h:426
filt
static const int8_t filt[NUMTAPS *2]
Definition: af_earwax.c:40
che_configure
static av_cold int che_configure(AACDecContext *ac, enum ChannelPosition che_pos, int type, int id, int *channels)
Check for the channel element in the current channel position configuration.
Definition: aacdec.c:141
AACDecContext::oc
OutputConfiguration oc[2]
Definition: aacdec.h:527
MPEG4AudioConfig::ext_sample_rate
int ext_sample_rate
Definition: mpeg4audio.h:37
IndividualChannelStream::tns_max_bands
int tns_max_bands
Definition: aacdec.h:173
TemporalNoiseShaping::length
int length[8][4]
Definition: aacdec.h:187
AACDecDSP::imdct_and_windowing_eld
void(* imdct_and_windowing_eld)(AACDecContext *ac, SingleChannelElement *sce)
Definition: aacdec.h:440
AACUSACConfig::nb_elems
int nb_elems
Definition: aacdec.h:357
AACADTSHeaderInfo::sample_rate
uint32_t sample_rate
Definition: adts_header.h:36
avcodec.h
ff_swb_offset_120
const uint16_t *const ff_swb_offset_120[]
Definition: aactab.c:1960
AAC_CHANNEL_LFE
@ AAC_CHANNEL_LFE
Definition: aac.h:81
version.h
AOT_ER_BSAC
@ AOT_ER_BSAC
N Error Resilient Bit-Sliced Arithmetic Coding.
Definition: mpeg4audio.h:93
DynamicRangeControl::pce_instance_tag
int pce_instance_tag
Indicates with which program the DRC info is associated.
Definition: aacdec.h:380
decode_ltp
static void decode_ltp(AACDecContext *ac, LongTermPrediction *ltp, GetBitContext *gb, uint8_t max_sfb)
Decode Long Term Prediction data; reference: table 4.xx.
Definition: aacdec.c:1277
ret
ret
Definition: filter_design.txt:187
AV_PKT_DATA_JP_DUALMONO
@ AV_PKT_DATA_JP_DUALMONO
An AV_PKT_DATA_JP_DUALMONO side data packet indicates that the packet may contain "dual mono" audio s...
Definition: packet.h:163
elem_to_channel::aac_position
uint8_t aac_position
Definition: aacdec.c:212
ff_aac_num_swb_1024
const uint8_t ff_aac_num_swb_1024[]
Definition: aactab.c:149
FFSWAP
#define FFSWAP(type, a, b)
Definition: macros.h:52
AVClass::class_name
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:71
frame
these buffered frames must be flushed immediately if a new input produces new the filter must not call request_frame to get more It must just process the frame or queue it The task of requesting more frames is left to the filter s request_frame method or the application If a filter has several the filter must be ready for frames arriving randomly on any input any filter with several inputs will most likely require some kind of queuing mechanism It is perfectly acceptable to have a limited queue and to drop frames when the inputs are too unbalanced request_frame For filters that do not use the this method is called when a frame is wanted on an output For a it should directly call filter_frame on the corresponding output For a if there are queued frames already one of these frames should be pushed If the filter should request a frame on one of its repeatedly until at least one frame has been pushed Return or at least make progress towards producing a frame
Definition: filter_design.txt:264
AACDecContext::frame
struct AVFrame * frame
Definition: aacdec.h:455
AVCodecContext::strict_std_compliance
int strict_std_compliance
strictly follow the standard (MPEG-4, ...).
Definition: avcodec.h:1383
align_get_bits
static const uint8_t * align_get_bits(GetBitContext *s)
Definition: get_bits.h:561
pos
unsigned int pos
Definition: spdifenc.c:414
count_paired_channels
static int count_paired_channels(uint8_t(*layout_map)[3], int tags, int pos, int current)
Definition: aacdec.c:253
TemporalNoiseShaping::coef
float coef[8][4][TNS_MAX_ORDER]
Definition: aacenc.h:121
CHANNEL_ORDER_DEFAULT
@ CHANNEL_ORDER_DEFAULT
Definition: aacdec.h:61
ChannelCoupling::ch_select
int ch_select[8]
[0] shared list of gains; [1] list of gains for right channel; [2] list of gains for left channel; [3...
Definition: aacdec.h:201
id
enum AVCodecID id
Definition: dts2pts.c:365
left
Tag MUST be and< 10hcoeff half pel interpolation filter coefficients, hcoeff[0] are the 2 middle coefficients[1] are the next outer ones and so on, resulting in a filter like:...eff[2], hcoeff[1], hcoeff[0], hcoeff[0], hcoeff[1], hcoeff[2] ... the sign of the coefficients is not explicitly stored but alternates after each coeff and coeff[0] is positive, so ...,+,-,+,-,+,+,-,+,-,+,... hcoeff[0] is not explicitly stored but found by subtracting the sum of all stored coefficients with signs from 32 hcoeff[0]=32 - hcoeff[1] - hcoeff[2] - ... a good choice for hcoeff and htaps is htaps=6 hcoeff={40,-10, 2} an alternative which requires more computations at both encoder and decoder side and may or may not be better is htaps=8 hcoeff={42,-14, 6,-2}ref_frames minimum of the number of available reference frames and max_ref_frames for example the first frame after a key frame always has ref_frames=1spatial_decomposition_type wavelet type 0 is a 9/7 symmetric compact integer wavelet 1 is a 5/3 symmetric compact integer wavelet others are reserved stored as delta from last, last is reset to 0 if always_reset||keyframeqlog quality(logarithmic quantizer scale) stored as delta from last, last is reset to 0 if always_reset||keyframemv_scale stored as delta from last, last is reset to 0 if always_reset||keyframe FIXME check that everything works fine if this changes between framesqbias dequantization bias stored as delta from last, last is reset to 0 if always_reset||keyframeblock_max_depth maximum depth of the block tree stored as delta from last, last is reset to 0 if always_reset||keyframequant_table quantization tableHighlevel bitstream structure:==============================--------------------------------------------|Header|--------------------------------------------|------------------------------------|||Block0||||split?||||yes no||||......... intra?||||:Block01 :yes no||||:Block02 :....... ..........||||:Block03 ::y DC ::ref index:||||:Block04 ::cb DC ::motion x :||||......... :cr DC ::motion y :||||....... ..........|||------------------------------------||------------------------------------|||Block1|||...|--------------------------------------------|------------ ------------ ------------|||Y subbands||Cb subbands||Cr subbands||||--- ---||--- ---||--- ---|||||LL0||HL0||||LL0||HL0||||LL0||HL0|||||--- ---||--- ---||--- ---||||--- ---||--- ---||--- ---|||||LH0||HH0||||LH0||HH0||||LH0||HH0|||||--- ---||--- ---||--- ---||||--- ---||--- ---||--- ---|||||HL1||LH1||||HL1||LH1||||HL1||LH1|||||--- ---||--- ---||--- ---||||--- ---||--- ---||--- ---|||||HH1||HL2||||HH1||HL2||||HH1||HL2|||||...||...||...|||------------ ------------ ------------|--------------------------------------------Decoding process:=================------------|||Subbands|------------||||------------|Intra DC||||LL0 subband prediction ------------|\ Dequantization ------------------- \||Reference frames|\ IDWT|------- -------|Motion \|||Frame 0||Frame 1||Compensation . OBMC v -------|------- -------|--------------. \------> Frame n output Frame Frame<----------------------------------/|...|------------------- Range Coder:============Binary Range Coder:------------------- The implemented range coder is an adapted version based upon "Range encoding: an algorithm for removing redundancy from a digitised message." by G. N. N. Martin. The symbols encoded by the Snow range coder are bits(0|1). The associated probabilities are not fix but change depending on the symbol mix seen so far. bit seen|new state ---------+----------------------------------------------- 0|256 - state_transition_table[256 - old_state];1|state_transition_table[old_state];state_transition_table={ 0, 0, 0, 0, 0, 0, 0, 0, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 190, 191, 192, 194, 194, 195, 196, 197, 198, 199, 200, 201, 202, 202, 204, 205, 206, 207, 208, 209, 209, 210, 211, 212, 213, 215, 215, 216, 217, 218, 219, 220, 220, 222, 223, 224, 225, 226, 227, 227, 229, 229, 230, 231, 232, 234, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 248, 0, 0, 0, 0, 0, 0, 0};FIXME Range Coding of integers:------------------------- FIXME Neighboring Blocks:===================left and top are set to the respective blocks unless they are outside of the image in which case they are set to the Null block top-left is set to the top left block unless it is outside of the image in which case it is set to the left block if this block has no larger parent block or it is at the left side of its parent block and the top right block is not outside of the image then the top right block is used for top-right else the top-left block is used Null block y, cb, cr are 128 level, ref, mx and my are 0 Motion Vector Prediction:=========================1. the motion vectors of all the neighboring blocks are scaled to compensate for the difference of reference frames scaled_mv=(mv *(256 *(current_reference+1)/(mv.reference+1))+128)> the median of the scaled left
Definition: snow.txt:386
MPEG4AudioConfig::object_type
int object_type
Definition: mpeg4audio.h:30
SingleChannelElement::tns
TemporalNoiseShaping tns
Definition: aacdec.h:213
U
#define U(x)
Definition: vpx_arith.h:37
overread_err
#define overread_err
Definition: aacdec.c:115
aacdec.h
imdct_and_window
static void imdct_and_window(TwinVQContext *tctx, enum TwinVQFrameType ftype, int wtype, float *in, float *prev, int ch)
Definition: twinvq.c:329
AACDecContext
main AAC decoding context
Definition: aacdec.h:448
AACADTSHeaderInfo::crc_absent
uint8_t crc_absent
Definition: adts_header.h:39
AV_CHAN_NONE
@ AV_CHAN_NONE
Invalid channel index.
Definition: channel_layout.h:49
init_dsp
static av_cold int init_dsp(AVCodecContext *avctx)
Definition: aacdec.c:1140
EXT_SBR_DATA_CRC
@ EXT_SBR_DATA_CRC
Definition: aac.h:56
AVCodecContext
main external API structure.
Definition: avcodec.h:445
EXT_SBR_DATA
@ EXT_SBR_DATA
Definition: aac.h:55
LongTermPrediction
Long Term Prediction.
Definition: aacdec.h:117
AV_PROFILE_AAC_HE_V2
#define AV_PROFILE_AAC_HE_V2
Definition: defs.h:73
AACDecContext::avctx
struct AVCodecContext * avctx
Definition: aacdec.h:450
MPEG4AudioConfig::ps
int ps
-1 implicit, 1 presence
Definition: mpeg4audio.h:40
aacdec_latm.h
NOISE_OFFSET
#define NOISE_OFFSET
subtracted from global gain, used as offset for the preamble
Definition: aac.h:97
aacdec_tab.h
IndividualChannelStream::prediction_used
uint8_t prediction_used[41]
Definition: aacdec.h:177
mode
mode
Definition: ebur128.h:83
AACUsacElemConfig::ext
struct AACUsacElemConfig::@24 ext
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition: opt.h:259
AVCodecContext::profile
int profile
profile
Definition: avcodec.h:1644
TemporalNoiseShaping
Temporal Noise Shaping.
Definition: aacdec.h:184
ff_mpeg4audio_channels
const uint8_t ff_mpeg4audio_channels[15]
Definition: mpeg4audio.c:59
av_channel_layout_uninit
void av_channel_layout_uninit(AVChannelLayout *channel_layout)
Free any allocated data in the channel layout and reset the channel count to 0.
Definition: channel_layout.c:437
MPEG4AudioConfig::sbr
int sbr
-1 implicit, 1 presence
Definition: mpeg4audio.h:34
samples
Filter the word “frame” indicates either a video frame or a group of audio samples
Definition: filter_design.txt:8
ff_aac_decode_tns
int ff_aac_decode_tns(AACDecContext *ac, TemporalNoiseShaping *tns, GetBitContext *gb, const IndividualChannelStream *ics)
Decode Temporal Noise Shaping data; reference: table 4.48.
Definition: aacdec.c:1555
Q31
#define Q31(x)
Definition: aac_defines.h:111
DynamicRangeControl::band_incr
int band_incr
Number of DRC bands greater than 1 having DRC info.
Definition: aacdec.h:384
AACDecContext::mdct_ltp_fn
av_tx_fn mdct_ltp_fn
Definition: aacdec.h:501
ff_aac_usac_reset_state
int ff_aac_usac_reset_state(AACDecContext *ac, OutputConfiguration *oc)
Definition: aacdec_usac.c:274
decode_gain_control
static void decode_gain_control(SingleChannelElement *sce, GetBitContext *gb)
Definition: aacdec.c:1627
AVCodecContext::debug
int debug
debug
Definition: avcodec.h:1400
AV_CH_FRONT_RIGHT
#define AV_CH_FRONT_RIGHT
Definition: channel_layout.h:173
av_channel_layout_copy
int av_channel_layout_copy(AVChannelLayout *dst, const AVChannelLayout *src)
Make a copy of a channel layout.
Definition: channel_layout.c:444
OutputConfiguration::m4ac
MPEG4AudioConfig m4ac
Definition: aacdec.h:368
TYPE_CCE
@ TYPE_CCE
Definition: aac.h:42
apply_channel_coupling
static void apply_channel_coupling(AACDecContext *ac, ChannelElement *cc, enum RawDataBlockType type, int elem_id, enum CouplingPoint coupling_point, void(*apply_coupling_method)(AACDecContext *ac, SingleChannelElement *target, ChannelElement *cce, int index))
channel coupling transformation interface
Definition: aacdec.c:1971
mem.h
OutputConfiguration::ch_layout
AVChannelLayout ch_layout
Definition: aacdec.h:371
ff_aacdec_common_init_once
av_cold void ff_aacdec_common_init_once(void)
Definition: aacdec_tab.c:304
avpriv_request_sample
#define avpriv_request_sample(...)
Definition: tableprint_vlc.h:36
adts_header.h
MPEG4AudioConfig::frame_length_short
int frame_length_short
Definition: mpeg4audio.h:41
AV_PROFILE_AAC_HE
#define AV_PROFILE_AAC_HE
Definition: defs.h:72
ff_aac_channel_map
const int16_t ff_aac_channel_map[3][4][6]
Definition: aacdec_tab.c:75
DynamicRangeControl::dyn_rng_sgn
int dyn_rng_sgn[17]
DRC sign information; 0 - positive, 1 - negative.
Definition: aacdec.h:381
AVPacket
This structure stores compressed data.
Definition: packet.h:510
AVCodecContext::priv_data
void * priv_data
Definition: avcodec.h:472
ff_vlc_scalefactors
VLCElem ff_vlc_scalefactors[352]
Definition: aacdec_tab.c:111
av_freep
#define av_freep(p)
Definition: tableprint_vlc.h:34
ChannelCoupling
coupling parameters
Definition: aacdec.h:196
EXT_DATA_ELEMENT
@ EXT_DATA_ELEMENT
Definition: aac.h:53
aac_defines.h
AVERROR_BUG
#define AVERROR_BUG
Internal bug, also see AVERROR_BUG2.
Definition: error.h:52
IndividualChannelStream::max_sfb
uint8_t max_sfb
number of scalefactor bands per group
Definition: aacdec.h:163
decode_channel_map
static void decode_channel_map(uint8_t layout_map[][3], enum ChannelPosition type, GetBitContext *gb, int n)
Decode an array of 4 bit element IDs, optionally interleaved with a stereo/mono switching bit.
Definition: aacdec.c:736
Pulse
Definition: aac.h:99
AAC_CHANNEL_CC
@ AAC_CHANNEL_CC
Definition: aac.h:82
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61
OFF
#define OFF(field)
Definition: aacdec.c:2500
AACDecContext::mdct512
AVTXContext * mdct512
Definition: aacdec.h:487
DynamicRangeControl::interpolation_scheme
int interpolation_scheme
Indicates the interpolation scheme used in the SBR QMF domain.
Definition: aacdec.h:385
AFTER_IMDCT
@ AFTER_IMDCT
Definition: aacdec.h:71
ff_aac_set_default_channel_config
int ff_aac_set_default_channel_config(AACDecContext *ac, AVCodecContext *avctx, uint8_t(*layout_map)[3], int *tags, int channel_config)
Set up channel positions based on a default channel configuration as specified in table 1....
Definition: aacdec.c:550
IndividualChannelStream::ltp
LongTermPrediction ltp
Definition: aacdec.h:169
IndividualChannelStream::group_len
uint8_t group_len[8]
Definition: aacdec.h:168
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
Definition: opt.h:299
decode_band_types
static int decode_band_types(AACDecContext *ac, SingleChannelElement *sce, GetBitContext *gb)
Decode band types (section_data payload); reference: table 4.46.
Definition: aacdec.c:1422
decode_pce
static int decode_pce(AVCodecContext *avctx, MPEG4AudioConfig *m4ac, uint8_t(*layout_map)[3], GetBitContext *gb, int byte_align_ref)
Decode program configuration element; reference: table 4.2.
Definition: aacdec.c:778
AOT_AAC_LC
@ AOT_AAC_LC
Y Low Complexity.
Definition: mpeg4audio.h:74
TemporalNoiseShaping::n_filt
int n_filt[8]
Definition: aacdec.h:186
AOT_AAC_LTP
@ AOT_AAC_LTP
Y Long Term Prediction.
Definition: mpeg4audio.h:76
OC_TRIAL_FRAME
@ OC_TRIAL_FRAME
Output configuration under trial specified by a frame header.
Definition: aacdec.h:55
Q30
#define Q30(x)
Definition: aac_defines.h:110
ff_aac_output_configure
int ff_aac_output_configure(AACDecContext *ac, uint8_t layout_map[MAX_ELEM_ID *4][3], int tags, enum OCStatus oc_type, int get_new_frame)
Configure output channel order based on the current program configuration element.
Definition: aacdec.c:459
AACDecProc::sbr_ctx_close
void(* sbr_ctx_close)(ChannelElement *che)
Definition: aacdec.h:408
AACADTSHeaderInfo
Definition: adts_header.h:35
IndividualChannelStream::predictor_reset_group
int predictor_reset_group
Definition: aacdec.h:176
tx.h
AACDecContext::mdct120_fn
av_tx_fn mdct120_fn
Definition: aacdec.h:494
MPEG4AudioConfig::sample_rate
int sample_rate
Definition: mpeg4audio.h:32
AACDecContext::mdct128_fn
av_tx_fn mdct128_fn
Definition: aacdec.h:495