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.

2544 lines
89KB

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