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.

1839 lines
67KB

  1. /*
  2. * AC-3 Audio Decoder
  3. * This code was developed as part of Google Summer of Code 2006.
  4. * E-AC-3 support was added as part of Google Summer of Code 2007.
  5. *
  6. * Copyright (c) 2006 Kartikey Mahendra BHATT (bhattkm at gmail dot com)
  7. * Copyright (c) 2007-2008 Bartlomiej Wolowiec <bartek.wolowiec@gmail.com>
  8. * Copyright (c) 2007 Justin Ruggles <justin.ruggles@gmail.com>
  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. #include <stdio.h>
  27. #include <stddef.h>
  28. #include <math.h>
  29. #include <string.h>
  30. #include "libavutil/channel_layout.h"
  31. #include "libavutil/crc.h"
  32. #include "libavutil/downmix_info.h"
  33. #include "libavutil/opt.h"
  34. #include "bswapdsp.h"
  35. #include "internal.h"
  36. #include "aac_ac3_parser.h"
  37. #include "ac3_parser_internal.h"
  38. #include "ac3dec.h"
  39. #include "ac3dec_data.h"
  40. #include "kbdwin.h"
  41. /**
  42. * table for ungrouping 3 values in 7 bits.
  43. * used for exponents and bap=2 mantissas
  44. */
  45. static uint8_t ungroup_3_in_7_bits_tab[128][3];
  46. /** tables for ungrouping mantissas */
  47. static int b1_mantissas[32][3];
  48. static int b2_mantissas[128][3];
  49. static int b3_mantissas[8];
  50. static int b4_mantissas[128][2];
  51. static int b5_mantissas[16];
  52. /**
  53. * Quantization table: levels for symmetric. bits for asymmetric.
  54. * reference: Table 7.18 Mapping of bap to Quantizer
  55. */
  56. static const uint8_t quantization_tab[16] = {
  57. 0, 3, 5, 7, 11, 15,
  58. 5, 6, 7, 8, 9, 10, 11, 12, 14, 16
  59. };
  60. #if (!USE_FIXED)
  61. /** dynamic range table. converts codes to scale factors. */
  62. static float dynamic_range_tab[256];
  63. float ff_ac3_heavy_dynamic_range_tab[256];
  64. #endif
  65. /** Adjustments in dB gain */
  66. static const float gain_levels[9] = {
  67. LEVEL_PLUS_3DB,
  68. LEVEL_PLUS_1POINT5DB,
  69. LEVEL_ONE,
  70. LEVEL_MINUS_1POINT5DB,
  71. LEVEL_MINUS_3DB,
  72. LEVEL_MINUS_4POINT5DB,
  73. LEVEL_MINUS_6DB,
  74. LEVEL_ZERO,
  75. LEVEL_MINUS_9DB
  76. };
  77. /** Adjustments in dB gain (LFE, +10 to -21 dB) */
  78. static const float gain_levels_lfe[32] = {
  79. 3.162275, 2.818382, 2.511886, 2.238719, 1.995261, 1.778278, 1.584893,
  80. 1.412536, 1.258924, 1.122018, 1.000000, 0.891251, 0.794328, 0.707946,
  81. 0.630957, 0.562341, 0.501187, 0.446683, 0.398107, 0.354813, 0.316227,
  82. 0.281838, 0.251188, 0.223872, 0.199526, 0.177828, 0.158489, 0.141253,
  83. 0.125892, 0.112201, 0.100000, 0.089125
  84. };
  85. /**
  86. * Table for default stereo downmixing coefficients
  87. * reference: Section 7.8.2 Downmixing Into Two Channels
  88. */
  89. static const uint8_t ac3_default_coeffs[8][5][2] = {
  90. { { 2, 7 }, { 7, 2 }, },
  91. { { 4, 4 }, },
  92. { { 2, 7 }, { 7, 2 }, },
  93. { { 2, 7 }, { 5, 5 }, { 7, 2 }, },
  94. { { 2, 7 }, { 7, 2 }, { 6, 6 }, },
  95. { { 2, 7 }, { 5, 5 }, { 7, 2 }, { 8, 8 }, },
  96. { { 2, 7 }, { 7, 2 }, { 6, 7 }, { 7, 6 }, },
  97. { { 2, 7 }, { 5, 5 }, { 7, 2 }, { 6, 7 }, { 7, 6 }, },
  98. };
  99. static const uint64_t custom_channel_map_locations[16][2] = {
  100. { 1, AV_CH_FRONT_LEFT },
  101. { 1, AV_CH_FRONT_CENTER },
  102. { 1, AV_CH_FRONT_RIGHT },
  103. { 1, AV_CH_SIDE_LEFT },
  104. { 1, AV_CH_SIDE_RIGHT },
  105. { 0, AV_CH_FRONT_LEFT_OF_CENTER | AV_CH_FRONT_RIGHT_OF_CENTER },
  106. { 0, AV_CH_BACK_LEFT | AV_CH_BACK_RIGHT },
  107. { 0, AV_CH_BACK_CENTER },
  108. { 0, AV_CH_TOP_CENTER },
  109. { 0, AV_CH_SURROUND_DIRECT_LEFT | AV_CH_SURROUND_DIRECT_RIGHT },
  110. { 0, AV_CH_WIDE_LEFT | AV_CH_WIDE_RIGHT },
  111. { 0, AV_CH_TOP_FRONT_LEFT | AV_CH_TOP_FRONT_RIGHT},
  112. { 0, AV_CH_TOP_FRONT_CENTER },
  113. { 0, AV_CH_TOP_BACK_LEFT | AV_CH_TOP_BACK_RIGHT },
  114. { 0, AV_CH_LOW_FREQUENCY_2 },
  115. { 1, AV_CH_LOW_FREQUENCY },
  116. };
  117. /**
  118. * Symmetrical Dequantization
  119. * reference: Section 7.3.3 Expansion of Mantissas for Symmetrical Quantization
  120. * Tables 7.19 to 7.23
  121. */
  122. static inline int
  123. symmetric_dequant(int code, int levels)
  124. {
  125. return ((code - (levels >> 1)) * (1 << 24)) / levels;
  126. }
  127. /*
  128. * Initialize tables at runtime.
  129. */
  130. static av_cold void ac3_tables_init(void)
  131. {
  132. int i;
  133. /* generate table for ungrouping 3 values in 7 bits
  134. reference: Section 7.1.3 Exponent Decoding */
  135. for (i = 0; i < 128; i++) {
  136. ungroup_3_in_7_bits_tab[i][0] = i / 25;
  137. ungroup_3_in_7_bits_tab[i][1] = (i % 25) / 5;
  138. ungroup_3_in_7_bits_tab[i][2] = (i % 25) % 5;
  139. }
  140. /* generate grouped mantissa tables
  141. reference: Section 7.3.5 Ungrouping of Mantissas */
  142. for (i = 0; i < 32; i++) {
  143. /* bap=1 mantissas */
  144. b1_mantissas[i][0] = symmetric_dequant(ff_ac3_ungroup_3_in_5_bits_tab[i][0], 3);
  145. b1_mantissas[i][1] = symmetric_dequant(ff_ac3_ungroup_3_in_5_bits_tab[i][1], 3);
  146. b1_mantissas[i][2] = symmetric_dequant(ff_ac3_ungroup_3_in_5_bits_tab[i][2], 3);
  147. }
  148. for (i = 0; i < 128; i++) {
  149. /* bap=2 mantissas */
  150. b2_mantissas[i][0] = symmetric_dequant(ungroup_3_in_7_bits_tab[i][0], 5);
  151. b2_mantissas[i][1] = symmetric_dequant(ungroup_3_in_7_bits_tab[i][1], 5);
  152. b2_mantissas[i][2] = symmetric_dequant(ungroup_3_in_7_bits_tab[i][2], 5);
  153. /* bap=4 mantissas */
  154. b4_mantissas[i][0] = symmetric_dequant(i / 11, 11);
  155. b4_mantissas[i][1] = symmetric_dequant(i % 11, 11);
  156. }
  157. /* generate ungrouped mantissa tables
  158. reference: Tables 7.21 and 7.23 */
  159. for (i = 0; i < 7; i++) {
  160. /* bap=3 mantissas */
  161. b3_mantissas[i] = symmetric_dequant(i, 7);
  162. }
  163. for (i = 0; i < 15; i++) {
  164. /* bap=5 mantissas */
  165. b5_mantissas[i] = symmetric_dequant(i, 15);
  166. }
  167. #if (!USE_FIXED)
  168. /* generate dynamic range table
  169. reference: Section 7.7.1 Dynamic Range Control */
  170. for (i = 0; i < 256; i++) {
  171. int v = (i >> 5) - ((i >> 7) << 3) - 5;
  172. dynamic_range_tab[i] = powf(2.0f, v) * ((i & 0x1F) | 0x20);
  173. }
  174. /* generate compr dynamic range table
  175. reference: Section 7.7.2 Heavy Compression */
  176. for (i = 0; i < 256; i++) {
  177. int v = (i >> 4) - ((i >> 7) << 4) - 4;
  178. ff_ac3_heavy_dynamic_range_tab[i] = powf(2.0f, v) * ((i & 0xF) | 0x10);
  179. }
  180. #endif
  181. }
  182. /**
  183. * AVCodec initialization
  184. */
  185. static av_cold int ac3_decode_init(AVCodecContext *avctx)
  186. {
  187. AC3DecodeContext *s = avctx->priv_data;
  188. int i;
  189. s->avctx = avctx;
  190. ac3_tables_init();
  191. ff_mdct_init(&s->imdct_256, 8, 1, 1.0);
  192. ff_mdct_init(&s->imdct_512, 9, 1, 1.0);
  193. AC3_RENAME(ff_kbd_window_init)(s->window, 5.0, 256);
  194. ff_bswapdsp_init(&s->bdsp);
  195. #if (USE_FIXED)
  196. s->fdsp = avpriv_alloc_fixed_dsp(avctx->flags & AV_CODEC_FLAG_BITEXACT);
  197. #else
  198. s->fdsp = avpriv_float_dsp_alloc(avctx->flags & AV_CODEC_FLAG_BITEXACT);
  199. ff_fmt_convert_init(&s->fmt_conv, avctx);
  200. #endif
  201. ff_ac3dsp_init(&s->ac3dsp, avctx->flags & AV_CODEC_FLAG_BITEXACT);
  202. av_lfg_init(&s->dith_state, 0);
  203. if (USE_FIXED)
  204. avctx->sample_fmt = AV_SAMPLE_FMT_S16P;
  205. else
  206. avctx->sample_fmt = AV_SAMPLE_FMT_FLTP;
  207. /* allow downmixing to stereo or mono */
  208. if (avctx->channels > 1 &&
  209. avctx->request_channel_layout == AV_CH_LAYOUT_MONO)
  210. avctx->channels = 1;
  211. else if (avctx->channels > 2 &&
  212. avctx->request_channel_layout == AV_CH_LAYOUT_STEREO)
  213. avctx->channels = 2;
  214. s->downmixed = 1;
  215. for (i = 0; i < AC3_MAX_CHANNELS; i++) {
  216. s->xcfptr[i] = s->transform_coeffs[i];
  217. s->dlyptr[i] = s->delay[i];
  218. }
  219. return 0;
  220. }
  221. /**
  222. * Parse the 'sync info' and 'bit stream info' from the AC-3 bitstream.
  223. * GetBitContext within AC3DecodeContext must point to
  224. * the start of the synchronized AC-3 bitstream.
  225. */
  226. static int ac3_parse_header(AC3DecodeContext *s)
  227. {
  228. GetBitContext *gbc = &s->gbc;
  229. int i;
  230. /* read the rest of the bsi. read twice for dual mono mode. */
  231. i = !s->channel_mode;
  232. do {
  233. s->dialog_normalization[(!s->channel_mode)-i] = -get_bits(gbc, 5);
  234. if (s->dialog_normalization[(!s->channel_mode)-i] == 0) {
  235. s->dialog_normalization[(!s->channel_mode)-i] = -31;
  236. }
  237. if (s->target_level != 0) {
  238. s->level_gain[(!s->channel_mode)-i] = powf(2.0f,
  239. (float)(s->target_level -
  240. s->dialog_normalization[(!s->channel_mode)-i])/6.0f);
  241. }
  242. if (s->compression_exists[(!s->channel_mode)-i] = get_bits1(gbc)) {
  243. s->heavy_dynamic_range[(!s->channel_mode)-i] =
  244. AC3_HEAVY_RANGE(get_bits(gbc, 8));
  245. }
  246. if (get_bits1(gbc))
  247. skip_bits(gbc, 8); //skip language code
  248. if (get_bits1(gbc))
  249. skip_bits(gbc, 7); //skip audio production information
  250. } while (i--);
  251. skip_bits(gbc, 2); //skip copyright bit and original bitstream bit
  252. /* skip the timecodes or parse the Alternate Bit Stream Syntax */
  253. if (s->bitstream_id != 6) {
  254. if (get_bits1(gbc))
  255. skip_bits(gbc, 14); //skip timecode1
  256. if (get_bits1(gbc))
  257. skip_bits(gbc, 14); //skip timecode2
  258. } else {
  259. if (get_bits1(gbc)) {
  260. s->preferred_downmix = get_bits(gbc, 2);
  261. s->center_mix_level_ltrt = get_bits(gbc, 3);
  262. s->surround_mix_level_ltrt = av_clip(get_bits(gbc, 3), 3, 7);
  263. s->center_mix_level = get_bits(gbc, 3);
  264. s->surround_mix_level = av_clip(get_bits(gbc, 3), 3, 7);
  265. }
  266. if (get_bits1(gbc)) {
  267. s->dolby_surround_ex_mode = get_bits(gbc, 2);
  268. s->dolby_headphone_mode = get_bits(gbc, 2);
  269. skip_bits(gbc, 10); // skip adconvtyp (1), xbsi2 (8), encinfo (1)
  270. }
  271. }
  272. /* skip additional bitstream info */
  273. if (get_bits1(gbc)) {
  274. i = get_bits(gbc, 6);
  275. do {
  276. skip_bits(gbc, 8);
  277. } while (i--);
  278. }
  279. return 0;
  280. }
  281. /**
  282. * Common function to parse AC-3 or E-AC-3 frame header
  283. */
  284. static int parse_frame_header(AC3DecodeContext *s)
  285. {
  286. AC3HeaderInfo hdr;
  287. int err;
  288. err = ff_ac3_parse_header(&s->gbc, &hdr);
  289. if (err)
  290. return err;
  291. /* get decoding parameters from header info */
  292. s->bit_alloc_params.sr_code = hdr.sr_code;
  293. s->bitstream_id = hdr.bitstream_id;
  294. s->bitstream_mode = hdr.bitstream_mode;
  295. s->channel_mode = hdr.channel_mode;
  296. s->lfe_on = hdr.lfe_on;
  297. s->bit_alloc_params.sr_shift = hdr.sr_shift;
  298. s->sample_rate = hdr.sample_rate;
  299. s->bit_rate = hdr.bit_rate;
  300. s->channels = hdr.channels;
  301. s->fbw_channels = s->channels - s->lfe_on;
  302. s->lfe_ch = s->fbw_channels + 1;
  303. s->frame_size = hdr.frame_size;
  304. s->superframe_size += hdr.frame_size;
  305. s->preferred_downmix = AC3_DMIXMOD_NOTINDICATED;
  306. s->center_mix_level = hdr.center_mix_level;
  307. s->center_mix_level_ltrt = 4; // -3.0dB
  308. s->surround_mix_level = hdr.surround_mix_level;
  309. s->surround_mix_level_ltrt = 4; // -3.0dB
  310. s->lfe_mix_level_exists = 0;
  311. s->num_blocks = hdr.num_blocks;
  312. s->frame_type = hdr.frame_type;
  313. s->substreamid = hdr.substreamid;
  314. s->dolby_surround_mode = hdr.dolby_surround_mode;
  315. s->dolby_surround_ex_mode = AC3_DSUREXMOD_NOTINDICATED;
  316. s->dolby_headphone_mode = AC3_DHEADPHONMOD_NOTINDICATED;
  317. if (s->lfe_on) {
  318. s->start_freq[s->lfe_ch] = 0;
  319. s->end_freq[s->lfe_ch] = 7;
  320. s->num_exp_groups[s->lfe_ch] = 2;
  321. s->channel_in_cpl[s->lfe_ch] = 0;
  322. }
  323. if (s->bitstream_id <= 10) {
  324. s->eac3 = 0;
  325. s->snr_offset_strategy = 2;
  326. s->block_switch_syntax = 1;
  327. s->dither_flag_syntax = 1;
  328. s->bit_allocation_syntax = 1;
  329. s->fast_gain_syntax = 0;
  330. s->first_cpl_leak = 0;
  331. s->dba_syntax = 1;
  332. s->skip_syntax = 1;
  333. memset(s->channel_uses_aht, 0, sizeof(s->channel_uses_aht));
  334. return ac3_parse_header(s);
  335. } else if (CONFIG_EAC3_DECODER) {
  336. s->eac3 = 1;
  337. return ff_eac3_parse_header(s);
  338. } else {
  339. av_log(s->avctx, AV_LOG_ERROR, "E-AC-3 support not compiled in\n");
  340. return AVERROR(ENOSYS);
  341. }
  342. }
  343. /**
  344. * Set stereo downmixing coefficients based on frame header info.
  345. * reference: Section 7.8.2 Downmixing Into Two Channels
  346. */
  347. static int set_downmix_coeffs(AC3DecodeContext *s)
  348. {
  349. int i;
  350. float cmix = gain_levels[s-> center_mix_level];
  351. float smix = gain_levels[s->surround_mix_level];
  352. float norm0, norm1;
  353. float downmix_coeffs[2][AC3_MAX_CHANNELS];
  354. if (!s->downmix_coeffs[0]) {
  355. s->downmix_coeffs[0] = av_malloc_array(2 * AC3_MAX_CHANNELS,
  356. sizeof(**s->downmix_coeffs));
  357. if (!s->downmix_coeffs[0])
  358. return AVERROR(ENOMEM);
  359. s->downmix_coeffs[1] = s->downmix_coeffs[0] + AC3_MAX_CHANNELS;
  360. }
  361. for (i = 0; i < s->fbw_channels; i++) {
  362. downmix_coeffs[0][i] = gain_levels[ac3_default_coeffs[s->channel_mode][i][0]];
  363. downmix_coeffs[1][i] = gain_levels[ac3_default_coeffs[s->channel_mode][i][1]];
  364. }
  365. if (s->channel_mode > 1 && s->channel_mode & 1) {
  366. downmix_coeffs[0][1] = downmix_coeffs[1][1] = cmix;
  367. }
  368. if (s->channel_mode == AC3_CHMODE_2F1R || s->channel_mode == AC3_CHMODE_3F1R) {
  369. int nf = s->channel_mode - 2;
  370. downmix_coeffs[0][nf] = downmix_coeffs[1][nf] = smix * LEVEL_MINUS_3DB;
  371. }
  372. if (s->channel_mode == AC3_CHMODE_2F2R || s->channel_mode == AC3_CHMODE_3F2R) {
  373. int nf = s->channel_mode - 4;
  374. downmix_coeffs[0][nf] = downmix_coeffs[1][nf+1] = smix;
  375. }
  376. /* renormalize */
  377. norm0 = norm1 = 0.0;
  378. for (i = 0; i < s->fbw_channels; i++) {
  379. norm0 += downmix_coeffs[0][i];
  380. norm1 += downmix_coeffs[1][i];
  381. }
  382. norm0 = 1.0f / norm0;
  383. norm1 = 1.0f / norm1;
  384. for (i = 0; i < s->fbw_channels; i++) {
  385. downmix_coeffs[0][i] *= norm0;
  386. downmix_coeffs[1][i] *= norm1;
  387. }
  388. if (s->output_mode == AC3_CHMODE_MONO) {
  389. for (i = 0; i < s->fbw_channels; i++)
  390. downmix_coeffs[0][i] = (downmix_coeffs[0][i] +
  391. downmix_coeffs[1][i]) * LEVEL_MINUS_3DB;
  392. }
  393. for (i = 0; i < s->fbw_channels; i++) {
  394. s->downmix_coeffs[0][i] = FIXR12(downmix_coeffs[0][i]);
  395. s->downmix_coeffs[1][i] = FIXR12(downmix_coeffs[1][i]);
  396. }
  397. return 0;
  398. }
  399. /**
  400. * Decode the grouped exponents according to exponent strategy.
  401. * reference: Section 7.1.3 Exponent Decoding
  402. */
  403. static int decode_exponents(AC3DecodeContext *s,
  404. GetBitContext *gbc, int exp_strategy, int ngrps,
  405. uint8_t absexp, int8_t *dexps)
  406. {
  407. int i, j, grp, group_size;
  408. int dexp[256];
  409. int expacc, prevexp;
  410. /* unpack groups */
  411. group_size = exp_strategy + (exp_strategy == EXP_D45);
  412. for (grp = 0, i = 0; grp < ngrps; grp++) {
  413. expacc = get_bits(gbc, 7);
  414. if (expacc >= 125) {
  415. av_log(s->avctx, AV_LOG_ERROR, "expacc %d is out-of-range\n", expacc);
  416. return AVERROR_INVALIDDATA;
  417. }
  418. dexp[i++] = ungroup_3_in_7_bits_tab[expacc][0];
  419. dexp[i++] = ungroup_3_in_7_bits_tab[expacc][1];
  420. dexp[i++] = ungroup_3_in_7_bits_tab[expacc][2];
  421. }
  422. /* convert to absolute exps and expand groups */
  423. prevexp = absexp;
  424. for (i = 0, j = 0; i < ngrps * 3; i++) {
  425. prevexp += dexp[i] - 2;
  426. if (prevexp > 24U) {
  427. av_log(s->avctx, AV_LOG_ERROR, "exponent %d is out-of-range\n", prevexp);
  428. return -1;
  429. }
  430. switch (group_size) {
  431. case 4: dexps[j++] = prevexp;
  432. dexps[j++] = prevexp;
  433. case 2: dexps[j++] = prevexp;
  434. case 1: dexps[j++] = prevexp;
  435. }
  436. }
  437. return 0;
  438. }
  439. /**
  440. * Generate transform coefficients for each coupled channel in the coupling
  441. * range using the coupling coefficients and coupling coordinates.
  442. * reference: Section 7.4.3 Coupling Coordinate Format
  443. */
  444. static void calc_transform_coeffs_cpl(AC3DecodeContext *s)
  445. {
  446. int bin, band, ch;
  447. bin = s->start_freq[CPL_CH];
  448. for (band = 0; band < s->num_cpl_bands; band++) {
  449. int band_start = bin;
  450. int band_end = bin + s->cpl_band_sizes[band];
  451. for (ch = 1; ch <= s->fbw_channels; ch++) {
  452. if (s->channel_in_cpl[ch]) {
  453. int cpl_coord = s->cpl_coords[ch][band] << 5;
  454. for (bin = band_start; bin < band_end; bin++) {
  455. s->fixed_coeffs[ch][bin] =
  456. MULH(s->fixed_coeffs[CPL_CH][bin] * (1 << 4), cpl_coord);
  457. }
  458. if (ch == 2 && s->phase_flags[band]) {
  459. for (bin = band_start; bin < band_end; bin++)
  460. s->fixed_coeffs[2][bin] = -s->fixed_coeffs[2][bin];
  461. }
  462. }
  463. }
  464. bin = band_end;
  465. }
  466. }
  467. /**
  468. * Grouped mantissas for 3-level 5-level and 11-level quantization
  469. */
  470. typedef struct mant_groups {
  471. int b1_mant[2];
  472. int b2_mant[2];
  473. int b4_mant;
  474. int b1;
  475. int b2;
  476. int b4;
  477. } mant_groups;
  478. /**
  479. * Decode the transform coefficients for a particular channel
  480. * reference: Section 7.3 Quantization and Decoding of Mantissas
  481. */
  482. static void ac3_decode_transform_coeffs_ch(AC3DecodeContext *s, int ch_index, mant_groups *m)
  483. {
  484. int start_freq = s->start_freq[ch_index];
  485. int end_freq = s->end_freq[ch_index];
  486. uint8_t *baps = s->bap[ch_index];
  487. int8_t *exps = s->dexps[ch_index];
  488. int32_t *coeffs = s->fixed_coeffs[ch_index];
  489. int dither = (ch_index == CPL_CH) || s->dither_flag[ch_index];
  490. GetBitContext *gbc = &s->gbc;
  491. int freq;
  492. for (freq = start_freq; freq < end_freq; freq++) {
  493. int bap = baps[freq];
  494. int mantissa;
  495. switch (bap) {
  496. case 0:
  497. /* random noise with approximate range of -0.707 to 0.707 */
  498. if (dither)
  499. mantissa = (((av_lfg_get(&s->dith_state)>>8)*181)>>8) - 5931008;
  500. else
  501. mantissa = 0;
  502. break;
  503. case 1:
  504. if (m->b1) {
  505. m->b1--;
  506. mantissa = m->b1_mant[m->b1];
  507. } else {
  508. int bits = get_bits(gbc, 5);
  509. mantissa = b1_mantissas[bits][0];
  510. m->b1_mant[1] = b1_mantissas[bits][1];
  511. m->b1_mant[0] = b1_mantissas[bits][2];
  512. m->b1 = 2;
  513. }
  514. break;
  515. case 2:
  516. if (m->b2) {
  517. m->b2--;
  518. mantissa = m->b2_mant[m->b2];
  519. } else {
  520. int bits = get_bits(gbc, 7);
  521. mantissa = b2_mantissas[bits][0];
  522. m->b2_mant[1] = b2_mantissas[bits][1];
  523. m->b2_mant[0] = b2_mantissas[bits][2];
  524. m->b2 = 2;
  525. }
  526. break;
  527. case 3:
  528. mantissa = b3_mantissas[get_bits(gbc, 3)];
  529. break;
  530. case 4:
  531. if (m->b4) {
  532. m->b4 = 0;
  533. mantissa = m->b4_mant;
  534. } else {
  535. int bits = get_bits(gbc, 7);
  536. mantissa = b4_mantissas[bits][0];
  537. m->b4_mant = b4_mantissas[bits][1];
  538. m->b4 = 1;
  539. }
  540. break;
  541. case 5:
  542. mantissa = b5_mantissas[get_bits(gbc, 4)];
  543. break;
  544. default: /* 6 to 15 */
  545. /* Shift mantissa and sign-extend it. */
  546. if (bap > 15) {
  547. av_log(s->avctx, AV_LOG_ERROR, "bap %d is invalid in plain AC-3\n", bap);
  548. bap = 15;
  549. }
  550. mantissa = (unsigned)get_sbits(gbc, quantization_tab[bap]) << (24 - quantization_tab[bap]);
  551. break;
  552. }
  553. coeffs[freq] = mantissa >> exps[freq];
  554. }
  555. }
  556. /**
  557. * Remove random dithering from coupling range coefficients with zero-bit
  558. * mantissas for coupled channels which do not use dithering.
  559. * reference: Section 7.3.4 Dither for Zero Bit Mantissas (bap=0)
  560. */
  561. static void remove_dithering(AC3DecodeContext *s) {
  562. int ch, i;
  563. for (ch = 1; ch <= s->fbw_channels; ch++) {
  564. if (!s->dither_flag[ch] && s->channel_in_cpl[ch]) {
  565. for (i = s->start_freq[CPL_CH]; i < s->end_freq[CPL_CH]; i++) {
  566. if (!s->bap[CPL_CH][i])
  567. s->fixed_coeffs[ch][i] = 0;
  568. }
  569. }
  570. }
  571. }
  572. static inline void decode_transform_coeffs_ch(AC3DecodeContext *s, int blk,
  573. int ch, mant_groups *m)
  574. {
  575. if (!s->channel_uses_aht[ch]) {
  576. ac3_decode_transform_coeffs_ch(s, ch, m);
  577. } else {
  578. /* if AHT is used, mantissas for all blocks are encoded in the first
  579. block of the frame. */
  580. int bin;
  581. if (CONFIG_EAC3_DECODER && !blk)
  582. ff_eac3_decode_transform_coeffs_aht_ch(s, ch);
  583. for (bin = s->start_freq[ch]; bin < s->end_freq[ch]; bin++) {
  584. s->fixed_coeffs[ch][bin] = s->pre_mantissa[ch][bin][blk] >> s->dexps[ch][bin];
  585. }
  586. }
  587. }
  588. /**
  589. * Decode the transform coefficients.
  590. */
  591. static inline void decode_transform_coeffs(AC3DecodeContext *s, int blk)
  592. {
  593. int ch, end;
  594. int got_cplchan = 0;
  595. mant_groups m;
  596. m.b1 = m.b2 = m.b4 = 0;
  597. for (ch = 1; ch <= s->channels; ch++) {
  598. /* transform coefficients for full-bandwidth channel */
  599. decode_transform_coeffs_ch(s, blk, ch, &m);
  600. /* transform coefficients for coupling channel come right after the
  601. coefficients for the first coupled channel*/
  602. if (s->channel_in_cpl[ch]) {
  603. if (!got_cplchan) {
  604. decode_transform_coeffs_ch(s, blk, CPL_CH, &m);
  605. calc_transform_coeffs_cpl(s);
  606. got_cplchan = 1;
  607. }
  608. end = s->end_freq[CPL_CH];
  609. } else {
  610. end = s->end_freq[ch];
  611. }
  612. do
  613. s->fixed_coeffs[ch][end] = 0;
  614. while (++end < 256);
  615. }
  616. /* zero the dithered coefficients for appropriate channels */
  617. remove_dithering(s);
  618. }
  619. /**
  620. * Stereo rematrixing.
  621. * reference: Section 7.5.4 Rematrixing : Decoding Technique
  622. */
  623. static void do_rematrixing(AC3DecodeContext *s)
  624. {
  625. int bnd, i;
  626. int end, bndend;
  627. end = FFMIN(s->end_freq[1], s->end_freq[2]);
  628. for (bnd = 0; bnd < s->num_rematrixing_bands; bnd++) {
  629. if (s->rematrixing_flags[bnd]) {
  630. bndend = FFMIN(end, ff_ac3_rematrix_band_tab[bnd + 1]);
  631. for (i = ff_ac3_rematrix_band_tab[bnd]; i < bndend; i++) {
  632. int tmp0 = s->fixed_coeffs[1][i];
  633. s->fixed_coeffs[1][i] += s->fixed_coeffs[2][i];
  634. s->fixed_coeffs[2][i] = tmp0 - s->fixed_coeffs[2][i];
  635. }
  636. }
  637. }
  638. }
  639. /**
  640. * Inverse MDCT Transform.
  641. * Convert frequency domain coefficients to time-domain audio samples.
  642. * reference: Section 7.9.4 Transformation Equations
  643. */
  644. static inline void do_imdct(AC3DecodeContext *s, int channels, int offset)
  645. {
  646. int ch;
  647. for (ch = 1; ch <= channels; ch++) {
  648. if (s->block_switch[ch]) {
  649. int i;
  650. FFTSample *x = s->tmp_output + 128;
  651. for (i = 0; i < 128; i++)
  652. x[i] = s->transform_coeffs[ch][2 * i];
  653. s->imdct_256.imdct_half(&s->imdct_256, s->tmp_output, x);
  654. #if USE_FIXED
  655. s->fdsp->vector_fmul_window_scaled(s->outptr[ch - 1], s->delay[ch - 1 + offset],
  656. s->tmp_output, s->window, 128, 8);
  657. #else
  658. s->fdsp->vector_fmul_window(s->outptr[ch - 1], s->delay[ch - 1 + offset],
  659. s->tmp_output, s->window, 128);
  660. #endif
  661. for (i = 0; i < 128; i++)
  662. x[i] = s->transform_coeffs[ch][2 * i + 1];
  663. s->imdct_256.imdct_half(&s->imdct_256, s->delay[ch - 1 + offset], x);
  664. } else {
  665. s->imdct_512.imdct_half(&s->imdct_512, s->tmp_output, s->transform_coeffs[ch]);
  666. #if USE_FIXED
  667. s->fdsp->vector_fmul_window_scaled(s->outptr[ch - 1], s->delay[ch - 1 + offset],
  668. s->tmp_output, s->window, 128, 8);
  669. #else
  670. s->fdsp->vector_fmul_window(s->outptr[ch - 1], s->delay[ch - 1 + offset],
  671. s->tmp_output, s->window, 128);
  672. #endif
  673. memcpy(s->delay[ch - 1 + offset], s->tmp_output + 128, 128 * sizeof(FFTSample));
  674. }
  675. }
  676. }
  677. /**
  678. * Upmix delay samples from stereo to original channel layout.
  679. */
  680. static void ac3_upmix_delay(AC3DecodeContext *s)
  681. {
  682. int channel_data_size = sizeof(s->delay[0]);
  683. switch (s->channel_mode) {
  684. case AC3_CHMODE_DUALMONO:
  685. case AC3_CHMODE_STEREO:
  686. /* upmix mono to stereo */
  687. memcpy(s->delay[1], s->delay[0], channel_data_size);
  688. break;
  689. case AC3_CHMODE_2F2R:
  690. memset(s->delay[3], 0, channel_data_size);
  691. case AC3_CHMODE_2F1R:
  692. memset(s->delay[2], 0, channel_data_size);
  693. break;
  694. case AC3_CHMODE_3F2R:
  695. memset(s->delay[4], 0, channel_data_size);
  696. case AC3_CHMODE_3F1R:
  697. memset(s->delay[3], 0, channel_data_size);
  698. case AC3_CHMODE_3F:
  699. memcpy(s->delay[2], s->delay[1], channel_data_size);
  700. memset(s->delay[1], 0, channel_data_size);
  701. break;
  702. }
  703. }
  704. /**
  705. * Decode band structure for coupling, spectral extension, or enhanced coupling.
  706. * The band structure defines how many subbands are in each band. For each
  707. * subband in the range, 1 means it is combined with the previous band, and 0
  708. * means that it starts a new band.
  709. *
  710. * @param[in] gbc bit reader context
  711. * @param[in] blk block number
  712. * @param[in] eac3 flag to indicate E-AC-3
  713. * @param[in] ecpl flag to indicate enhanced coupling
  714. * @param[in] start_subband subband number for start of range
  715. * @param[in] end_subband subband number for end of range
  716. * @param[in] default_band_struct default band structure table
  717. * @param[out] num_bands number of bands (optionally NULL)
  718. * @param[out] band_sizes array containing the number of bins in each band (optionally NULL)
  719. * @param[in,out] band_struct current band structure
  720. */
  721. static void decode_band_structure(GetBitContext *gbc, int blk, int eac3,
  722. int ecpl, int start_subband, int end_subband,
  723. const uint8_t *default_band_struct,
  724. int *num_bands, uint8_t *band_sizes,
  725. uint8_t *band_struct, int band_struct_size)
  726. {
  727. int subbnd, bnd, n_subbands, n_bands=0;
  728. uint8_t bnd_sz[22];
  729. n_subbands = end_subband - start_subband;
  730. if (!blk)
  731. memcpy(band_struct, default_band_struct, band_struct_size);
  732. av_assert0(band_struct_size >= start_subband + n_subbands);
  733. band_struct += start_subband + 1;
  734. /* decode band structure from bitstream or use default */
  735. if (!eac3 || get_bits1(gbc)) {
  736. for (subbnd = 0; subbnd < n_subbands - 1; subbnd++) {
  737. band_struct[subbnd] = get_bits1(gbc);
  738. }
  739. }
  740. /* calculate number of bands and band sizes based on band structure.
  741. note that the first 4 subbands in enhanced coupling span only 6 bins
  742. instead of 12. */
  743. if (num_bands || band_sizes ) {
  744. n_bands = n_subbands;
  745. bnd_sz[0] = ecpl ? 6 : 12;
  746. for (bnd = 0, subbnd = 1; subbnd < n_subbands; subbnd++) {
  747. int subbnd_size = (ecpl && subbnd < 4) ? 6 : 12;
  748. if (band_struct[subbnd - 1]) {
  749. n_bands--;
  750. bnd_sz[bnd] += subbnd_size;
  751. } else {
  752. bnd_sz[++bnd] = subbnd_size;
  753. }
  754. }
  755. }
  756. /* set optional output params */
  757. if (num_bands)
  758. *num_bands = n_bands;
  759. if (band_sizes)
  760. memcpy(band_sizes, bnd_sz, n_bands);
  761. }
  762. static inline int spx_strategy(AC3DecodeContext *s, int blk)
  763. {
  764. GetBitContext *bc = &s->gbc;
  765. int fbw_channels = s->fbw_channels;
  766. int dst_start_freq, dst_end_freq, src_start_freq,
  767. start_subband, end_subband, ch;
  768. /* determine which channels use spx */
  769. if (s->channel_mode == AC3_CHMODE_MONO) {
  770. s->channel_uses_spx[1] = 1;
  771. } else {
  772. for (ch = 1; ch <= fbw_channels; ch++)
  773. s->channel_uses_spx[ch] = get_bits1(bc);
  774. }
  775. /* get the frequency bins of the spx copy region and the spx start
  776. and end subbands */
  777. dst_start_freq = get_bits(bc, 2);
  778. start_subband = get_bits(bc, 3) + 2;
  779. if (start_subband > 7)
  780. start_subband += start_subband - 7;
  781. end_subband = get_bits(bc, 3) + 5;
  782. #if USE_FIXED
  783. s->spx_dst_end_freq = end_freq_inv_tab[end_subband-5];
  784. #endif
  785. if (end_subband > 7)
  786. end_subband += end_subband - 7;
  787. dst_start_freq = dst_start_freq * 12 + 25;
  788. src_start_freq = start_subband * 12 + 25;
  789. dst_end_freq = end_subband * 12 + 25;
  790. /* check validity of spx ranges */
  791. if (start_subband >= end_subband) {
  792. av_log(s->avctx, AV_LOG_ERROR, "invalid spectral extension "
  793. "range (%d >= %d)\n", start_subband, end_subband);
  794. return AVERROR_INVALIDDATA;
  795. }
  796. if (dst_start_freq >= src_start_freq) {
  797. av_log(s->avctx, AV_LOG_ERROR, "invalid spectral extension "
  798. "copy start bin (%d >= %d)\n", dst_start_freq, src_start_freq);
  799. return AVERROR_INVALIDDATA;
  800. }
  801. s->spx_dst_start_freq = dst_start_freq;
  802. s->spx_src_start_freq = src_start_freq;
  803. if (!USE_FIXED)
  804. s->spx_dst_end_freq = dst_end_freq;
  805. decode_band_structure(bc, blk, s->eac3, 0,
  806. start_subband, end_subband,
  807. ff_eac3_default_spx_band_struct,
  808. &s->num_spx_bands,
  809. s->spx_band_sizes,
  810. s->spx_band_struct, sizeof(s->spx_band_struct));
  811. return 0;
  812. }
  813. static inline void spx_coordinates(AC3DecodeContext *s)
  814. {
  815. GetBitContext *bc = &s->gbc;
  816. int fbw_channels = s->fbw_channels;
  817. int ch, bnd;
  818. for (ch = 1; ch <= fbw_channels; ch++) {
  819. if (s->channel_uses_spx[ch]) {
  820. if (s->first_spx_coords[ch] || get_bits1(bc)) {
  821. INTFLOAT spx_blend;
  822. int bin, master_spx_coord;
  823. s->first_spx_coords[ch] = 0;
  824. spx_blend = AC3_SPX_BLEND(get_bits(bc, 5));
  825. master_spx_coord = get_bits(bc, 2) * 3;
  826. bin = s->spx_src_start_freq;
  827. for (bnd = 0; bnd < s->num_spx_bands; bnd++) {
  828. int bandsize = s->spx_band_sizes[bnd];
  829. int spx_coord_exp, spx_coord_mant;
  830. INTFLOAT nratio, sblend, nblend;
  831. #if USE_FIXED
  832. /* calculate blending factors */
  833. int64_t accu = ((bin << 23) + (bandsize << 22))
  834. * (int64_t)s->spx_dst_end_freq;
  835. nratio = (int)(accu >> 32);
  836. nratio -= spx_blend << 18;
  837. if (nratio < 0) {
  838. nblend = 0;
  839. sblend = 0x800000;
  840. } else if (nratio > 0x7fffff) {
  841. nblend = 14529495; // sqrt(3) in FP.23
  842. sblend = 0;
  843. } else {
  844. nblend = fixed_sqrt(nratio, 23);
  845. accu = (int64_t)nblend * 1859775393;
  846. nblend = (int)((accu + (1<<29)) >> 30);
  847. sblend = fixed_sqrt(0x800000 - nratio, 23);
  848. }
  849. #else
  850. float spx_coord;
  851. /* calculate blending factors */
  852. nratio = ((float)((bin + (bandsize >> 1))) / s->spx_dst_end_freq) - spx_blend;
  853. nratio = av_clipf(nratio, 0.0f, 1.0f);
  854. nblend = sqrtf(3.0f * nratio); // noise is scaled by sqrt(3)
  855. // to give unity variance
  856. sblend = sqrtf(1.0f - nratio);
  857. #endif
  858. bin += bandsize;
  859. /* decode spx coordinates */
  860. spx_coord_exp = get_bits(bc, 4);
  861. spx_coord_mant = get_bits(bc, 2);
  862. if (spx_coord_exp == 15) spx_coord_mant <<= 1;
  863. else spx_coord_mant += 4;
  864. spx_coord_mant <<= (25 - spx_coord_exp - master_spx_coord);
  865. /* multiply noise and signal blending factors by spx coordinate */
  866. #if USE_FIXED
  867. accu = (int64_t)nblend * spx_coord_mant;
  868. s->spx_noise_blend[ch][bnd] = (int)((accu + (1<<22)) >> 23);
  869. accu = (int64_t)sblend * spx_coord_mant;
  870. s->spx_signal_blend[ch][bnd] = (int)((accu + (1<<22)) >> 23);
  871. #else
  872. spx_coord = spx_coord_mant * (1.0f / (1 << 23));
  873. s->spx_noise_blend [ch][bnd] = nblend * spx_coord;
  874. s->spx_signal_blend[ch][bnd] = sblend * spx_coord;
  875. #endif
  876. }
  877. }
  878. } else {
  879. s->first_spx_coords[ch] = 1;
  880. }
  881. }
  882. }
  883. static inline int coupling_strategy(AC3DecodeContext *s, int blk,
  884. uint8_t *bit_alloc_stages)
  885. {
  886. GetBitContext *bc = &s->gbc;
  887. int fbw_channels = s->fbw_channels;
  888. int channel_mode = s->channel_mode;
  889. int ch;
  890. memset(bit_alloc_stages, 3, AC3_MAX_CHANNELS);
  891. if (!s->eac3)
  892. s->cpl_in_use[blk] = get_bits1(bc);
  893. if (s->cpl_in_use[blk]) {
  894. /* coupling in use */
  895. int cpl_start_subband, cpl_end_subband;
  896. if (channel_mode < AC3_CHMODE_STEREO) {
  897. av_log(s->avctx, AV_LOG_ERROR, "coupling not allowed in mono or dual-mono\n");
  898. return AVERROR_INVALIDDATA;
  899. }
  900. /* check for enhanced coupling */
  901. if (s->eac3 && get_bits1(bc)) {
  902. /* TODO: parse enhanced coupling strategy info */
  903. avpriv_request_sample(s->avctx, "Enhanced coupling");
  904. return AVERROR_PATCHWELCOME;
  905. }
  906. /* determine which channels are coupled */
  907. if (s->eac3 && s->channel_mode == AC3_CHMODE_STEREO) {
  908. s->channel_in_cpl[1] = 1;
  909. s->channel_in_cpl[2] = 1;
  910. } else {
  911. for (ch = 1; ch <= fbw_channels; ch++)
  912. s->channel_in_cpl[ch] = get_bits1(bc);
  913. }
  914. /* phase flags in use */
  915. if (channel_mode == AC3_CHMODE_STEREO)
  916. s->phase_flags_in_use = get_bits1(bc);
  917. /* coupling frequency range */
  918. cpl_start_subband = get_bits(bc, 4);
  919. cpl_end_subband = s->spx_in_use ? (s->spx_src_start_freq - 37) / 12 :
  920. get_bits(bc, 4) + 3;
  921. if (cpl_start_subband >= cpl_end_subband) {
  922. av_log(s->avctx, AV_LOG_ERROR, "invalid coupling range (%d >= %d)\n",
  923. cpl_start_subband, cpl_end_subband);
  924. return AVERROR_INVALIDDATA;
  925. }
  926. s->start_freq[CPL_CH] = cpl_start_subband * 12 + 37;
  927. s->end_freq[CPL_CH] = cpl_end_subband * 12 + 37;
  928. decode_band_structure(bc, blk, s->eac3, 0, cpl_start_subband,
  929. cpl_end_subband,
  930. ff_eac3_default_cpl_band_struct,
  931. &s->num_cpl_bands, s->cpl_band_sizes,
  932. s->cpl_band_struct, sizeof(s->cpl_band_struct));
  933. } else {
  934. /* coupling not in use */
  935. for (ch = 1; ch <= fbw_channels; ch++) {
  936. s->channel_in_cpl[ch] = 0;
  937. s->first_cpl_coords[ch] = 1;
  938. }
  939. s->first_cpl_leak = s->eac3;
  940. s->phase_flags_in_use = 0;
  941. }
  942. return 0;
  943. }
  944. static inline int coupling_coordinates(AC3DecodeContext *s, int blk)
  945. {
  946. GetBitContext *bc = &s->gbc;
  947. int fbw_channels = s->fbw_channels;
  948. int ch, bnd;
  949. int cpl_coords_exist = 0;
  950. for (ch = 1; ch <= fbw_channels; ch++) {
  951. if (s->channel_in_cpl[ch]) {
  952. if ((s->eac3 && s->first_cpl_coords[ch]) || get_bits1(bc)) {
  953. int master_cpl_coord, cpl_coord_exp, cpl_coord_mant;
  954. s->first_cpl_coords[ch] = 0;
  955. cpl_coords_exist = 1;
  956. master_cpl_coord = 3 * get_bits(bc, 2);
  957. for (bnd = 0; bnd < s->num_cpl_bands; bnd++) {
  958. cpl_coord_exp = get_bits(bc, 4);
  959. cpl_coord_mant = get_bits(bc, 4);
  960. if (cpl_coord_exp == 15)
  961. s->cpl_coords[ch][bnd] = cpl_coord_mant << 22;
  962. else
  963. s->cpl_coords[ch][bnd] = (cpl_coord_mant + 16) << 21;
  964. s->cpl_coords[ch][bnd] >>= (cpl_coord_exp + master_cpl_coord);
  965. }
  966. } else if (!blk) {
  967. av_log(s->avctx, AV_LOG_ERROR, "new coupling coordinates must "
  968. "be present in block 0\n");
  969. return AVERROR_INVALIDDATA;
  970. }
  971. } else {
  972. /* channel not in coupling */
  973. s->first_cpl_coords[ch] = 1;
  974. }
  975. }
  976. /* phase flags */
  977. if (s->channel_mode == AC3_CHMODE_STEREO && cpl_coords_exist) {
  978. for (bnd = 0; bnd < s->num_cpl_bands; bnd++) {
  979. s->phase_flags[bnd] = s->phase_flags_in_use ? get_bits1(bc) : 0;
  980. }
  981. }
  982. return 0;
  983. }
  984. /**
  985. * Decode a single audio block from the AC-3 bitstream.
  986. */
  987. static int decode_audio_block(AC3DecodeContext *s, int blk, int offset)
  988. {
  989. int fbw_channels = s->fbw_channels;
  990. int channel_mode = s->channel_mode;
  991. int i, bnd, seg, ch, ret;
  992. int different_transforms;
  993. int downmix_output;
  994. int cpl_in_use;
  995. GetBitContext *gbc = &s->gbc;
  996. uint8_t bit_alloc_stages[AC3_MAX_CHANNELS] = { 0 };
  997. /* block switch flags */
  998. different_transforms = 0;
  999. if (s->block_switch_syntax) {
  1000. for (ch = 1; ch <= fbw_channels; ch++) {
  1001. s->block_switch[ch] = get_bits1(gbc);
  1002. if (ch > 1 && s->block_switch[ch] != s->block_switch[1])
  1003. different_transforms = 1;
  1004. }
  1005. }
  1006. /* dithering flags */
  1007. if (s->dither_flag_syntax) {
  1008. for (ch = 1; ch <= fbw_channels; ch++) {
  1009. s->dither_flag[ch] = get_bits1(gbc);
  1010. }
  1011. }
  1012. /* dynamic range */
  1013. i = !s->channel_mode;
  1014. do {
  1015. if (get_bits1(gbc)) {
  1016. /* Allow asymmetric application of DRC when drc_scale > 1.
  1017. Amplification of quiet sounds is enhanced */
  1018. int range_bits = get_bits(gbc, 8);
  1019. INTFLOAT range = AC3_RANGE(range_bits);
  1020. if (range_bits <= 127 || s->drc_scale <= 1.0)
  1021. s->dynamic_range[i] = AC3_DYNAMIC_RANGE(range);
  1022. else
  1023. s->dynamic_range[i] = range;
  1024. } else if (blk == 0) {
  1025. s->dynamic_range[i] = AC3_DYNAMIC_RANGE1;
  1026. }
  1027. } while (i--);
  1028. /* spectral extension strategy */
  1029. if (s->eac3 && (!blk || get_bits1(gbc))) {
  1030. s->spx_in_use = get_bits1(gbc);
  1031. if (s->spx_in_use) {
  1032. if ((ret = spx_strategy(s, blk)) < 0)
  1033. return ret;
  1034. }
  1035. }
  1036. if (!s->eac3 || !s->spx_in_use) {
  1037. s->spx_in_use = 0;
  1038. for (ch = 1; ch <= fbw_channels; ch++) {
  1039. s->channel_uses_spx[ch] = 0;
  1040. s->first_spx_coords[ch] = 1;
  1041. }
  1042. }
  1043. /* spectral extension coordinates */
  1044. if (s->spx_in_use)
  1045. spx_coordinates(s);
  1046. /* coupling strategy */
  1047. if (s->eac3 ? s->cpl_strategy_exists[blk] : get_bits1(gbc)) {
  1048. if ((ret = coupling_strategy(s, blk, bit_alloc_stages)) < 0)
  1049. return ret;
  1050. } else if (!s->eac3) {
  1051. if (!blk) {
  1052. av_log(s->avctx, AV_LOG_ERROR, "new coupling strategy must "
  1053. "be present in block 0\n");
  1054. return AVERROR_INVALIDDATA;
  1055. } else {
  1056. s->cpl_in_use[blk] = s->cpl_in_use[blk-1];
  1057. }
  1058. }
  1059. cpl_in_use = s->cpl_in_use[blk];
  1060. /* coupling coordinates */
  1061. if (cpl_in_use) {
  1062. if ((ret = coupling_coordinates(s, blk)) < 0)
  1063. return ret;
  1064. }
  1065. /* stereo rematrixing strategy and band structure */
  1066. if (channel_mode == AC3_CHMODE_STEREO) {
  1067. if ((s->eac3 && !blk) || get_bits1(gbc)) {
  1068. s->num_rematrixing_bands = 4;
  1069. if (cpl_in_use && s->start_freq[CPL_CH] <= 61) {
  1070. s->num_rematrixing_bands -= 1 + (s->start_freq[CPL_CH] == 37);
  1071. } else if (s->spx_in_use && s->spx_src_start_freq <= 61) {
  1072. s->num_rematrixing_bands--;
  1073. }
  1074. for (bnd = 0; bnd < s->num_rematrixing_bands; bnd++)
  1075. s->rematrixing_flags[bnd] = get_bits1(gbc);
  1076. } else if (!blk) {
  1077. av_log(s->avctx, AV_LOG_WARNING, "Warning: "
  1078. "new rematrixing strategy not present in block 0\n");
  1079. s->num_rematrixing_bands = 0;
  1080. }
  1081. }
  1082. /* exponent strategies for each channel */
  1083. for (ch = !cpl_in_use; ch <= s->channels; ch++) {
  1084. if (!s->eac3)
  1085. s->exp_strategy[blk][ch] = get_bits(gbc, 2 - (ch == s->lfe_ch));
  1086. if (s->exp_strategy[blk][ch] != EXP_REUSE)
  1087. bit_alloc_stages[ch] = 3;
  1088. }
  1089. /* channel bandwidth */
  1090. for (ch = 1; ch <= fbw_channels; ch++) {
  1091. s->start_freq[ch] = 0;
  1092. if (s->exp_strategy[blk][ch] != EXP_REUSE) {
  1093. int group_size;
  1094. int prev = s->end_freq[ch];
  1095. if (s->channel_in_cpl[ch])
  1096. s->end_freq[ch] = s->start_freq[CPL_CH];
  1097. else if (s->channel_uses_spx[ch])
  1098. s->end_freq[ch] = s->spx_src_start_freq;
  1099. else {
  1100. int bandwidth_code = get_bits(gbc, 6);
  1101. if (bandwidth_code > 60) {
  1102. av_log(s->avctx, AV_LOG_ERROR, "bandwidth code = %d > 60\n", bandwidth_code);
  1103. return AVERROR_INVALIDDATA;
  1104. }
  1105. s->end_freq[ch] = bandwidth_code * 3 + 73;
  1106. }
  1107. group_size = 3 << (s->exp_strategy[blk][ch] - 1);
  1108. s->num_exp_groups[ch] = (s->end_freq[ch] + group_size-4) / group_size;
  1109. if (blk > 0 && s->end_freq[ch] != prev)
  1110. memset(bit_alloc_stages, 3, AC3_MAX_CHANNELS);
  1111. }
  1112. }
  1113. if (cpl_in_use && s->exp_strategy[blk][CPL_CH] != EXP_REUSE) {
  1114. s->num_exp_groups[CPL_CH] = (s->end_freq[CPL_CH] - s->start_freq[CPL_CH]) /
  1115. (3 << (s->exp_strategy[blk][CPL_CH] - 1));
  1116. }
  1117. /* decode exponents for each channel */
  1118. for (ch = !cpl_in_use; ch <= s->channels; ch++) {
  1119. if (s->exp_strategy[blk][ch] != EXP_REUSE) {
  1120. s->dexps[ch][0] = get_bits(gbc, 4) << !ch;
  1121. if (decode_exponents(s, gbc, s->exp_strategy[blk][ch],
  1122. s->num_exp_groups[ch], s->dexps[ch][0],
  1123. &s->dexps[ch][s->start_freq[ch]+!!ch])) {
  1124. return AVERROR_INVALIDDATA;
  1125. }
  1126. if (ch != CPL_CH && ch != s->lfe_ch)
  1127. skip_bits(gbc, 2); /* skip gainrng */
  1128. }
  1129. }
  1130. /* bit allocation information */
  1131. if (s->bit_allocation_syntax) {
  1132. if (get_bits1(gbc)) {
  1133. s->bit_alloc_params.slow_decay = ff_ac3_slow_decay_tab[get_bits(gbc, 2)] >> s->bit_alloc_params.sr_shift;
  1134. s->bit_alloc_params.fast_decay = ff_ac3_fast_decay_tab[get_bits(gbc, 2)] >> s->bit_alloc_params.sr_shift;
  1135. s->bit_alloc_params.slow_gain = ff_ac3_slow_gain_tab[get_bits(gbc, 2)];
  1136. s->bit_alloc_params.db_per_bit = ff_ac3_db_per_bit_tab[get_bits(gbc, 2)];
  1137. s->bit_alloc_params.floor = ff_ac3_floor_tab[get_bits(gbc, 3)];
  1138. for (ch = !cpl_in_use; ch <= s->channels; ch++)
  1139. bit_alloc_stages[ch] = FFMAX(bit_alloc_stages[ch], 2);
  1140. } else if (!blk) {
  1141. av_log(s->avctx, AV_LOG_ERROR, "new bit allocation info must "
  1142. "be present in block 0\n");
  1143. return AVERROR_INVALIDDATA;
  1144. }
  1145. }
  1146. /* signal-to-noise ratio offsets and fast gains (signal-to-mask ratios) */
  1147. if (!s->eac3 || !blk) {
  1148. if (s->snr_offset_strategy && get_bits1(gbc)) {
  1149. int snr = 0;
  1150. int csnr;
  1151. csnr = (get_bits(gbc, 6) - 15) << 4;
  1152. for (i = ch = !cpl_in_use; ch <= s->channels; ch++) {
  1153. /* snr offset */
  1154. if (ch == i || s->snr_offset_strategy == 2)
  1155. snr = (csnr + get_bits(gbc, 4)) << 2;
  1156. /* run at least last bit allocation stage if snr offset changes */
  1157. if (blk && s->snr_offset[ch] != snr) {
  1158. bit_alloc_stages[ch] = FFMAX(bit_alloc_stages[ch], 1);
  1159. }
  1160. s->snr_offset[ch] = snr;
  1161. /* fast gain (normal AC-3 only) */
  1162. if (!s->eac3) {
  1163. int prev = s->fast_gain[ch];
  1164. s->fast_gain[ch] = ff_ac3_fast_gain_tab[get_bits(gbc, 3)];
  1165. /* run last 2 bit allocation stages if fast gain changes */
  1166. if (blk && prev != s->fast_gain[ch])
  1167. bit_alloc_stages[ch] = FFMAX(bit_alloc_stages[ch], 2);
  1168. }
  1169. }
  1170. } else if (!s->eac3 && !blk) {
  1171. av_log(s->avctx, AV_LOG_ERROR, "new snr offsets must be present in block 0\n");
  1172. return AVERROR_INVALIDDATA;
  1173. }
  1174. }
  1175. /* fast gain (E-AC-3 only) */
  1176. if (s->fast_gain_syntax && get_bits1(gbc)) {
  1177. for (ch = !cpl_in_use; ch <= s->channels; ch++) {
  1178. int prev = s->fast_gain[ch];
  1179. s->fast_gain[ch] = ff_ac3_fast_gain_tab[get_bits(gbc, 3)];
  1180. /* run last 2 bit allocation stages if fast gain changes */
  1181. if (blk && prev != s->fast_gain[ch])
  1182. bit_alloc_stages[ch] = FFMAX(bit_alloc_stages[ch], 2);
  1183. }
  1184. } else if (s->eac3 && !blk) {
  1185. for (ch = !cpl_in_use; ch <= s->channels; ch++)
  1186. s->fast_gain[ch] = ff_ac3_fast_gain_tab[4];
  1187. }
  1188. /* E-AC-3 to AC-3 converter SNR offset */
  1189. if (s->frame_type == EAC3_FRAME_TYPE_INDEPENDENT && get_bits1(gbc)) {
  1190. skip_bits(gbc, 10); // skip converter snr offset
  1191. }
  1192. /* coupling leak information */
  1193. if (cpl_in_use) {
  1194. if (s->first_cpl_leak || get_bits1(gbc)) {
  1195. int fl = get_bits(gbc, 3);
  1196. int sl = get_bits(gbc, 3);
  1197. /* run last 2 bit allocation stages for coupling channel if
  1198. coupling leak changes */
  1199. if (blk && (fl != s->bit_alloc_params.cpl_fast_leak ||
  1200. sl != s->bit_alloc_params.cpl_slow_leak)) {
  1201. bit_alloc_stages[CPL_CH] = FFMAX(bit_alloc_stages[CPL_CH], 2);
  1202. }
  1203. s->bit_alloc_params.cpl_fast_leak = fl;
  1204. s->bit_alloc_params.cpl_slow_leak = sl;
  1205. } else if (!s->eac3 && !blk) {
  1206. av_log(s->avctx, AV_LOG_ERROR, "new coupling leak info must "
  1207. "be present in block 0\n");
  1208. return AVERROR_INVALIDDATA;
  1209. }
  1210. s->first_cpl_leak = 0;
  1211. }
  1212. /* delta bit allocation information */
  1213. if (s->dba_syntax && get_bits1(gbc)) {
  1214. /* delta bit allocation exists (strategy) */
  1215. for (ch = !cpl_in_use; ch <= fbw_channels; ch++) {
  1216. s->dba_mode[ch] = get_bits(gbc, 2);
  1217. if (s->dba_mode[ch] == DBA_RESERVED) {
  1218. av_log(s->avctx, AV_LOG_ERROR, "delta bit allocation strategy reserved\n");
  1219. return AVERROR_INVALIDDATA;
  1220. }
  1221. bit_alloc_stages[ch] = FFMAX(bit_alloc_stages[ch], 2);
  1222. }
  1223. /* channel delta offset, len and bit allocation */
  1224. for (ch = !cpl_in_use; ch <= fbw_channels; ch++) {
  1225. if (s->dba_mode[ch] == DBA_NEW) {
  1226. s->dba_nsegs[ch] = get_bits(gbc, 3) + 1;
  1227. for (seg = 0; seg < s->dba_nsegs[ch]; seg++) {
  1228. s->dba_offsets[ch][seg] = get_bits(gbc, 5);
  1229. s->dba_lengths[ch][seg] = get_bits(gbc, 4);
  1230. s->dba_values[ch][seg] = get_bits(gbc, 3);
  1231. }
  1232. /* run last 2 bit allocation stages if new dba values */
  1233. bit_alloc_stages[ch] = FFMAX(bit_alloc_stages[ch], 2);
  1234. }
  1235. }
  1236. } else if (blk == 0) {
  1237. for (ch = 0; ch <= s->channels; ch++) {
  1238. s->dba_mode[ch] = DBA_NONE;
  1239. }
  1240. }
  1241. /* Bit allocation */
  1242. for (ch = !cpl_in_use; ch <= s->channels; ch++) {
  1243. if (bit_alloc_stages[ch] > 2) {
  1244. /* Exponent mapping into PSD and PSD integration */
  1245. ff_ac3_bit_alloc_calc_psd(s->dexps[ch],
  1246. s->start_freq[ch], s->end_freq[ch],
  1247. s->psd[ch], s->band_psd[ch]);
  1248. }
  1249. if (bit_alloc_stages[ch] > 1) {
  1250. /* Compute excitation function, Compute masking curve, and
  1251. Apply delta bit allocation */
  1252. if (ff_ac3_bit_alloc_calc_mask(&s->bit_alloc_params, s->band_psd[ch],
  1253. s->start_freq[ch], s->end_freq[ch],
  1254. s->fast_gain[ch], (ch == s->lfe_ch),
  1255. s->dba_mode[ch], s->dba_nsegs[ch],
  1256. s->dba_offsets[ch], s->dba_lengths[ch],
  1257. s->dba_values[ch], s->mask[ch])) {
  1258. av_log(s->avctx, AV_LOG_ERROR, "error in bit allocation\n");
  1259. return AVERROR_INVALIDDATA;
  1260. }
  1261. }
  1262. if (bit_alloc_stages[ch] > 0) {
  1263. /* Compute bit allocation */
  1264. const uint8_t *bap_tab = s->channel_uses_aht[ch] ?
  1265. ff_eac3_hebap_tab : ff_ac3_bap_tab;
  1266. s->ac3dsp.bit_alloc_calc_bap(s->mask[ch], s->psd[ch],
  1267. s->start_freq[ch], s->end_freq[ch],
  1268. s->snr_offset[ch],
  1269. s->bit_alloc_params.floor,
  1270. bap_tab, s->bap[ch]);
  1271. }
  1272. }
  1273. /* unused dummy data */
  1274. if (s->skip_syntax && get_bits1(gbc)) {
  1275. int skipl = get_bits(gbc, 9);
  1276. skip_bits_long(gbc, 8 * skipl);
  1277. }
  1278. /* unpack the transform coefficients
  1279. this also uncouples channels if coupling is in use. */
  1280. decode_transform_coeffs(s, blk);
  1281. /* TODO: generate enhanced coupling coordinates and uncouple */
  1282. /* recover coefficients if rematrixing is in use */
  1283. if (s->channel_mode == AC3_CHMODE_STEREO)
  1284. do_rematrixing(s);
  1285. /* apply scaling to coefficients (headroom, dynrng) */
  1286. for (ch = 1; ch <= s->channels; ch++) {
  1287. int audio_channel = 0;
  1288. INTFLOAT gain;
  1289. if (s->channel_mode == AC3_CHMODE_DUALMONO && ch <= 2)
  1290. audio_channel = 2-ch;
  1291. if (s->heavy_compression && s->compression_exists[audio_channel])
  1292. gain = s->heavy_dynamic_range[audio_channel];
  1293. else
  1294. gain = s->dynamic_range[audio_channel];
  1295. #if USE_FIXED
  1296. scale_coefs(s->transform_coeffs[ch], s->fixed_coeffs[ch], gain, 256);
  1297. #else
  1298. if (s->target_level != 0)
  1299. gain = gain * s->level_gain[audio_channel];
  1300. gain *= 1.0 / 4194304.0f;
  1301. s->fmt_conv.int32_to_float_fmul_scalar(s->transform_coeffs[ch],
  1302. s->fixed_coeffs[ch], gain, 256);
  1303. #endif
  1304. }
  1305. /* apply spectral extension to high frequency bins */
  1306. if (CONFIG_EAC3_DECODER && s->spx_in_use) {
  1307. ff_eac3_apply_spectral_extension(s);
  1308. }
  1309. /* downmix and MDCT. order depends on whether block switching is used for
  1310. any channel in this block. this is because coefficients for the long
  1311. and short transforms cannot be mixed. */
  1312. downmix_output = s->channels != s->out_channels &&
  1313. !((s->output_mode & AC3_OUTPUT_LFEON) &&
  1314. s->fbw_channels == s->out_channels);
  1315. if (different_transforms) {
  1316. /* the delay samples have already been downmixed, so we upmix the delay
  1317. samples in order to reconstruct all channels before downmixing. */
  1318. if (s->downmixed) {
  1319. s->downmixed = 0;
  1320. ac3_upmix_delay(s);
  1321. }
  1322. do_imdct(s, s->channels, offset);
  1323. if (downmix_output) {
  1324. #if USE_FIXED
  1325. ac3_downmix_c_fixed16(s->outptr, s->downmix_coeffs,
  1326. s->out_channels, s->fbw_channels, 256);
  1327. #else
  1328. ff_ac3dsp_downmix(&s->ac3dsp, s->outptr, s->downmix_coeffs,
  1329. s->out_channels, s->fbw_channels, 256);
  1330. #endif
  1331. }
  1332. } else {
  1333. if (downmix_output) {
  1334. AC3_RENAME(ff_ac3dsp_downmix)(&s->ac3dsp, s->xcfptr + 1, s->downmix_coeffs,
  1335. s->out_channels, s->fbw_channels, 256);
  1336. }
  1337. if (downmix_output && !s->downmixed) {
  1338. s->downmixed = 1;
  1339. AC3_RENAME(ff_ac3dsp_downmix)(&s->ac3dsp, s->dlyptr, s->downmix_coeffs,
  1340. s->out_channels, s->fbw_channels, 128);
  1341. }
  1342. do_imdct(s, s->out_channels, offset);
  1343. }
  1344. return 0;
  1345. }
  1346. /**
  1347. * Decode a single AC-3 frame.
  1348. */
  1349. static int ac3_decode_frame(AVCodecContext * avctx, void *data,
  1350. int *got_frame_ptr, AVPacket *avpkt)
  1351. {
  1352. AVFrame *frame = data;
  1353. const uint8_t *buf = avpkt->data;
  1354. int buf_size, full_buf_size = avpkt->size;
  1355. AC3DecodeContext *s = avctx->priv_data;
  1356. int blk, ch, err, offset, ret;
  1357. int got_independent_frame = 0;
  1358. const uint8_t *channel_map;
  1359. uint8_t extended_channel_map[EAC3_MAX_CHANNELS];
  1360. const SHORTFLOAT *output[AC3_MAX_CHANNELS];
  1361. enum AVMatrixEncoding matrix_encoding;
  1362. AVDownmixInfo *downmix_info;
  1363. s->superframe_size = 0;
  1364. buf_size = full_buf_size;
  1365. /* copy input buffer to decoder context to avoid reading past the end
  1366. of the buffer, which can be caused by a damaged input stream. */
  1367. if (buf_size >= 2 && AV_RB16(buf) == 0x770B) {
  1368. // seems to be byte-swapped AC-3
  1369. int cnt = FFMIN(buf_size, AC3_FRAME_BUFFER_SIZE) >> 1;
  1370. s->bdsp.bswap16_buf((uint16_t *) s->input_buffer,
  1371. (const uint16_t *) buf, cnt);
  1372. } else
  1373. memcpy(s->input_buffer, buf, FFMIN(buf_size, AC3_FRAME_BUFFER_SIZE));
  1374. /* if consistent noise generation is enabled, seed the linear feedback generator
  1375. * with the contents of the AC-3 frame so that the noise is identical across
  1376. * decodes given the same AC-3 frame data, for use with non-linear edititing software. */
  1377. if (s->consistent_noise_generation)
  1378. av_lfg_init_from_data(&s->dith_state, s->input_buffer, FFMIN(buf_size, AC3_FRAME_BUFFER_SIZE));
  1379. buf = s->input_buffer;
  1380. dependent_frame:
  1381. /* initialize the GetBitContext with the start of valid AC-3 Frame */
  1382. if ((ret = init_get_bits8(&s->gbc, buf, buf_size)) < 0)
  1383. return ret;
  1384. /* parse the syncinfo */
  1385. err = parse_frame_header(s);
  1386. if (err) {
  1387. switch (err) {
  1388. case AAC_AC3_PARSE_ERROR_SYNC:
  1389. av_log(avctx, AV_LOG_ERROR, "frame sync error\n");
  1390. return AVERROR_INVALIDDATA;
  1391. case AAC_AC3_PARSE_ERROR_BSID:
  1392. av_log(avctx, AV_LOG_ERROR, "invalid bitstream id\n");
  1393. break;
  1394. case AAC_AC3_PARSE_ERROR_SAMPLE_RATE:
  1395. av_log(avctx, AV_LOG_ERROR, "invalid sample rate\n");
  1396. break;
  1397. case AAC_AC3_PARSE_ERROR_FRAME_SIZE:
  1398. av_log(avctx, AV_LOG_ERROR, "invalid frame size\n");
  1399. break;
  1400. case AAC_AC3_PARSE_ERROR_FRAME_TYPE:
  1401. /* skip frame if CRC is ok. otherwise use error concealment. */
  1402. /* TODO: add support for substreams */
  1403. if (s->substreamid) {
  1404. av_log(avctx, AV_LOG_DEBUG,
  1405. "unsupported substream %d: skipping frame\n",
  1406. s->substreamid);
  1407. *got_frame_ptr = 0;
  1408. return buf_size;
  1409. } else {
  1410. av_log(avctx, AV_LOG_ERROR, "invalid frame type\n");
  1411. }
  1412. break;
  1413. case AAC_AC3_PARSE_ERROR_CRC:
  1414. case AAC_AC3_PARSE_ERROR_CHANNEL_CFG:
  1415. break;
  1416. default: // Normal AVERROR do not try to recover.
  1417. *got_frame_ptr = 0;
  1418. return err;
  1419. }
  1420. } else {
  1421. /* check that reported frame size fits in input buffer */
  1422. if (s->frame_size > buf_size) {
  1423. av_log(avctx, AV_LOG_ERROR, "incomplete frame\n");
  1424. err = AAC_AC3_PARSE_ERROR_FRAME_SIZE;
  1425. } else if (avctx->err_recognition & (AV_EF_CRCCHECK|AV_EF_CAREFUL)) {
  1426. /* check for crc mismatch */
  1427. if (av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0, &buf[2],
  1428. s->frame_size - 2)) {
  1429. av_log(avctx, AV_LOG_ERROR, "frame CRC mismatch\n");
  1430. if (avctx->err_recognition & AV_EF_EXPLODE)
  1431. return AVERROR_INVALIDDATA;
  1432. err = AAC_AC3_PARSE_ERROR_CRC;
  1433. }
  1434. }
  1435. }
  1436. if (s->frame_type == EAC3_FRAME_TYPE_DEPENDENT && !got_independent_frame) {
  1437. av_log(avctx, AV_LOG_WARNING, "Ignoring dependent frame without independent frame.\n");
  1438. *got_frame_ptr = 0;
  1439. return FFMIN(full_buf_size, s->frame_size);
  1440. }
  1441. /* channel config */
  1442. if (!err || (s->channels && s->out_channels != s->channels)) {
  1443. s->out_channels = s->channels;
  1444. s->output_mode = s->channel_mode;
  1445. if (s->lfe_on)
  1446. s->output_mode |= AC3_OUTPUT_LFEON;
  1447. if (s->channels > 1 &&
  1448. avctx->request_channel_layout == AV_CH_LAYOUT_MONO) {
  1449. s->out_channels = 1;
  1450. s->output_mode = AC3_CHMODE_MONO;
  1451. } else if (s->channels > 2 &&
  1452. avctx->request_channel_layout == AV_CH_LAYOUT_STEREO) {
  1453. s->out_channels = 2;
  1454. s->output_mode = AC3_CHMODE_STEREO;
  1455. }
  1456. s->loro_center_mix_level = gain_levels[s-> center_mix_level];
  1457. s->loro_surround_mix_level = gain_levels[s->surround_mix_level];
  1458. s->ltrt_center_mix_level = LEVEL_MINUS_3DB;
  1459. s->ltrt_surround_mix_level = LEVEL_MINUS_3DB;
  1460. /* set downmixing coefficients if needed */
  1461. if (s->channels != s->out_channels && !((s->output_mode & AC3_OUTPUT_LFEON) &&
  1462. s->fbw_channels == s->out_channels)) {
  1463. if ((ret = set_downmix_coeffs(s)) < 0) {
  1464. av_log(avctx, AV_LOG_ERROR, "error setting downmix coeffs\n");
  1465. return ret;
  1466. }
  1467. }
  1468. } else if (!s->channels) {
  1469. av_log(avctx, AV_LOG_ERROR, "unable to determine channel mode\n");
  1470. return AVERROR_INVALIDDATA;
  1471. }
  1472. avctx->channels = s->out_channels;
  1473. avctx->channel_layout = avpriv_ac3_channel_layout_tab[s->output_mode & ~AC3_OUTPUT_LFEON];
  1474. if (s->output_mode & AC3_OUTPUT_LFEON)
  1475. avctx->channel_layout |= AV_CH_LOW_FREQUENCY;
  1476. /* set audio service type based on bitstream mode for AC-3 */
  1477. avctx->audio_service_type = s->bitstream_mode;
  1478. if (s->bitstream_mode == 0x7 && s->channels > 1)
  1479. avctx->audio_service_type = AV_AUDIO_SERVICE_TYPE_KARAOKE;
  1480. /* decode the audio blocks */
  1481. channel_map = ff_ac3_dec_channel_map[s->output_mode & ~AC3_OUTPUT_LFEON][s->lfe_on];
  1482. offset = s->frame_type == EAC3_FRAME_TYPE_DEPENDENT ? AC3_MAX_CHANNELS : 0;
  1483. for (ch = 0; ch < AC3_MAX_CHANNELS; ch++) {
  1484. output[ch] = s->output[ch + offset];
  1485. s->outptr[ch] = s->output[ch + offset];
  1486. }
  1487. for (ch = 0; ch < s->channels; ch++) {
  1488. if (ch < s->out_channels)
  1489. s->outptr[channel_map[ch]] = s->output_buffer[ch + offset];
  1490. }
  1491. for (blk = 0; blk < s->num_blocks; blk++) {
  1492. if (!err && decode_audio_block(s, blk, offset)) {
  1493. av_log(avctx, AV_LOG_ERROR, "error decoding the audio block\n");
  1494. err = 1;
  1495. }
  1496. if (err)
  1497. for (ch = 0; ch < s->out_channels; ch++)
  1498. memcpy(s->output_buffer[ch + offset] + AC3_BLOCK_SIZE*blk, output[ch], AC3_BLOCK_SIZE*sizeof(SHORTFLOAT));
  1499. for (ch = 0; ch < s->out_channels; ch++)
  1500. output[ch] = s->outptr[channel_map[ch]];
  1501. for (ch = 0; ch < s->out_channels; ch++) {
  1502. if (!ch || channel_map[ch])
  1503. s->outptr[channel_map[ch]] += AC3_BLOCK_SIZE;
  1504. }
  1505. }
  1506. /* keep last block for error concealment in next frame */
  1507. for (ch = 0; ch < s->out_channels; ch++)
  1508. memcpy(s->output[ch + offset], output[ch], AC3_BLOCK_SIZE*sizeof(SHORTFLOAT));
  1509. /* check if there is dependent frame */
  1510. if (buf_size > s->frame_size) {
  1511. AC3HeaderInfo hdr;
  1512. int err;
  1513. if ((ret = init_get_bits8(&s->gbc, buf + s->frame_size, buf_size - s->frame_size)) < 0)
  1514. return ret;
  1515. err = ff_ac3_parse_header(&s->gbc, &hdr);
  1516. if (err)
  1517. return err;
  1518. if (hdr.frame_type == EAC3_FRAME_TYPE_DEPENDENT) {
  1519. if (hdr.num_blocks != s->num_blocks || s->sample_rate != hdr.sample_rate) {
  1520. av_log(avctx, AV_LOG_WARNING, "Ignoring non-compatible dependent frame.\n");
  1521. } else {
  1522. buf += s->frame_size;
  1523. buf_size -= s->frame_size;
  1524. s->prev_output_mode = s->output_mode;
  1525. s->prev_bit_rate = s->bit_rate;
  1526. got_independent_frame = 1;
  1527. goto dependent_frame;
  1528. }
  1529. }
  1530. }
  1531. frame->decode_error_flags = err ? FF_DECODE_ERROR_INVALID_BITSTREAM : 0;
  1532. /* if frame is ok, set audio parameters */
  1533. if (!err) {
  1534. avctx->sample_rate = s->sample_rate;
  1535. avctx->bit_rate = s->bit_rate + s->prev_bit_rate;
  1536. }
  1537. for (ch = 0; ch < EAC3_MAX_CHANNELS; ch++)
  1538. extended_channel_map[ch] = ch;
  1539. if (s->frame_type == EAC3_FRAME_TYPE_DEPENDENT) {
  1540. uint64_t ich_layout = avpriv_ac3_channel_layout_tab[s->prev_output_mode & ~AC3_OUTPUT_LFEON];
  1541. int channel_map_size = ff_ac3_channels_tab[s->output_mode & ~AC3_OUTPUT_LFEON] + s->lfe_on;
  1542. uint64_t channel_layout;
  1543. int extend = 0;
  1544. if (s->prev_output_mode & AC3_OUTPUT_LFEON)
  1545. ich_layout |= AV_CH_LOW_FREQUENCY;
  1546. channel_layout = ich_layout;
  1547. for (ch = 0; ch < 16; ch++) {
  1548. if (s->channel_map & (1 << (EAC3_MAX_CHANNELS - ch - 1))) {
  1549. channel_layout |= custom_channel_map_locations[ch][1];
  1550. }
  1551. }
  1552. if (av_get_channel_layout_nb_channels(channel_layout) > EAC3_MAX_CHANNELS) {
  1553. av_log(avctx, AV_LOG_ERROR, "Too many channels (%d) coded\n",
  1554. av_get_channel_layout_nb_channels(channel_layout));
  1555. return AVERROR_INVALIDDATA;
  1556. }
  1557. avctx->channel_layout = channel_layout;
  1558. avctx->channels = av_get_channel_layout_nb_channels(channel_layout);
  1559. for (ch = 0; ch < EAC3_MAX_CHANNELS; ch++) {
  1560. if (s->channel_map & (1 << (EAC3_MAX_CHANNELS - ch - 1))) {
  1561. if (custom_channel_map_locations[ch][0]) {
  1562. int index = av_get_channel_layout_channel_index(channel_layout,
  1563. custom_channel_map_locations[ch][1]);
  1564. if (index < 0)
  1565. return AVERROR_INVALIDDATA;
  1566. if (extend >= channel_map_size)
  1567. return AVERROR_INVALIDDATA;
  1568. extended_channel_map[index] = offset + channel_map[extend++];
  1569. } else {
  1570. int i;
  1571. for (i = 0; i < 64; i++) {
  1572. if ((1LL << i) & custom_channel_map_locations[ch][1]) {
  1573. int index = av_get_channel_layout_channel_index(channel_layout,
  1574. 1LL << i);
  1575. if (index < 0)
  1576. return AVERROR_INVALIDDATA;
  1577. if (extend >= channel_map_size)
  1578. return AVERROR_INVALIDDATA;
  1579. extended_channel_map[index] = offset + channel_map[extend++];
  1580. }
  1581. }
  1582. }
  1583. }
  1584. }
  1585. }
  1586. /* get output buffer */
  1587. frame->nb_samples = s->num_blocks * AC3_BLOCK_SIZE;
  1588. if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
  1589. return ret;
  1590. for (ch = 0; ch < avctx->channels; ch++) {
  1591. int map = extended_channel_map[ch];
  1592. av_assert0(ch>=AV_NUM_DATA_POINTERS || frame->extended_data[ch] == frame->data[ch]);
  1593. memcpy((SHORTFLOAT *)frame->extended_data[ch],
  1594. s->output_buffer[map],
  1595. s->num_blocks * AC3_BLOCK_SIZE * sizeof(SHORTFLOAT));
  1596. }
  1597. /*
  1598. * AVMatrixEncoding
  1599. *
  1600. * Check whether the input layout is compatible, and make sure we're not
  1601. * downmixing (else the matrix encoding is no longer applicable).
  1602. */
  1603. matrix_encoding = AV_MATRIX_ENCODING_NONE;
  1604. if (s->channel_mode == AC3_CHMODE_STEREO &&
  1605. s->channel_mode == (s->output_mode & ~AC3_OUTPUT_LFEON)) {
  1606. if (s->dolby_surround_mode == AC3_DSURMOD_ON)
  1607. matrix_encoding = AV_MATRIX_ENCODING_DOLBY;
  1608. else if (s->dolby_headphone_mode == AC3_DHEADPHONMOD_ON)
  1609. matrix_encoding = AV_MATRIX_ENCODING_DOLBYHEADPHONE;
  1610. } else if (s->channel_mode >= AC3_CHMODE_2F2R &&
  1611. s->channel_mode == (s->output_mode & ~AC3_OUTPUT_LFEON)) {
  1612. switch (s->dolby_surround_ex_mode) {
  1613. case AC3_DSUREXMOD_ON: // EX or PLIIx
  1614. matrix_encoding = AV_MATRIX_ENCODING_DOLBYEX;
  1615. break;
  1616. case AC3_DSUREXMOD_PLIIZ:
  1617. matrix_encoding = AV_MATRIX_ENCODING_DPLIIZ;
  1618. break;
  1619. default: // not indicated or off
  1620. break;
  1621. }
  1622. }
  1623. if ((ret = ff_side_data_update_matrix_encoding(frame, matrix_encoding)) < 0)
  1624. return ret;
  1625. /* AVDownmixInfo */
  1626. if ((downmix_info = av_downmix_info_update_side_data(frame))) {
  1627. switch (s->preferred_downmix) {
  1628. case AC3_DMIXMOD_LTRT:
  1629. downmix_info->preferred_downmix_type = AV_DOWNMIX_TYPE_LTRT;
  1630. break;
  1631. case AC3_DMIXMOD_LORO:
  1632. downmix_info->preferred_downmix_type = AV_DOWNMIX_TYPE_LORO;
  1633. break;
  1634. case AC3_DMIXMOD_DPLII:
  1635. downmix_info->preferred_downmix_type = AV_DOWNMIX_TYPE_DPLII;
  1636. break;
  1637. default:
  1638. downmix_info->preferred_downmix_type = AV_DOWNMIX_TYPE_UNKNOWN;
  1639. break;
  1640. }
  1641. downmix_info->center_mix_level = gain_levels[s-> center_mix_level];
  1642. downmix_info->center_mix_level_ltrt = gain_levels[s-> center_mix_level_ltrt];
  1643. downmix_info->surround_mix_level = gain_levels[s-> surround_mix_level];
  1644. downmix_info->surround_mix_level_ltrt = gain_levels[s->surround_mix_level_ltrt];
  1645. if (s->lfe_mix_level_exists)
  1646. downmix_info->lfe_mix_level = gain_levels_lfe[s->lfe_mix_level];
  1647. else
  1648. downmix_info->lfe_mix_level = 0.0; // -inf dB
  1649. } else
  1650. return AVERROR(ENOMEM);
  1651. *got_frame_ptr = 1;
  1652. if (!s->superframe_size)
  1653. return FFMIN(full_buf_size, s->frame_size);
  1654. return FFMIN(full_buf_size, s->superframe_size);
  1655. }
  1656. /**
  1657. * Uninitialize the AC-3 decoder.
  1658. */
  1659. static av_cold int ac3_decode_end(AVCodecContext *avctx)
  1660. {
  1661. AC3DecodeContext *s = avctx->priv_data;
  1662. ff_mdct_end(&s->imdct_512);
  1663. ff_mdct_end(&s->imdct_256);
  1664. av_freep(&s->fdsp);
  1665. av_freep(&s->downmix_coeffs[0]);
  1666. return 0;
  1667. }
  1668. #define OFFSET(x) offsetof(AC3DecodeContext, x)
  1669. #define PAR (AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM)