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.

2581 lines
91KB

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