You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1457 lines
54KB

  1. /*
  2. * AAC decoder
  3. * Copyright (c) 2005-2006 Oded Shimon ( ods15 ods15 dyndns org )
  4. * Copyright (c) 2006-2007 Maxim Gavrilov ( maxim.gavrilov gmail com )
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. /**
  23. * @file aac.c
  24. * AAC decoder
  25. * @author Oded Shimon ( ods15 ods15 dyndns org )
  26. * @author Maxim Gavrilov ( maxim.gavrilov gmail com )
  27. */
  28. /*
  29. * supported tools
  30. *
  31. * Support? Name
  32. * N (code in SoC repo) gain control
  33. * Y block switching
  34. * Y window shapes - standard
  35. * N window shapes - Low Delay
  36. * Y filterbank - standard
  37. * N (code in SoC repo) filterbank - Scalable Sample Rate
  38. * Y Temporal Noise Shaping
  39. * N (code in SoC repo) Long Term Prediction
  40. * Y intensity stereo
  41. * Y channel coupling
  42. * N frequency domain prediction
  43. * Y Perceptual Noise Substitution
  44. * Y Mid/Side stereo
  45. * N Scalable Inverse AAC Quantization
  46. * N Frequency Selective Switch
  47. * N upsampling filter
  48. * Y quantization & coding - AAC
  49. * N quantization & coding - TwinVQ
  50. * N quantization & coding - BSAC
  51. * N AAC Error Resilience tools
  52. * N Error Resilience payload syntax
  53. * N Error Protection tool
  54. * N CELP
  55. * N Silence Compression
  56. * N HVXC
  57. * N HVXC 4kbits/s VR
  58. * N Structured Audio tools
  59. * N Structured Audio Sample Bank Format
  60. * N MIDI
  61. * N Harmonic and Individual Lines plus Noise
  62. * N Text-To-Speech Interface
  63. * N (in progress) Spectral Band Replication
  64. * Y (not in this code) Layer-1
  65. * Y (not in this code) Layer-2
  66. * Y (not in this code) Layer-3
  67. * N SinuSoidal Coding (Transient, Sinusoid, Noise)
  68. * N (planned) Parametric Stereo
  69. * N Direct Stream Transfer
  70. *
  71. * Note: - HE AAC v1 comprises LC AAC with Spectral Band Replication.
  72. * - HE AAC v2 comprises LC AAC with Spectral Band Replication and
  73. Parametric Stereo.
  74. */
  75. #include "avcodec.h"
  76. #include "bitstream.h"
  77. #include "dsputil.h"
  78. #include "lpc.h"
  79. #include "aac.h"
  80. #include "aactab.h"
  81. #include "aacdectab.h"
  82. #include "mpeg4audio.h"
  83. #include <assert.h>
  84. #include <errno.h>
  85. #include <math.h>
  86. #include <string.h>
  87. static VLC vlc_scalefactors;
  88. static VLC vlc_spectral[11];
  89. /**
  90. * Configure output channel order based on the current program configuration element.
  91. *
  92. * @param che_pos current channel position configuration
  93. * @param new_che_pos New channel position configuration - we only do something if it differs from the current one.
  94. *
  95. * @return Returns error status. 0 - OK, !0 - error
  96. */
  97. static int output_configure(AACContext *ac, enum ChannelPosition che_pos[4][MAX_ELEM_ID],
  98. enum ChannelPosition new_che_pos[4][MAX_ELEM_ID]) {
  99. AVCodecContext *avctx = ac->avccontext;
  100. int i, type, channels = 0;
  101. if(!memcmp(che_pos, new_che_pos, 4 * MAX_ELEM_ID * sizeof(new_che_pos[0][0])))
  102. return 0; /* no change */
  103. memcpy(che_pos, new_che_pos, 4 * MAX_ELEM_ID * sizeof(new_che_pos[0][0]));
  104. /* Allocate or free elements depending on if they are in the
  105. * current program configuration.
  106. *
  107. * Set up default 1:1 output mapping.
  108. *
  109. * For a 5.1 stream the output order will be:
  110. * [ Center ] [ Front Left ] [ Front Right ] [ LFE ] [ Surround Left ] [ Surround Right ]
  111. */
  112. for(i = 0; i < MAX_ELEM_ID; i++) {
  113. for(type = 0; type < 4; type++) {
  114. if(che_pos[type][i]) {
  115. if(!ac->che[type][i] && !(ac->che[type][i] = av_mallocz(sizeof(ChannelElement))))
  116. return AVERROR(ENOMEM);
  117. if(type != TYPE_CCE) {
  118. ac->output_data[channels++] = ac->che[type][i]->ch[0].ret;
  119. if(type == TYPE_CPE) {
  120. ac->output_data[channels++] = ac->che[type][i]->ch[1].ret;
  121. }
  122. }
  123. } else
  124. av_freep(&ac->che[type][i]);
  125. }
  126. }
  127. avctx->channels = channels;
  128. return 0;
  129. }
  130. /**
  131. * Decode an array of 4 bit element IDs, optionally interleaved with a stereo/mono switching bit.
  132. *
  133. * @param cpe_map Stereo (Channel Pair Element) map, NULL if stereo bit is not present.
  134. * @param sce_map mono (Single Channel Element) map
  135. * @param type speaker type/position for these channels
  136. */
  137. static void decode_channel_map(enum ChannelPosition *cpe_map,
  138. enum ChannelPosition *sce_map, enum ChannelPosition type, GetBitContext * gb, int n) {
  139. while(n--) {
  140. enum ChannelPosition *map = cpe_map && get_bits1(gb) ? cpe_map : sce_map; // stereo or mono map
  141. map[get_bits(gb, 4)] = type;
  142. }
  143. }
  144. /**
  145. * Decode program configuration element; reference: table 4.2.
  146. *
  147. * @param new_che_pos New channel position configuration - we only do something if it differs from the current one.
  148. *
  149. * @return Returns error status. 0 - OK, !0 - error
  150. */
  151. static int decode_pce(AACContext * ac, enum ChannelPosition new_che_pos[4][MAX_ELEM_ID],
  152. GetBitContext * gb) {
  153. int num_front, num_side, num_back, num_lfe, num_assoc_data, num_cc;
  154. skip_bits(gb, 2); // object_type
  155. ac->m4ac.sampling_index = get_bits(gb, 4);
  156. if(ac->m4ac.sampling_index > 11) {
  157. av_log(ac->avccontext, AV_LOG_ERROR, "invalid sampling rate index %d\n", ac->m4ac.sampling_index);
  158. return -1;
  159. }
  160. ac->m4ac.sample_rate = ff_mpeg4audio_sample_rates[ac->m4ac.sampling_index];
  161. num_front = get_bits(gb, 4);
  162. num_side = get_bits(gb, 4);
  163. num_back = get_bits(gb, 4);
  164. num_lfe = get_bits(gb, 2);
  165. num_assoc_data = get_bits(gb, 3);
  166. num_cc = get_bits(gb, 4);
  167. if (get_bits1(gb))
  168. skip_bits(gb, 4); // mono_mixdown_tag
  169. if (get_bits1(gb))
  170. skip_bits(gb, 4); // stereo_mixdown_tag
  171. if (get_bits1(gb))
  172. skip_bits(gb, 3); // mixdown_coeff_index and pseudo_surround
  173. decode_channel_map(new_che_pos[TYPE_CPE], new_che_pos[TYPE_SCE], AAC_CHANNEL_FRONT, gb, num_front);
  174. decode_channel_map(new_che_pos[TYPE_CPE], new_che_pos[TYPE_SCE], AAC_CHANNEL_SIDE, gb, num_side );
  175. decode_channel_map(new_che_pos[TYPE_CPE], new_che_pos[TYPE_SCE], AAC_CHANNEL_BACK, gb, num_back );
  176. decode_channel_map(NULL, new_che_pos[TYPE_LFE], AAC_CHANNEL_LFE, gb, num_lfe );
  177. skip_bits_long(gb, 4 * num_assoc_data);
  178. decode_channel_map(new_che_pos[TYPE_CCE], new_che_pos[TYPE_CCE], AAC_CHANNEL_CC, gb, num_cc );
  179. align_get_bits(gb);
  180. /* comment field, first byte is length */
  181. skip_bits_long(gb, 8 * get_bits(gb, 8));
  182. return 0;
  183. }
  184. /**
  185. * Set up channel positions based on a default channel configuration
  186. * as specified in table 1.17.
  187. *
  188. * @param new_che_pos New channel position configuration - we only do something if it differs from the current one.
  189. *
  190. * @return Returns error status. 0 - OK, !0 - error
  191. */
  192. static int set_default_channel_config(AACContext *ac, enum ChannelPosition new_che_pos[4][MAX_ELEM_ID],
  193. int channel_config)
  194. {
  195. if(channel_config < 1 || channel_config > 7) {
  196. av_log(ac->avccontext, AV_LOG_ERROR, "invalid default channel configuration (%d)\n",
  197. channel_config);
  198. return -1;
  199. }
  200. /* default channel configurations:
  201. *
  202. * 1ch : front center (mono)
  203. * 2ch : L + R (stereo)
  204. * 3ch : front center + L + R
  205. * 4ch : front center + L + R + back center
  206. * 5ch : front center + L + R + back stereo
  207. * 6ch : front center + L + R + back stereo + LFE
  208. * 7ch : front center + L + R + outer front left + outer front right + back stereo + LFE
  209. */
  210. if(channel_config != 2)
  211. new_che_pos[TYPE_SCE][0] = AAC_CHANNEL_FRONT; // front center (or mono)
  212. if(channel_config > 1)
  213. new_che_pos[TYPE_CPE][0] = AAC_CHANNEL_FRONT; // L + R (or stereo)
  214. if(channel_config == 4)
  215. new_che_pos[TYPE_SCE][1] = AAC_CHANNEL_BACK; // back center
  216. if(channel_config > 4)
  217. new_che_pos[TYPE_CPE][(channel_config == 7) + 1]
  218. = AAC_CHANNEL_BACK; // back stereo
  219. if(channel_config > 5)
  220. new_che_pos[TYPE_LFE][0] = AAC_CHANNEL_LFE; // LFE
  221. if(channel_config == 7)
  222. new_che_pos[TYPE_CPE][1] = AAC_CHANNEL_FRONT; // outer front left + outer front right
  223. return 0;
  224. }
  225. /**
  226. * Decode GA "General Audio" specific configuration; reference: table 4.1.
  227. *
  228. * @return Returns error status. 0 - OK, !0 - error
  229. */
  230. static int decode_ga_specific_config(AACContext * ac, GetBitContext * gb, int channel_config) {
  231. enum ChannelPosition new_che_pos[4][MAX_ELEM_ID];
  232. int extension_flag, ret;
  233. if(get_bits1(gb)) { // frameLengthFlag
  234. av_log_missing_feature(ac->avccontext, "960/120 MDCT window is", 1);
  235. return -1;
  236. }
  237. if (get_bits1(gb)) // dependsOnCoreCoder
  238. skip_bits(gb, 14); // coreCoderDelay
  239. extension_flag = get_bits1(gb);
  240. if(ac->m4ac.object_type == AOT_AAC_SCALABLE ||
  241. ac->m4ac.object_type == AOT_ER_AAC_SCALABLE)
  242. skip_bits(gb, 3); // layerNr
  243. memset(new_che_pos, 0, 4 * MAX_ELEM_ID * sizeof(new_che_pos[0][0]));
  244. if (channel_config == 0) {
  245. skip_bits(gb, 4); // element_instance_tag
  246. if((ret = decode_pce(ac, new_che_pos, gb)))
  247. return ret;
  248. } else {
  249. if((ret = set_default_channel_config(ac, new_che_pos, channel_config)))
  250. return ret;
  251. }
  252. if((ret = output_configure(ac, ac->che_pos, new_che_pos)))
  253. return ret;
  254. if (extension_flag) {
  255. switch (ac->m4ac.object_type) {
  256. case AOT_ER_BSAC:
  257. skip_bits(gb, 5); // numOfSubFrame
  258. skip_bits(gb, 11); // layer_length
  259. break;
  260. case AOT_ER_AAC_LC:
  261. case AOT_ER_AAC_LTP:
  262. case AOT_ER_AAC_SCALABLE:
  263. case AOT_ER_AAC_LD:
  264. skip_bits(gb, 3); /* aacSectionDataResilienceFlag
  265. * aacScalefactorDataResilienceFlag
  266. * aacSpectralDataResilienceFlag
  267. */
  268. break;
  269. }
  270. skip_bits1(gb); // extensionFlag3 (TBD in version 3)
  271. }
  272. return 0;
  273. }
  274. /**
  275. * Decode audio specific configuration; reference: table 1.13.
  276. *
  277. * @param data pointer to AVCodecContext extradata
  278. * @param data_size size of AVCCodecContext extradata
  279. *
  280. * @return Returns error status. 0 - OK, !0 - error
  281. */
  282. static int decode_audio_specific_config(AACContext * ac, void *data, int data_size) {
  283. GetBitContext gb;
  284. int i;
  285. init_get_bits(&gb, data, data_size * 8);
  286. if((i = ff_mpeg4audio_get_config(&ac->m4ac, data, data_size)) < 0)
  287. return -1;
  288. if(ac->m4ac.sampling_index > 11) {
  289. av_log(ac->avccontext, AV_LOG_ERROR, "invalid sampling rate index %d\n", ac->m4ac.sampling_index);
  290. return -1;
  291. }
  292. skip_bits_long(&gb, i);
  293. switch (ac->m4ac.object_type) {
  294. case AOT_AAC_LC:
  295. if (decode_ga_specific_config(ac, &gb, ac->m4ac.chan_config))
  296. return -1;
  297. break;
  298. default:
  299. av_log(ac->avccontext, AV_LOG_ERROR, "Audio object type %s%d is not supported.\n",
  300. ac->m4ac.sbr == 1? "SBR+" : "", ac->m4ac.object_type);
  301. return -1;
  302. }
  303. return 0;
  304. }
  305. /**
  306. * linear congruential pseudorandom number generator
  307. *
  308. * @param previous_val pointer to the current state of the generator
  309. *
  310. * @return Returns a 32-bit pseudorandom integer
  311. */
  312. static av_always_inline int lcg_random(int previous_val) {
  313. return previous_val * 1664525 + 1013904223;
  314. }
  315. static av_cold int aac_decode_init(AVCodecContext * avccontext) {
  316. AACContext * ac = avccontext->priv_data;
  317. int i;
  318. ac->avccontext = avccontext;
  319. if (avccontext->extradata_size <= 0 ||
  320. decode_audio_specific_config(ac, avccontext->extradata, avccontext->extradata_size))
  321. return -1;
  322. avccontext->sample_fmt = SAMPLE_FMT_S16;
  323. avccontext->sample_rate = ac->m4ac.sample_rate;
  324. avccontext->frame_size = 1024;
  325. AAC_INIT_VLC_STATIC( 0, 144);
  326. AAC_INIT_VLC_STATIC( 1, 114);
  327. AAC_INIT_VLC_STATIC( 2, 188);
  328. AAC_INIT_VLC_STATIC( 3, 180);
  329. AAC_INIT_VLC_STATIC( 4, 172);
  330. AAC_INIT_VLC_STATIC( 5, 140);
  331. AAC_INIT_VLC_STATIC( 6, 168);
  332. AAC_INIT_VLC_STATIC( 7, 114);
  333. AAC_INIT_VLC_STATIC( 8, 262);
  334. AAC_INIT_VLC_STATIC( 9, 248);
  335. AAC_INIT_VLC_STATIC(10, 384);
  336. dsputil_init(&ac->dsp, avccontext);
  337. ac->random_state = 0x1f2e3d4c;
  338. // -1024 - Compensate wrong IMDCT method.
  339. // 32768 - Required to scale values to the correct range for the bias method
  340. // for float to int16 conversion.
  341. if(ac->dsp.float_to_int16 == ff_float_to_int16_c) {
  342. ac->add_bias = 385.0f;
  343. ac->sf_scale = 1. / (-1024. * 32768.);
  344. ac->sf_offset = 0;
  345. } else {
  346. ac->add_bias = 0.0f;
  347. ac->sf_scale = 1. / -1024.;
  348. ac->sf_offset = 60;
  349. }
  350. #ifndef CONFIG_HARDCODED_TABLES
  351. for (i = 0; i < 316; i++)
  352. ff_aac_pow2sf_tab[i] = pow(2, (i - 200)/4.);
  353. #endif /* CONFIG_HARDCODED_TABLES */
  354. INIT_VLC_STATIC(&vlc_scalefactors, 7, sizeof(ff_aac_scalefactor_code)/sizeof(ff_aac_scalefactor_code[0]),
  355. ff_aac_scalefactor_bits, sizeof(ff_aac_scalefactor_bits[0]), sizeof(ff_aac_scalefactor_bits[0]),
  356. ff_aac_scalefactor_code, sizeof(ff_aac_scalefactor_code[0]), sizeof(ff_aac_scalefactor_code[0]),
  357. 352);
  358. ff_mdct_init(&ac->mdct, 11, 1);
  359. ff_mdct_init(&ac->mdct_small, 8, 1);
  360. // window initialization
  361. ff_kbd_window_init(ff_aac_kbd_long_1024, 4.0, 1024);
  362. ff_kbd_window_init(ff_aac_kbd_short_128, 6.0, 128);
  363. ff_sine_window_init(ff_sine_1024, 1024);
  364. ff_sine_window_init(ff_sine_128, 128);
  365. return 0;
  366. }
  367. /**
  368. * Skip data_stream_element; reference: table 4.10.
  369. */
  370. static void skip_data_stream_element(GetBitContext * gb) {
  371. int byte_align = get_bits1(gb);
  372. int count = get_bits(gb, 8);
  373. if (count == 255)
  374. count += get_bits(gb, 8);
  375. if (byte_align)
  376. align_get_bits(gb);
  377. skip_bits_long(gb, 8 * count);
  378. }
  379. /**
  380. * Decode Individual Channel Stream info; reference: table 4.6.
  381. *
  382. * @param common_window Channels have independent [0], or shared [1], Individual Channel Stream information.
  383. */
  384. static int decode_ics_info(AACContext * ac, IndividualChannelStream * ics, GetBitContext * gb, int common_window) {
  385. if (get_bits1(gb)) {
  386. av_log(ac->avccontext, AV_LOG_ERROR, "Reserved bit set.\n");
  387. memset(ics, 0, sizeof(IndividualChannelStream));
  388. return -1;
  389. }
  390. ics->window_sequence[1] = ics->window_sequence[0];
  391. ics->window_sequence[0] = get_bits(gb, 2);
  392. ics->use_kb_window[1] = ics->use_kb_window[0];
  393. ics->use_kb_window[0] = get_bits1(gb);
  394. ics->num_window_groups = 1;
  395. ics->group_len[0] = 1;
  396. if (ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE) {
  397. int i;
  398. ics->max_sfb = get_bits(gb, 4);
  399. for (i = 0; i < 7; i++) {
  400. if (get_bits1(gb)) {
  401. ics->group_len[ics->num_window_groups-1]++;
  402. } else {
  403. ics->num_window_groups++;
  404. ics->group_len[ics->num_window_groups-1] = 1;
  405. }
  406. }
  407. ics->num_windows = 8;
  408. ics->swb_offset = swb_offset_128[ac->m4ac.sampling_index];
  409. ics->num_swb = ff_aac_num_swb_128[ac->m4ac.sampling_index];
  410. ics->tns_max_bands = tns_max_bands_128[ac->m4ac.sampling_index];
  411. } else {
  412. ics->max_sfb = get_bits(gb, 6);
  413. ics->num_windows = 1;
  414. ics->swb_offset = swb_offset_1024[ac->m4ac.sampling_index];
  415. ics->num_swb = ff_aac_num_swb_1024[ac->m4ac.sampling_index];
  416. ics->tns_max_bands = tns_max_bands_1024[ac->m4ac.sampling_index];
  417. if (get_bits1(gb)) {
  418. av_log_missing_feature(ac->avccontext, "Predictor bit set but LTP is", 1);
  419. memset(ics, 0, sizeof(IndividualChannelStream));
  420. return -1;
  421. }
  422. }
  423. if(ics->max_sfb > ics->num_swb) {
  424. av_log(ac->avccontext, AV_LOG_ERROR,
  425. "Number of scalefactor bands in group (%d) exceeds limit (%d).\n",
  426. ics->max_sfb, ics->num_swb);
  427. memset(ics, 0, sizeof(IndividualChannelStream));
  428. return -1;
  429. }
  430. return 0;
  431. }
  432. /**
  433. * Decode band types (section_data payload); reference: table 4.46.
  434. *
  435. * @param band_type array of the used band type
  436. * @param band_type_run_end array of the last scalefactor band of a band type run
  437. *
  438. * @return Returns error status. 0 - OK, !0 - error
  439. */
  440. static int decode_band_types(AACContext * ac, enum BandType band_type[120],
  441. int band_type_run_end[120], GetBitContext * gb, IndividualChannelStream * ics) {
  442. int g, idx = 0;
  443. const int bits = (ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE) ? 3 : 5;
  444. for (g = 0; g < ics->num_window_groups; g++) {
  445. int k = 0;
  446. while (k < ics->max_sfb) {
  447. uint8_t sect_len = k;
  448. int sect_len_incr;
  449. int sect_band_type = get_bits(gb, 4);
  450. if (sect_band_type == 12) {
  451. av_log(ac->avccontext, AV_LOG_ERROR, "invalid band type\n");
  452. return -1;
  453. }
  454. while ((sect_len_incr = get_bits(gb, bits)) == (1 << bits)-1)
  455. sect_len += sect_len_incr;
  456. sect_len += sect_len_incr;
  457. if (sect_len > ics->max_sfb) {
  458. av_log(ac->avccontext, AV_LOG_ERROR,
  459. "Number of bands (%d) exceeds limit (%d).\n",
  460. sect_len, ics->max_sfb);
  461. return -1;
  462. }
  463. for (; k < sect_len; k++) {
  464. band_type [idx] = sect_band_type;
  465. band_type_run_end[idx++] = sect_len;
  466. }
  467. }
  468. }
  469. return 0;
  470. }
  471. /**
  472. * Decode scalefactors; reference: table 4.47.
  473. *
  474. * @param global_gain first scalefactor value as scalefactors are differentially coded
  475. * @param band_type array of the used band type
  476. * @param band_type_run_end array of the last scalefactor band of a band type run
  477. * @param sf array of scalefactors or intensity stereo positions
  478. *
  479. * @return Returns error status. 0 - OK, !0 - error
  480. */
  481. static int decode_scalefactors(AACContext * ac, float sf[120], GetBitContext * gb,
  482. unsigned int global_gain, IndividualChannelStream * ics,
  483. enum BandType band_type[120], int band_type_run_end[120]) {
  484. const int sf_offset = ac->sf_offset + (ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE ? 12 : 0);
  485. int g, i, idx = 0;
  486. int offset[3] = { global_gain, global_gain - 90, 100 };
  487. int noise_flag = 1;
  488. static const char *sf_str[3] = { "Global gain", "Noise gain", "Intensity stereo position" };
  489. for (g = 0; g < ics->num_window_groups; g++) {
  490. for (i = 0; i < ics->max_sfb;) {
  491. int run_end = band_type_run_end[idx];
  492. if (band_type[idx] == ZERO_BT) {
  493. for(; i < run_end; i++, idx++)
  494. sf[idx] = 0.;
  495. }else if((band_type[idx] == INTENSITY_BT) || (band_type[idx] == INTENSITY_BT2)) {
  496. for(; i < run_end; i++, idx++) {
  497. offset[2] += get_vlc2(gb, vlc_scalefactors.table, 7, 3) - 60;
  498. if(offset[2] > 255U) {
  499. av_log(ac->avccontext, AV_LOG_ERROR,
  500. "%s (%d) out of range.\n", sf_str[2], offset[2]);
  501. return -1;
  502. }
  503. sf[idx] = ff_aac_pow2sf_tab[-offset[2] + 300];
  504. }
  505. }else if(band_type[idx] == NOISE_BT) {
  506. for(; i < run_end; i++, idx++) {
  507. if(noise_flag-- > 0)
  508. offset[1] += get_bits(gb, 9) - 256;
  509. else
  510. offset[1] += get_vlc2(gb, vlc_scalefactors.table, 7, 3) - 60;
  511. if(offset[1] > 255U) {
  512. av_log(ac->avccontext, AV_LOG_ERROR,
  513. "%s (%d) out of range.\n", sf_str[1], offset[1]);
  514. return -1;
  515. }
  516. sf[idx] = -ff_aac_pow2sf_tab[ offset[1] + sf_offset];
  517. }
  518. }else {
  519. for(; i < run_end; i++, idx++) {
  520. offset[0] += get_vlc2(gb, vlc_scalefactors.table, 7, 3) - 60;
  521. if(offset[0] > 255U) {
  522. av_log(ac->avccontext, AV_LOG_ERROR,
  523. "%s (%d) out of range.\n", sf_str[0], offset[0]);
  524. return -1;
  525. }
  526. sf[idx] = -ff_aac_pow2sf_tab[ offset[0] + sf_offset];
  527. }
  528. }
  529. }
  530. }
  531. return 0;
  532. }
  533. /**
  534. * Decode pulse data; reference: table 4.7.
  535. */
  536. static void decode_pulses(Pulse * pulse, GetBitContext * gb, const uint16_t * swb_offset) {
  537. int i;
  538. pulse->num_pulse = get_bits(gb, 2) + 1;
  539. pulse->pos[0] = swb_offset[get_bits(gb, 6)];
  540. pulse->pos[0] += get_bits(gb, 5);
  541. pulse->amp[0] = get_bits(gb, 4);
  542. for (i = 1; i < pulse->num_pulse; i++) {
  543. pulse->pos[i] = get_bits(gb, 5) + pulse->pos[i-1];
  544. pulse->amp[i] = get_bits(gb, 4);
  545. }
  546. }
  547. /**
  548. * Decode Temporal Noise Shaping data; reference: table 4.48.
  549. *
  550. * @return Returns error status. 0 - OK, !0 - error
  551. */
  552. static int decode_tns(AACContext * ac, TemporalNoiseShaping * tns,
  553. GetBitContext * gb, const IndividualChannelStream * ics) {
  554. int w, filt, i, coef_len, coef_res, coef_compress;
  555. const int is8 = ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE;
  556. const int tns_max_order = is8 ? 7 : ac->m4ac.object_type == AOT_AAC_MAIN ? 20 : 12;
  557. for (w = 0; w < ics->num_windows; w++) {
  558. if ((tns->n_filt[w] = get_bits(gb, 2 - is8))) {
  559. coef_res = get_bits1(gb);
  560. for (filt = 0; filt < tns->n_filt[w]; filt++) {
  561. int tmp2_idx;
  562. tns->length[w][filt] = get_bits(gb, 6 - 2*is8);
  563. if ((tns->order[w][filt] = get_bits(gb, 5 - 2*is8)) > tns_max_order) {
  564. av_log(ac->avccontext, AV_LOG_ERROR, "TNS filter order %d is greater than maximum %d.",
  565. tns->order[w][filt], tns_max_order);
  566. tns->order[w][filt] = 0;
  567. return -1;
  568. }
  569. if (tns->order[w][filt]) {
  570. tns->direction[w][filt] = get_bits1(gb);
  571. coef_compress = get_bits1(gb);
  572. coef_len = coef_res + 3 - coef_compress;
  573. tmp2_idx = 2*coef_compress + coef_res;
  574. for (i = 0; i < tns->order[w][filt]; i++)
  575. tns->coef[w][filt][i] = tns_tmp2_map[tmp2_idx][get_bits(gb, coef_len)];
  576. }
  577. }
  578. }
  579. }
  580. return 0;
  581. }
  582. /**
  583. * Decode Mid/Side data; reference: table 4.54.
  584. *
  585. * @param ms_present Indicates mid/side stereo presence. [0] mask is all 0s;
  586. * [1] mask is decoded from bitstream; [2] mask is all 1s;
  587. * [3] reserved for scalable AAC
  588. */
  589. static void decode_mid_side_stereo(ChannelElement * cpe, GetBitContext * gb,
  590. int ms_present) {
  591. int idx;
  592. if (ms_present == 1) {
  593. for (idx = 0; idx < cpe->ch[0].ics.num_window_groups * cpe->ch[0].ics.max_sfb; idx++)
  594. cpe->ms_mask[idx] = get_bits1(gb);
  595. } else if (ms_present == 2) {
  596. memset(cpe->ms_mask, 1, cpe->ch[0].ics.num_window_groups * cpe->ch[0].ics.max_sfb * sizeof(cpe->ms_mask[0]));
  597. }
  598. }
  599. /**
  600. * Decode spectral data; reference: table 4.50.
  601. * Dequantize and scale spectral data; reference: 4.6.3.3.
  602. *
  603. * @param coef array of dequantized, scaled spectral data
  604. * @param sf array of scalefactors or intensity stereo positions
  605. * @param pulse_present set if pulses are present
  606. * @param pulse pointer to pulse data struct
  607. * @param band_type array of the used band type
  608. *
  609. * @return Returns error status. 0 - OK, !0 - error
  610. */
  611. static int decode_spectrum_and_dequant(AACContext * ac, float coef[1024], GetBitContext * gb, float sf[120],
  612. int pulse_present, const Pulse * pulse, const IndividualChannelStream * ics, enum BandType band_type[120]) {
  613. int i, k, g, idx = 0;
  614. const int c = 1024/ics->num_windows;
  615. const uint16_t * offsets = ics->swb_offset;
  616. float *coef_base = coef;
  617. for (g = 0; g < ics->num_windows; g++)
  618. memset(coef + g * 128 + offsets[ics->max_sfb], 0, sizeof(float)*(c - offsets[ics->max_sfb]));
  619. for (g = 0; g < ics->num_window_groups; g++) {
  620. for (i = 0; i < ics->max_sfb; i++, idx++) {
  621. const int cur_band_type = band_type[idx];
  622. const int dim = cur_band_type >= FIRST_PAIR_BT ? 2 : 4;
  623. const int is_cb_unsigned = IS_CODEBOOK_UNSIGNED(cur_band_type);
  624. int group;
  625. if (cur_band_type == ZERO_BT) {
  626. for (group = 0; group < ics->group_len[g]; group++) {
  627. memset(coef + group * 128 + offsets[i], 0, (offsets[i+1] - offsets[i])*sizeof(float));
  628. }
  629. }else if (cur_band_type == NOISE_BT) {
  630. const float scale = sf[idx] / ((offsets[i+1] - offsets[i]) * PNS_MEAN_ENERGY);
  631. for (group = 0; group < ics->group_len[g]; group++) {
  632. for (k = offsets[i]; k < offsets[i+1]; k++) {
  633. ac->random_state = lcg_random(ac->random_state);
  634. coef[group*128+k] = ac->random_state * scale;
  635. }
  636. }
  637. }else if (cur_band_type != INTENSITY_BT2 && cur_band_type != INTENSITY_BT) {
  638. for (group = 0; group < ics->group_len[g]; group++) {
  639. for (k = offsets[i]; k < offsets[i+1]; k += dim) {
  640. const int index = get_vlc2(gb, vlc_spectral[cur_band_type - 1].table, 6, 3);
  641. const int coef_tmp_idx = (group << 7) + k;
  642. const float *vq_ptr;
  643. int j;
  644. if(index >= ff_aac_spectral_sizes[cur_band_type - 1]) {
  645. av_log(ac->avccontext, AV_LOG_ERROR,
  646. "Read beyond end of ff_aac_codebook_vectors[%d][]. index %d >= %d\n",
  647. cur_band_type - 1, index, ff_aac_spectral_sizes[cur_band_type - 1]);
  648. return -1;
  649. }
  650. vq_ptr = &ff_aac_codebook_vectors[cur_band_type - 1][index * dim];
  651. if (is_cb_unsigned) {
  652. for (j = 0; j < dim; j++)
  653. if (vq_ptr[j])
  654. coef[coef_tmp_idx + j] = 1 - 2*(int)get_bits1(gb);
  655. }else {
  656. for (j = 0; j < dim; j++)
  657. coef[coef_tmp_idx + j] = 1.0f;
  658. }
  659. if (cur_band_type == ESC_BT) {
  660. for (j = 0; j < 2; j++) {
  661. if (vq_ptr[j] == 64.0f) {
  662. int n = 4;
  663. /* The total length of escape_sequence must be < 22 bits according
  664. to the specification (i.e. max is 11111111110xxxxxxxxxx). */
  665. while (get_bits1(gb) && n < 15) n++;
  666. if(n == 15) {
  667. av_log(ac->avccontext, AV_LOG_ERROR, "error in spectral data, ESC overflow\n");
  668. return -1;
  669. }
  670. n = (1<<n) + get_bits(gb, n);
  671. coef[coef_tmp_idx + j] *= cbrtf(fabsf(n)) * n;
  672. }else
  673. coef[coef_tmp_idx + j] *= vq_ptr[j];
  674. }
  675. }else
  676. for (j = 0; j < dim; j++)
  677. coef[coef_tmp_idx + j] *= vq_ptr[j];
  678. for (j = 0; j < dim; j++)
  679. coef[coef_tmp_idx + j] *= sf[idx];
  680. }
  681. }
  682. }
  683. }
  684. coef += ics->group_len[g]<<7;
  685. }
  686. if (pulse_present) {
  687. idx = 0;
  688. for(i = 0; i < pulse->num_pulse; i++){
  689. float co = coef_base[ pulse->pos[i] ];
  690. while(offsets[idx + 1] <= pulse->pos[i])
  691. idx++;
  692. if (band_type[idx] != NOISE_BT && sf[idx]) {
  693. float ico = -pulse->amp[i];
  694. if (co) {
  695. co /= sf[idx];
  696. ico = co / sqrtf(sqrtf(fabsf(co))) + (co > 0 ? -ico : ico);
  697. }
  698. coef_base[ pulse->pos[i] ] = cbrtf(fabsf(ico)) * ico * sf[idx];
  699. }
  700. }
  701. }
  702. return 0;
  703. }
  704. /**
  705. * Decode an individual_channel_stream payload; reference: table 4.44.
  706. *
  707. * @param common_window Channels have independent [0], or shared [1], Individual Channel Stream information.
  708. * @param scale_flag scalable [1] or non-scalable [0] AAC (Unused until scalable AAC is implemented.)
  709. *
  710. * @return Returns error status. 0 - OK, !0 - error
  711. */
  712. static int decode_ics(AACContext * ac, SingleChannelElement * sce, GetBitContext * gb, int common_window, int scale_flag) {
  713. Pulse pulse;
  714. TemporalNoiseShaping * tns = &sce->tns;
  715. IndividualChannelStream * ics = &sce->ics;
  716. float * out = sce->coeffs;
  717. int global_gain, pulse_present = 0;
  718. /* This assignment is to silence a GCC warning about the variable being used
  719. * uninitialized when in fact it always is.
  720. */
  721. pulse.num_pulse = 0;
  722. global_gain = get_bits(gb, 8);
  723. if (!common_window && !scale_flag) {
  724. if (decode_ics_info(ac, ics, gb, 0) < 0)
  725. return -1;
  726. }
  727. if (decode_band_types(ac, sce->band_type, sce->band_type_run_end, gb, ics) < 0)
  728. return -1;
  729. if (decode_scalefactors(ac, sce->sf, gb, global_gain, ics, sce->band_type, sce->band_type_run_end) < 0)
  730. return -1;
  731. pulse_present = 0;
  732. if (!scale_flag) {
  733. if ((pulse_present = get_bits1(gb))) {
  734. if (ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE) {
  735. av_log(ac->avccontext, AV_LOG_ERROR, "Pulse tool not allowed in eight short sequence.\n");
  736. return -1;
  737. }
  738. decode_pulses(&pulse, gb, ics->swb_offset);
  739. }
  740. if ((tns->present = get_bits1(gb)) && decode_tns(ac, tns, gb, ics))
  741. return -1;
  742. if (get_bits1(gb)) {
  743. av_log_missing_feature(ac->avccontext, "SSR", 1);
  744. return -1;
  745. }
  746. }
  747. if (decode_spectrum_and_dequant(ac, out, gb, sce->sf, pulse_present, &pulse, ics, sce->band_type) < 0)
  748. return -1;
  749. return 0;
  750. }
  751. /**
  752. * Mid/Side stereo decoding; reference: 4.6.8.1.3.
  753. */
  754. static void apply_mid_side_stereo(ChannelElement * cpe) {
  755. const IndividualChannelStream * ics = &cpe->ch[0].ics;
  756. float *ch0 = cpe->ch[0].coeffs;
  757. float *ch1 = cpe->ch[1].coeffs;
  758. int g, i, k, group, idx = 0;
  759. const uint16_t * offsets = ics->swb_offset;
  760. for (g = 0; g < ics->num_window_groups; g++) {
  761. for (i = 0; i < ics->max_sfb; i++, idx++) {
  762. if (cpe->ms_mask[idx] &&
  763. cpe->ch[0].band_type[idx] < NOISE_BT && cpe->ch[1].band_type[idx] < NOISE_BT) {
  764. for (group = 0; group < ics->group_len[g]; group++) {
  765. for (k = offsets[i]; k < offsets[i+1]; k++) {
  766. float tmp = ch0[group*128 + k] - ch1[group*128 + k];
  767. ch0[group*128 + k] += ch1[group*128 + k];
  768. ch1[group*128 + k] = tmp;
  769. }
  770. }
  771. }
  772. }
  773. ch0 += ics->group_len[g]*128;
  774. ch1 += ics->group_len[g]*128;
  775. }
  776. }
  777. /**
  778. * intensity stereo decoding; reference: 4.6.8.2.3
  779. *
  780. * @param ms_present Indicates mid/side stereo presence. [0] mask is all 0s;
  781. * [1] mask is decoded from bitstream; [2] mask is all 1s;
  782. * [3] reserved for scalable AAC
  783. */
  784. static void apply_intensity_stereo(ChannelElement * cpe, int ms_present) {
  785. const IndividualChannelStream * ics = &cpe->ch[1].ics;
  786. SingleChannelElement * sce1 = &cpe->ch[1];
  787. float *coef0 = cpe->ch[0].coeffs, *coef1 = cpe->ch[1].coeffs;
  788. const uint16_t * offsets = ics->swb_offset;
  789. int g, group, i, k, idx = 0;
  790. int c;
  791. float scale;
  792. for (g = 0; g < ics->num_window_groups; g++) {
  793. for (i = 0; i < ics->max_sfb;) {
  794. if (sce1->band_type[idx] == INTENSITY_BT || sce1->band_type[idx] == INTENSITY_BT2) {
  795. const int bt_run_end = sce1->band_type_run_end[idx];
  796. for (; i < bt_run_end; i++, idx++) {
  797. c = -1 + 2 * (sce1->band_type[idx] - 14);
  798. if (ms_present)
  799. c *= 1 - 2 * cpe->ms_mask[idx];
  800. scale = c * sce1->sf[idx];
  801. for (group = 0; group < ics->group_len[g]; group++)
  802. for (k = offsets[i]; k < offsets[i+1]; k++)
  803. coef1[group*128 + k] = scale * coef0[group*128 + k];
  804. }
  805. } else {
  806. int bt_run_end = sce1->band_type_run_end[idx];
  807. idx += bt_run_end - i;
  808. i = bt_run_end;
  809. }
  810. }
  811. coef0 += ics->group_len[g]*128;
  812. coef1 += ics->group_len[g]*128;
  813. }
  814. }
  815. /**
  816. * Decode a channel_pair_element; reference: table 4.4.
  817. *
  818. * @param elem_id Identifies the instance of a syntax element.
  819. *
  820. * @return Returns error status. 0 - OK, !0 - error
  821. */
  822. static int decode_cpe(AACContext * ac, GetBitContext * gb, int elem_id) {
  823. int i, ret, common_window, ms_present = 0;
  824. ChannelElement * cpe;
  825. cpe = ac->che[TYPE_CPE][elem_id];
  826. common_window = get_bits1(gb);
  827. if (common_window) {
  828. if (decode_ics_info(ac, &cpe->ch[0].ics, gb, 1))
  829. return -1;
  830. i = cpe->ch[1].ics.use_kb_window[0];
  831. cpe->ch[1].ics = cpe->ch[0].ics;
  832. cpe->ch[1].ics.use_kb_window[1] = i;
  833. ms_present = get_bits(gb, 2);
  834. if(ms_present == 3) {
  835. av_log(ac->avccontext, AV_LOG_ERROR, "ms_present = 3 is reserved.\n");
  836. return -1;
  837. } else if(ms_present)
  838. decode_mid_side_stereo(cpe, gb, ms_present);
  839. }
  840. if ((ret = decode_ics(ac, &cpe->ch[0], gb, common_window, 0)))
  841. return ret;
  842. if ((ret = decode_ics(ac, &cpe->ch[1], gb, common_window, 0)))
  843. return ret;
  844. if (common_window && ms_present)
  845. apply_mid_side_stereo(cpe);
  846. apply_intensity_stereo(cpe, ms_present);
  847. return 0;
  848. }
  849. /**
  850. * Decode coupling_channel_element; reference: table 4.8.
  851. *
  852. * @param elem_id Identifies the instance of a syntax element.
  853. *
  854. * @return Returns error status. 0 - OK, !0 - error
  855. */
  856. static int decode_cce(AACContext * ac, GetBitContext * gb, ChannelElement * che) {
  857. int num_gain = 0;
  858. int c, g, sfb, ret, idx = 0;
  859. int sign;
  860. float scale;
  861. SingleChannelElement * sce = &che->ch[0];
  862. ChannelCoupling * coup = &che->coup;
  863. coup->coupling_point = 2*get_bits1(gb);
  864. coup->num_coupled = get_bits(gb, 3);
  865. for (c = 0; c <= coup->num_coupled; c++) {
  866. num_gain++;
  867. coup->type[c] = get_bits1(gb) ? TYPE_CPE : TYPE_SCE;
  868. coup->id_select[c] = get_bits(gb, 4);
  869. if (coup->type[c] == TYPE_CPE) {
  870. coup->ch_select[c] = get_bits(gb, 2);
  871. if (coup->ch_select[c] == 3)
  872. num_gain++;
  873. } else
  874. coup->ch_select[c] = 1;
  875. }
  876. coup->coupling_point += get_bits1(gb);
  877. if (coup->coupling_point == 2) {
  878. av_log(ac->avccontext, AV_LOG_ERROR,
  879. "Independently switched CCE with 'invalid' domain signalled.\n");
  880. memset(coup, 0, sizeof(ChannelCoupling));
  881. return -1;
  882. }
  883. sign = get_bits(gb, 1);
  884. scale = pow(2., pow(2., get_bits(gb, 2) - 3));
  885. if ((ret = decode_ics(ac, sce, gb, 0, 0)))
  886. return ret;
  887. for (c = 0; c < num_gain; c++) {
  888. int cge = 1;
  889. int gain = 0;
  890. float gain_cache = 1.;
  891. if (c) {
  892. cge = coup->coupling_point == AFTER_IMDCT ? 1 : get_bits1(gb);
  893. gain = cge ? get_vlc2(gb, vlc_scalefactors.table, 7, 3) - 60: 0;
  894. gain_cache = pow(scale, gain);
  895. }
  896. for (g = 0; g < sce->ics.num_window_groups; g++)
  897. for (sfb = 0; sfb < sce->ics.max_sfb; sfb++, idx++)
  898. if (sce->band_type[idx] != ZERO_BT) {
  899. if (!cge) {
  900. int t = get_vlc2(gb, vlc_scalefactors.table, 7, 3) - 60;
  901. if (t) {
  902. int s = 1;
  903. if (sign) {
  904. s -= 2 * (t & 0x1);
  905. t >>= 1;
  906. }
  907. gain += t;
  908. gain_cache = pow(scale, gain) * s;
  909. }
  910. }
  911. coup->gain[c][idx] = gain_cache;
  912. }
  913. }
  914. return 0;
  915. }
  916. /**
  917. * Decode Spectral Band Replication extension data; reference: table 4.55.
  918. *
  919. * @param crc flag indicating the presence of CRC checksum
  920. * @param cnt length of TYPE_FIL syntactic element in bytes
  921. *
  922. * @return Returns number of bytes consumed from the TYPE_FIL element.
  923. */
  924. static int decode_sbr_extension(AACContext * ac, GetBitContext * gb, int crc, int cnt) {
  925. // TODO : sbr_extension implementation
  926. av_log_missing_feature(ac->avccontext, "SBR", 0);
  927. skip_bits_long(gb, 8*cnt - 4); // -4 due to reading extension type
  928. return cnt;
  929. }
  930. /**
  931. * Parse whether channels are to be excluded from Dynamic Range Compression; reference: table 4.53.
  932. *
  933. * @return Returns number of bytes consumed.
  934. */
  935. static int decode_drc_channel_exclusions(DynamicRangeControl *che_drc, GetBitContext * gb) {
  936. int i;
  937. int num_excl_chan = 0;
  938. do {
  939. for (i = 0; i < 7; i++)
  940. che_drc->exclude_mask[num_excl_chan++] = get_bits1(gb);
  941. } while (num_excl_chan < MAX_CHANNELS - 7 && get_bits1(gb));
  942. return num_excl_chan / 7;
  943. }
  944. /**
  945. * Decode dynamic range information; reference: table 4.52.
  946. *
  947. * @param cnt length of TYPE_FIL syntactic element in bytes
  948. *
  949. * @return Returns number of bytes consumed.
  950. */
  951. static int decode_dynamic_range(DynamicRangeControl *che_drc, GetBitContext * gb, int cnt) {
  952. int n = 1;
  953. int drc_num_bands = 1;
  954. int i;
  955. /* pce_tag_present? */
  956. if(get_bits1(gb)) {
  957. che_drc->pce_instance_tag = get_bits(gb, 4);
  958. skip_bits(gb, 4); // tag_reserved_bits
  959. n++;
  960. }
  961. /* excluded_chns_present? */
  962. if(get_bits1(gb)) {
  963. n += decode_drc_channel_exclusions(che_drc, gb);
  964. }
  965. /* drc_bands_present? */
  966. if (get_bits1(gb)) {
  967. che_drc->band_incr = get_bits(gb, 4);
  968. che_drc->interpolation_scheme = get_bits(gb, 4);
  969. n++;
  970. drc_num_bands += che_drc->band_incr;
  971. for (i = 0; i < drc_num_bands; i++) {
  972. che_drc->band_top[i] = get_bits(gb, 8);
  973. n++;
  974. }
  975. }
  976. /* prog_ref_level_present? */
  977. if (get_bits1(gb)) {
  978. che_drc->prog_ref_level = get_bits(gb, 7);
  979. skip_bits1(gb); // prog_ref_level_reserved_bits
  980. n++;
  981. }
  982. for (i = 0; i < drc_num_bands; i++) {
  983. che_drc->dyn_rng_sgn[i] = get_bits1(gb);
  984. che_drc->dyn_rng_ctl[i] = get_bits(gb, 7);
  985. n++;
  986. }
  987. return n;
  988. }
  989. /**
  990. * Decode extension data (incomplete); reference: table 4.51.
  991. *
  992. * @param cnt length of TYPE_FIL syntactic element in bytes
  993. *
  994. * @return Returns number of bytes consumed
  995. */
  996. static int decode_extension_payload(AACContext * ac, GetBitContext * gb, int cnt) {
  997. int crc_flag = 0;
  998. int res = cnt;
  999. switch (get_bits(gb, 4)) { // extension type
  1000. case EXT_SBR_DATA_CRC:
  1001. crc_flag++;
  1002. case EXT_SBR_DATA:
  1003. res = decode_sbr_extension(ac, gb, crc_flag, cnt);
  1004. break;
  1005. case EXT_DYNAMIC_RANGE:
  1006. res = decode_dynamic_range(&ac->che_drc, gb, cnt);
  1007. break;
  1008. case EXT_FILL:
  1009. case EXT_FILL_DATA:
  1010. case EXT_DATA_ELEMENT:
  1011. default:
  1012. skip_bits_long(gb, 8*cnt - 4);
  1013. break;
  1014. };
  1015. return res;
  1016. }
  1017. /**
  1018. * Decode Temporal Noise Shaping filter coefficients and apply all-pole filters; reference: 4.6.9.3.
  1019. *
  1020. * @param decode 1 if tool is used normally, 0 if tool is used in LTP.
  1021. * @param coef spectral coefficients
  1022. */
  1023. static void apply_tns(float coef[1024], TemporalNoiseShaping * tns, IndividualChannelStream * ics, int decode) {
  1024. const int mmm = FFMIN(ics->tns_max_bands, ics->max_sfb);
  1025. int w, filt, m, i;
  1026. int bottom, top, order, start, end, size, inc;
  1027. float lpc[TNS_MAX_ORDER];
  1028. for (w = 0; w < ics->num_windows; w++) {
  1029. bottom = ics->num_swb;
  1030. for (filt = 0; filt < tns->n_filt[w]; filt++) {
  1031. top = bottom;
  1032. bottom = FFMAX(0, top - tns->length[w][filt]);
  1033. order = tns->order[w][filt];
  1034. if (order == 0)
  1035. continue;
  1036. // tns_decode_coef
  1037. compute_lpc_coefs(tns->coef[w][filt], order, lpc, 0, 0, 0);
  1038. start = ics->swb_offset[FFMIN(bottom, mmm)];
  1039. end = ics->swb_offset[FFMIN( top, mmm)];
  1040. if ((size = end - start) <= 0)
  1041. continue;
  1042. if (tns->direction[w][filt]) {
  1043. inc = -1; start = end - 1;
  1044. } else {
  1045. inc = 1;
  1046. }
  1047. start += w * 128;
  1048. // ar filter
  1049. for (m = 0; m < size; m++, start += inc)
  1050. for (i = 1; i <= FFMIN(m, order); i++)
  1051. coef[start] -= coef[start - i*inc] * lpc[i-1];
  1052. }
  1053. }
  1054. }
  1055. /**
  1056. * Conduct IMDCT and windowing.
  1057. */
  1058. static void imdct_and_windowing(AACContext * ac, SingleChannelElement * sce) {
  1059. IndividualChannelStream * ics = &sce->ics;
  1060. float * in = sce->coeffs;
  1061. float * out = sce->ret;
  1062. float * saved = sce->saved;
  1063. const float * swindow = ics->use_kb_window[0] ? ff_aac_kbd_short_128 : ff_sine_128;
  1064. const float * lwindow_prev = ics->use_kb_window[1] ? ff_aac_kbd_long_1024 : ff_sine_1024;
  1065. const float * swindow_prev = ics->use_kb_window[1] ? ff_aac_kbd_short_128 : ff_sine_128;
  1066. float * buf = ac->buf_mdct;
  1067. DECLARE_ALIGNED(16, float, temp[128]);
  1068. int i;
  1069. // imdct
  1070. if (ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE) {
  1071. if (ics->window_sequence[1] == ONLY_LONG_SEQUENCE || ics->window_sequence[1] == LONG_STOP_SEQUENCE)
  1072. av_log(ac->avccontext, AV_LOG_WARNING,
  1073. "Transition from an ONLY_LONG or LONG_STOP to an EIGHT_SHORT sequence detected. "
  1074. "If you heard an audible artifact, please submit the sample to the FFmpeg developers.\n");
  1075. for (i = 0; i < 1024; i += 128)
  1076. ff_imdct_half(&ac->mdct_small, buf + i, in + i);
  1077. } else
  1078. ff_imdct_half(&ac->mdct, buf, in);
  1079. /* window overlapping
  1080. * NOTE: To simplify the overlapping code, all 'meaningless' short to long
  1081. * and long to short transitions are considered to be short to short
  1082. * transitions. This leaves just two cases (long to long and short to short)
  1083. * with a little special sauce for EIGHT_SHORT_SEQUENCE.
  1084. */
  1085. if ((ics->window_sequence[1] == ONLY_LONG_SEQUENCE || ics->window_sequence[1] == LONG_STOP_SEQUENCE) &&
  1086. (ics->window_sequence[0] == ONLY_LONG_SEQUENCE || ics->window_sequence[0] == LONG_START_SEQUENCE)) {
  1087. ac->dsp.vector_fmul_window( out, saved, buf, lwindow_prev, ac->add_bias, 512);
  1088. } else {
  1089. for (i = 0; i < 448; i++)
  1090. out[i] = saved[i] + ac->add_bias;
  1091. if (ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE) {
  1092. ac->dsp.vector_fmul_window(out + 448 + 0*128, saved + 448, buf + 0*128, swindow_prev, ac->add_bias, 64);
  1093. ac->dsp.vector_fmul_window(out + 448 + 1*128, buf + 0*128 + 64, buf + 1*128, swindow, ac->add_bias, 64);
  1094. ac->dsp.vector_fmul_window(out + 448 + 2*128, buf + 1*128 + 64, buf + 2*128, swindow, ac->add_bias, 64);
  1095. ac->dsp.vector_fmul_window(out + 448 + 3*128, buf + 2*128 + 64, buf + 3*128, swindow, ac->add_bias, 64);
  1096. ac->dsp.vector_fmul_window(temp, buf + 3*128 + 64, buf + 4*128, swindow, ac->add_bias, 64);
  1097. memcpy( out + 448 + 4*128, temp, 64 * sizeof(float));
  1098. } else {
  1099. ac->dsp.vector_fmul_window(out + 448, saved + 448, buf, swindow_prev, ac->add_bias, 64);
  1100. for (i = 576; i < 1024; i++)
  1101. out[i] = buf[i-512] + ac->add_bias;
  1102. }
  1103. }
  1104. // buffer update
  1105. if (ics->window_sequence[0] == EIGHT_SHORT_SEQUENCE) {
  1106. for (i = 0; i < 64; i++)
  1107. saved[i] = temp[64 + i] - ac->add_bias;
  1108. ac->dsp.vector_fmul_window(saved + 64, buf + 4*128 + 64, buf + 5*128, swindow, 0, 64);
  1109. ac->dsp.vector_fmul_window(saved + 192, buf + 5*128 + 64, buf + 6*128, swindow, 0, 64);
  1110. ac->dsp.vector_fmul_window(saved + 320, buf + 6*128 + 64, buf + 7*128, swindow, 0, 64);
  1111. memcpy( saved + 448, buf + 7*128 + 64, 64 * sizeof(float));
  1112. } else if (ics->window_sequence[0] == LONG_START_SEQUENCE) {
  1113. memcpy( saved, buf + 512, 448 * sizeof(float));
  1114. memcpy( saved + 448, buf + 7*128 + 64, 64 * sizeof(float));
  1115. } else { // LONG_STOP or ONLY_LONG
  1116. memcpy( saved, buf + 512, 512 * sizeof(float));
  1117. }
  1118. }
  1119. /**
  1120. * Apply dependent channel coupling (applied before IMDCT).
  1121. *
  1122. * @param index index into coupling gain array
  1123. */
  1124. static void apply_dependent_coupling(AACContext * ac, SingleChannelElement * sce, ChannelElement * cc, int index) {
  1125. IndividualChannelStream * ics = &cc->ch[0].ics;
  1126. const uint16_t * offsets = ics->swb_offset;
  1127. float * dest = sce->coeffs;
  1128. const float * src = cc->ch[0].coeffs;
  1129. int g, i, group, k, idx = 0;
  1130. if(ac->m4ac.object_type == AOT_AAC_LTP) {
  1131. av_log(ac->avccontext, AV_LOG_ERROR,
  1132. "Dependent coupling is not supported together with LTP\n");
  1133. return;
  1134. }
  1135. for (g = 0; g < ics->num_window_groups; g++) {
  1136. for (i = 0; i < ics->max_sfb; i++, idx++) {
  1137. if (cc->ch[0].band_type[idx] != ZERO_BT) {
  1138. for (group = 0; group < ics->group_len[g]; group++) {
  1139. for (k = offsets[i]; k < offsets[i+1]; k++) {
  1140. // XXX dsputil-ize
  1141. dest[group*128+k] += cc->coup.gain[index][idx] * src[group*128+k];
  1142. }
  1143. }
  1144. }
  1145. }
  1146. dest += ics->group_len[g]*128;
  1147. src += ics->group_len[g]*128;
  1148. }
  1149. }
  1150. /**
  1151. * Apply independent channel coupling (applied after IMDCT).
  1152. *
  1153. * @param index index into coupling gain array
  1154. */
  1155. static void apply_independent_coupling(AACContext * ac, SingleChannelElement * sce, ChannelElement * cc, int index) {
  1156. int i;
  1157. for (i = 0; i < 1024; i++)
  1158. sce->ret[i] += cc->coup.gain[index][0] * (cc->ch[0].ret[i] - ac->add_bias);
  1159. }
  1160. /**
  1161. * channel coupling transformation interface
  1162. *
  1163. * @param index index into coupling gain array
  1164. * @param apply_coupling_method pointer to (in)dependent coupling function
  1165. */
  1166. static void apply_channel_coupling(AACContext * ac, ChannelElement * cc,
  1167. void (*apply_coupling_method)(AACContext * ac, SingleChannelElement * sce, ChannelElement * cc, int index))
  1168. {
  1169. int c;
  1170. int index = 0;
  1171. ChannelCoupling * coup = &cc->coup;
  1172. for (c = 0; c <= coup->num_coupled; c++) {
  1173. if (ac->che[coup->type[c]][coup->id_select[c]]) {
  1174. if (coup->ch_select[c] != 2) {
  1175. apply_coupling_method(ac, &ac->che[coup->type[c]][coup->id_select[c]]->ch[0], cc, index);
  1176. if (coup->ch_select[c] != 0)
  1177. index++;
  1178. }
  1179. if (coup->ch_select[c] != 1)
  1180. apply_coupling_method(ac, &ac->che[coup->type[c]][coup->id_select[c]]->ch[1], cc, index++);
  1181. } else {
  1182. av_log(ac->avccontext, AV_LOG_ERROR,
  1183. "coupling target %sE[%d] not available\n",
  1184. coup->type[c] == TYPE_CPE ? "CP" : "SC", coup->id_select[c]);
  1185. break;
  1186. }
  1187. }
  1188. }
  1189. /**
  1190. * Convert spectral data to float samples, applying all supported tools as appropriate.
  1191. */
  1192. static void spectral_to_sample(AACContext * ac) {
  1193. int i, type;
  1194. for (i = 0; i < MAX_ELEM_ID; i++) {
  1195. for(type = 0; type < 4; type++) {
  1196. ChannelElement *che = ac->che[type][i];
  1197. if(che) {
  1198. if(che->coup.coupling_point == BEFORE_TNS)
  1199. apply_channel_coupling(ac, che, apply_dependent_coupling);
  1200. if(che->ch[0].tns.present)
  1201. apply_tns(che->ch[0].coeffs, &che->ch[0].tns, &che->ch[0].ics, 1);
  1202. if(che->ch[1].tns.present)
  1203. apply_tns(che->ch[1].coeffs, &che->ch[1].tns, &che->ch[1].ics, 1);
  1204. if(che->coup.coupling_point == BETWEEN_TNS_AND_IMDCT)
  1205. apply_channel_coupling(ac, che, apply_dependent_coupling);
  1206. imdct_and_windowing(ac, &che->ch[0]);
  1207. if(type == TYPE_CPE)
  1208. imdct_and_windowing(ac, &che->ch[1]);
  1209. if(che->coup.coupling_point == AFTER_IMDCT)
  1210. apply_channel_coupling(ac, che, apply_independent_coupling);
  1211. }
  1212. }
  1213. }
  1214. }
  1215. static int aac_decode_frame(AVCodecContext * avccontext, void * data, int * data_size, const uint8_t * buf, int buf_size) {
  1216. AACContext * ac = avccontext->priv_data;
  1217. GetBitContext gb;
  1218. enum RawDataBlockType elem_type;
  1219. int err, elem_id, data_size_tmp;
  1220. init_get_bits(&gb, buf, buf_size*8);
  1221. // parse
  1222. while ((elem_type = get_bits(&gb, 3)) != TYPE_END) {
  1223. elem_id = get_bits(&gb, 4);
  1224. err = -1;
  1225. if(elem_type == TYPE_SCE && elem_id == 1 &&
  1226. !ac->che[TYPE_SCE][elem_id] && ac->che[TYPE_LFE][0]) {
  1227. /* Some streams incorrectly code 5.1 audio as SCE[0] CPE[0] CPE[1] SCE[1]
  1228. instead of SCE[0] CPE[0] CPE[0] LFE[0]. If we seem to have
  1229. encountered such a stream, transfer the LFE[0] element to SCE[1] */
  1230. ac->che[TYPE_SCE][elem_id] = ac->che[TYPE_LFE][0];
  1231. ac->che[TYPE_LFE][0] = NULL;
  1232. }
  1233. if(elem_type < TYPE_DSE) {
  1234. if(!ac->che[elem_type][elem_id])
  1235. return -1;
  1236. if(elem_type != TYPE_CCE)
  1237. ac->che[elem_type][elem_id]->coup.coupling_point = 4;
  1238. }
  1239. switch (elem_type) {
  1240. case TYPE_SCE:
  1241. err = decode_ics(ac, &ac->che[TYPE_SCE][elem_id]->ch[0], &gb, 0, 0);
  1242. break;
  1243. case TYPE_CPE:
  1244. err = decode_cpe(ac, &gb, elem_id);
  1245. break;
  1246. case TYPE_CCE:
  1247. err = decode_cce(ac, &gb, ac->che[TYPE_CCE][elem_id]);
  1248. break;
  1249. case TYPE_LFE:
  1250. err = decode_ics(ac, &ac->che[TYPE_LFE][elem_id]->ch[0], &gb, 0, 0);
  1251. break;
  1252. case TYPE_DSE:
  1253. skip_data_stream_element(&gb);
  1254. err = 0;
  1255. break;
  1256. case TYPE_PCE:
  1257. {
  1258. enum ChannelPosition new_che_pos[4][MAX_ELEM_ID];
  1259. memset(new_che_pos, 0, 4 * MAX_ELEM_ID * sizeof(new_che_pos[0][0]));
  1260. if((err = decode_pce(ac, new_che_pos, &gb)))
  1261. break;
  1262. err = output_configure(ac, ac->che_pos, new_che_pos);
  1263. break;
  1264. }
  1265. case TYPE_FIL:
  1266. if (elem_id == 15)
  1267. elem_id += get_bits(&gb, 8) - 1;
  1268. while (elem_id > 0)
  1269. elem_id -= decode_extension_payload(ac, &gb, elem_id);
  1270. err = 0; /* FIXME */
  1271. break;
  1272. default:
  1273. err = -1; /* should not happen, but keeps compiler happy */
  1274. break;
  1275. }
  1276. if(err)
  1277. return err;
  1278. }
  1279. spectral_to_sample(ac);
  1280. if (!ac->is_saved) {
  1281. ac->is_saved = 1;
  1282. *data_size = 0;
  1283. return buf_size;
  1284. }
  1285. data_size_tmp = 1024 * avccontext->channels * sizeof(int16_t);
  1286. if(*data_size < data_size_tmp) {
  1287. av_log(avccontext, AV_LOG_ERROR,
  1288. "Output buffer too small (%d) or trying to output too many samples (%d) for this frame.\n",
  1289. *data_size, data_size_tmp);
  1290. return -1;
  1291. }
  1292. *data_size = data_size_tmp;
  1293. ac->dsp.float_to_int16_interleave(data, (const float **)ac->output_data, 1024, avccontext->channels);
  1294. return buf_size;
  1295. }
  1296. static av_cold int aac_decode_close(AVCodecContext * avccontext) {
  1297. AACContext * ac = avccontext->priv_data;
  1298. int i, type;
  1299. for (i = 0; i < MAX_ELEM_ID; i++) {
  1300. for(type = 0; type < 4; type++)
  1301. av_freep(&ac->che[type][i]);
  1302. }
  1303. ff_mdct_end(&ac->mdct);
  1304. ff_mdct_end(&ac->mdct_small);
  1305. return 0 ;
  1306. }
  1307. AVCodec aac_decoder = {
  1308. "aac",
  1309. CODEC_TYPE_AUDIO,
  1310. CODEC_ID_AAC,
  1311. sizeof(AACContext),
  1312. aac_decode_init,
  1313. NULL,
  1314. aac_decode_close,
  1315. aac_decode_frame,
  1316. .long_name = NULL_IF_CONFIG_SMALL("Advanced Audio Coding"),
  1317. .sample_fmts = (enum SampleFormat[]){SAMPLE_FMT_S16,SAMPLE_FMT_NONE},
  1318. };