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.

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