27 #include "config_components.h"
68 5, 6, 7, 8, 9, 10, 11, 12, 14, 16
92 3.162275, 2.818382, 2.511886, 2.238719, 1.995261, 1.778278, 1.584893,
93 1.412536, 1.258924, 1.122018, 1.000000, 0.891251, 0.794328, 0.707946,
94 0.630957, 0.562341, 0.501187, 0.446683, 0.398107, 0.354813, 0.316227,
95 0.281838, 0.251188, 0.223872, 0.199526, 0.177828, 0.158489, 0.141253,
96 0.125892, 0.112201, 0.100000, 0.089125
104 { { 2, 7 }, { 7, 2 }, },
106 { { 2, 7 }, { 7, 2 }, },
107 { { 2, 7 }, { 5, 5 }, { 7, 2 }, },
108 { { 2, 7 }, { 7, 2 }, { 6, 6 }, },
109 { { 2, 7 }, { 5, 5 }, { 7, 2 }, { 8, 8 }, },
110 { { 2, 7 }, { 7, 2 }, { 6, 7 }, { 7, 6 }, },
111 { { 2, 7 }, { 5, 5 }, { 7, 2 }, { 6, 7 }, { 7, 6 }, },
122 return ((
code - (levels >> 1)) * (1 << 24)) / levels;
134 for (
i = 0;
i < 128;
i++) {
142 for (
i = 0;
i < 32;
i++) {
148 for (
i = 0;
i < 128;
i++) {
160 for (
i = 0;
i < 7;
i++) {
164 for (
i = 0;
i < 15;
i++) {
172 for (
i = 0;
i < 256;
i++) {
173 int v = (
i >> 5) - ((
i >> 7) << 3) - 5;
179 for (
i = 0;
i < 256;
i++) {
180 int v = (
i >> 4) - ((
i >> 7) << 4) - 4;
211 const float scale = 1.0f;
246 s->xcfptr[
i] =
s->transform_coeffs[
i];
247 s->dlyptr[
i] =
s->delay[
i];
259 memset(&
s->frame_type, 0,
sizeof(*
s) - offsetof(AC3DecodeContext,
frame_type));
276 i = !
s->channel_mode;
278 s->dialog_normalization[(!
s->channel_mode)-
i] = -
get_bits(gbc, 5);
279 if (
s->dialog_normalization[(!
s->channel_mode)-
i] == 0) {
280 s->dialog_normalization[(!
s->channel_mode)-
i] = -31;
282 if (
s->target_level != 0) {
283 s->level_gain[(!
s->channel_mode)-
i] =
powf(2.0
f,
284 (
float)(
s->target_level -
285 s->dialog_normalization[(!
s->channel_mode)-
i])/6.0f);
287 if (
s->compression_exists[(!
s->channel_mode)-
i] =
get_bits1(gbc)) {
288 s->heavy_dynamic_range[(!
s->channel_mode)-
i] =
300 if (
s->bitstream_id != 6) {
308 s->center_mix_level_ltrt =
get_bits(gbc, 3);
314 s->dolby_surround_ex_mode =
get_bits(gbc, 2);
315 s->dolby_headphone_mode =
get_bits(gbc, 2);
344 s->bit_alloc_params.sr_code = hdr.
sr_code;
349 s->bit_alloc_params.sr_shift = hdr.
sr_shift;
353 s->fbw_channels =
s->channels -
s->lfe_on;
354 s->lfe_ch =
s->fbw_channels + 1;
362 s->center_mix_level_ltrt = 4;
363 s->surround_mix_level_ltrt = 4;
364 s->lfe_mix_level_exists = 0;
373 s->start_freq[
s->lfe_ch] = 0;
374 s->end_freq[
s->lfe_ch] = 7;
375 s->num_exp_groups[
s->lfe_ch] = 2;
376 s->channel_in_cpl[
s->lfe_ch] = 0;
379 if (
s->bitstream_id <= 10) {
381 s->snr_offset_strategy = 2;
382 s->block_switch_syntax = 1;
383 s->dither_flag_syntax = 1;
384 s->bit_allocation_syntax = 1;
385 s->fast_gain_syntax = 0;
386 s->first_cpl_leak = 0;
389 memset(
s->channel_uses_aht, 0,
sizeof(
s->channel_uses_aht));
391 }
else if (CONFIG_EAC3_DECODER) {
412 if (!
s->downmix_coeffs[0]) {
414 sizeof(**
s->downmix_coeffs));
415 if (!
s->downmix_coeffs[0])
420 for (
i = 0;
i <
s->fbw_channels;
i++) {
424 if (
s->channel_mode > 1 &&
s->channel_mode & 1) {
425 downmix_coeffs[0][1] = downmix_coeffs[1][1] = cmix;
428 int nf =
s->channel_mode - 2;
429 downmix_coeffs[0][nf] = downmix_coeffs[1][nf] = smix *
LEVEL_MINUS_3DB;
432 int nf =
s->channel_mode - 4;
433 downmix_coeffs[0][nf] = downmix_coeffs[1][nf+1] = smix;
438 for (
i = 0;
i <
s->fbw_channels;
i++) {
439 norm0 += downmix_coeffs[0][
i];
440 norm1 += downmix_coeffs[1][
i];
442 norm0 = 1.0f / norm0;
443 norm1 = 1.0f / norm1;
444 for (
i = 0;
i <
s->fbw_channels;
i++) {
445 downmix_coeffs[0][
i] *= norm0;
446 downmix_coeffs[1][
i] *= norm1;
450 for (
i = 0;
i <
s->fbw_channels;
i++)
451 downmix_coeffs[0][
i] = (downmix_coeffs[0][
i] +
454 for (
i = 0;
i <
s->fbw_channels;
i++) {
455 s->downmix_coeffs[0][
i] =
FIXR12(downmix_coeffs[0][
i]);
456 s->downmix_coeffs[1][
i] =
FIXR12(downmix_coeffs[1][
i]);
468 uint8_t absexp, int8_t *dexps)
470 int i, j, grp, group_size;
475 group_size = exp_strategy + (exp_strategy ==
EXP_D45);
476 for (grp = 0,
i = 0; grp < ngrps; grp++) {
489 for (
i = 0, j = 0;
i < ngrps * 3;
i++) {
490 prevexp += dexp[
i] - 2;
495 switch (group_size) {
496 case 4: dexps[j++] = prevexp;
497 dexps[j++] = prevexp;
498 case 2: dexps[j++] = prevexp;
499 case 1: dexps[j++] = prevexp;
515 for (band = 0; band <
s->num_cpl_bands; band++) {
516 int band_start = bin;
517 int band_end = bin +
s->cpl_band_sizes[band];
518 for (ch = 1; ch <=
s->fbw_channels; ch++) {
519 if (
s->channel_in_cpl[ch]) {
520 int cpl_coord =
s->cpl_coords[ch][band] << 5;
521 for (bin = band_start; bin < band_end; bin++) {
522 s->fixed_coeffs[ch][bin] =
523 MULH(
s->fixed_coeffs[
CPL_CH][bin] * (1 << 4), cpl_coord);
525 if (ch == 2 &&
s->phase_flags[band]) {
526 for (bin = band_start; bin < band_end; bin++)
527 s->fixed_coeffs[2][bin] = -
s->fixed_coeffs[2][bin];
553 int start_freq =
s->start_freq[ch_index];
554 int end_freq =
s->end_freq[ch_index];
555 uint8_t *baps =
s->bap[ch_index];
556 int8_t *exps =
s->dexps[ch_index];
557 int32_t *coeffs =
s->fixed_coeffs[ch_index];
558 int dither = (ch_index ==
CPL_CH) ||
s->dither_flag[ch_index];
562 for (freq = start_freq; freq < end_freq; freq++) {
563 int bap = baps[freq];
569 mantissa = (((
av_lfg_get(&
s->dith_state)>>8)*181)>>8) - 5931008;
623 coeffs[freq] = mantissa >> exps[freq];
635 for (ch = 1; ch <=
s->fbw_channels; ch++) {
636 if (!
s->dither_flag[ch] &&
s->channel_in_cpl[ch]) {
639 s->fixed_coeffs[ch][
i] = 0;
648 if (!
s->channel_uses_aht[ch]) {
654 if (CONFIG_EAC3_DECODER && !
blk)
656 for (bin =
s->start_freq[ch]; bin < s->end_freq[ch]; bin++) {
657 s->fixed_coeffs[ch][bin] =
s->pre_mantissa[ch][bin][
blk] >>
s->dexps[ch][bin];
673 for (ch = 1; ch <=
s->channels; ch++) {
678 if (
s->channel_in_cpl[ch]) {
686 end =
s->end_freq[ch];
689 s->fixed_coeffs[ch][end] = 0;
706 end =
FFMIN(
s->end_freq[1],
s->end_freq[2]);
708 for (bnd = 0; bnd <
s->num_rematrixing_bands; bnd++) {
709 if (
s->rematrixing_flags[bnd]) {
712 int tmp0 =
s->fixed_coeffs[1][
i];
713 s->fixed_coeffs[1][
i] +=
s->fixed_coeffs[2][
i];
714 s->fixed_coeffs[2][
i] = tmp0 -
s->fixed_coeffs[2][
i];
729 for (ch = 1; ch <=
channels; ch++) {
730 if (
s->block_switch[ch]) {
733 for (
i = 0;
i < 128;
i++)
734 x[
i] =
s->transform_coeffs[ch][2 *
i];
735 s->tx_fn_128(
s->tx_128,
s->tmp_output, x,
sizeof(
INTFLOAT));
737 s->fdsp->vector_fmul_window_scaled(
s->outptr[ch - 1],
s->delay[ch - 1 +
offset],
738 s->tmp_output,
s->window, 128, 8);
740 s->fdsp->vector_fmul_window(
s->outptr[ch - 1],
s->delay[ch - 1 +
offset],
741 s->tmp_output,
s->window, 128);
743 for (
i = 0;
i < 128;
i++)
744 x[
i] =
s->transform_coeffs[ch][2 *
i + 1];
747 s->tx_fn_256(
s->tx_256,
s->tmp_output,
s->transform_coeffs[ch],
sizeof(
INTFLOAT));
749 s->fdsp->vector_fmul_window_scaled(
s->outptr[ch - 1],
s->delay[ch - 1 +
offset],
750 s->tmp_output,
s->window, 128, 8);
752 s->fdsp->vector_fmul_window(
s->outptr[ch - 1],
s->delay[ch - 1 +
offset],
753 s->tmp_output,
s->window, 128);
755 memcpy(
s->delay[ch - 1 +
offset],
s->tmp_output + 128, 128 *
sizeof(
INTFLOAT));
765 int channel_data_size =
sizeof(
s->delay[0]);
766 switch (
s->channel_mode) {
770 memcpy(
s->delay[1],
s->delay[0], channel_data_size);
773 memset(
s->delay[3], 0, channel_data_size);
775 memset(
s->delay[2], 0, channel_data_size);
778 memset(
s->delay[4], 0, channel_data_size);
780 memset(
s->delay[3], 0, channel_data_size);
782 memcpy(
s->delay[2],
s->delay[1], channel_data_size);
783 memset(
s->delay[1], 0, channel_data_size);
806 int ecpl,
int start_subband,
int end_subband,
807 const uint8_t *default_band_struct,
808 int *num_bands, uint8_t *band_sizes,
809 uint8_t *band_struct,
int band_struct_size)
811 int subbnd, bnd, n_subbands, n_bands=0;
814 n_subbands = end_subband - start_subband;
817 memcpy(band_struct, default_band_struct, band_struct_size);
819 av_assert0(band_struct_size >= start_subband + n_subbands);
821 band_struct += start_subband + 1;
825 for (subbnd = 0; subbnd < n_subbands - 1; subbnd++) {
833 if (num_bands || band_sizes ) {
834 n_bands = n_subbands;
835 bnd_sz[0] = ecpl ? 6 : 12;
836 for (bnd = 0, subbnd = 1; subbnd < n_subbands; subbnd++) {
837 int subbnd_size = (ecpl && subbnd < 4) ? 6 : 12;
838 if (band_struct[subbnd - 1]) {
840 bnd_sz[bnd] += subbnd_size;
842 bnd_sz[++bnd] = subbnd_size;
849 *num_bands = n_bands;
851 memcpy(band_sizes, bnd_sz, n_bands);
857 int dst_start_freq, dst_end_freq, src_start_freq,
858 start_subband, end_subband;
862 s->channel_uses_spx[1] = 1;
864 unsigned channel_uses_spx =
get_bits(bc,
s->fbw_channels);
865 for (
int ch =
s->fbw_channels; ch >= 1; --ch) {
866 s->channel_uses_spx[ch] = channel_uses_spx & 1;
867 channel_uses_spx >>= 1;
874 start_subband =
get_bits(bc, 3) + 2;
875 if (start_subband > 7)
876 start_subband += start_subband - 7;
882 end_subband += end_subband - 7;
883 dst_start_freq = dst_start_freq * 12 + 25;
884 src_start_freq = start_subband * 12 + 25;
885 dst_end_freq = end_subband * 12 + 25;
888 if (start_subband >= end_subband) {
890 "range (%d >= %d)\n", start_subband, end_subband);
893 if (dst_start_freq >= src_start_freq) {
895 "copy start bin (%d >= %d)\n", dst_start_freq, src_start_freq);
899 s->spx_dst_start_freq = dst_start_freq;
900 s->spx_src_start_freq = src_start_freq;
902 s->spx_dst_end_freq = dst_end_freq;
905 start_subband, end_subband,
909 s->spx_band_struct,
sizeof(
s->spx_band_struct));
916 int fbw_channels =
s->fbw_channels;
919 for (ch = 1; ch <= fbw_channels; ch++) {
920 if (
s->channel_uses_spx[ch]) {
921 if (
s->first_spx_coords[ch] ||
get_bits1(bc)) {
923 int bin, master_spx_coord;
925 s->first_spx_coords[ch] = 0;
927 master_spx_coord =
get_bits(bc, 2) * 3;
929 bin =
s->spx_src_start_freq;
930 for (bnd = 0; bnd <
s->num_spx_bands; bnd++) {
931 int bandsize =
s->spx_band_sizes[bnd];
932 int spx_coord_exp, spx_coord_mant;
936 int64_t accu = ((bin << 23) + (bandsize << 22))
938 nratio = (int)(accu >> 32);
939 nratio -= spx_blend << 18;
944 }
else if (nratio > 0x7fffff) {
949 accu = (
int64_t)nblend * 1859775393;
950 nblend = (int)((accu + (1<<29)) >> 30);
957 nratio = ((
float)((bin + (bandsize >> 1))) /
s->spx_dst_end_freq) - spx_blend;
959 nblend =
sqrtf(3.0
f * nratio);
961 sblend =
sqrtf(1.0
f - nratio);
968 if (spx_coord_exp == 15) spx_coord_mant <<= 1;
969 else spx_coord_mant += 4;
970 spx_coord_mant <<= (25 - spx_coord_exp - master_spx_coord);
974 accu = (
int64_t)nblend * spx_coord_mant;
975 s->spx_noise_blend[ch][bnd] = (int)((accu + (1<<22)) >> 23);
976 accu = (
int64_t)sblend * spx_coord_mant;
977 s->spx_signal_blend[ch][bnd] = (int)((accu + (1<<22)) >> 23);
979 spx_coord = spx_coord_mant * (1.0f / (1 << 23));
980 s->spx_noise_blend [ch][bnd] = nblend * spx_coord;
981 s->spx_signal_blend[ch][bnd] = sblend * spx_coord;
986 s->first_spx_coords[ch] = 1;
992 uint8_t *bit_alloc_stages)
995 int fbw_channels =
s->fbw_channels;
996 int channel_mode =
s->channel_mode;
1002 if (
s->cpl_in_use[
blk]) {
1004 int cpl_start_subband, cpl_end_subband;
1020 s->channel_in_cpl[1] = 1;
1021 s->channel_in_cpl[2] = 1;
1023 for (ch = 1; ch <= fbw_channels; ch++)
1032 cpl_start_subband =
get_bits(bc, 4);
1033 cpl_end_subband =
s->spx_in_use ? (
s->spx_src_start_freq - 37) / 12 :
1035 if (cpl_start_subband >= cpl_end_subband) {
1037 cpl_start_subband, cpl_end_subband);
1040 s->start_freq[
CPL_CH] = cpl_start_subband * 12 + 37;
1041 s->end_freq[
CPL_CH] = cpl_end_subband * 12 + 37;
1046 &
s->num_cpl_bands,
s->cpl_band_sizes,
1047 s->cpl_band_struct,
sizeof(
s->cpl_band_struct));
1050 for (ch = 1; ch <= fbw_channels; ch++) {
1051 s->channel_in_cpl[ch] = 0;
1052 s->first_cpl_coords[ch] = 1;
1054 s->first_cpl_leak =
s->eac3;
1055 s->phase_flags_in_use = 0;
1064 int fbw_channels =
s->fbw_channels;
1066 int cpl_coords_exist = 0;
1068 for (ch = 1; ch <= fbw_channels; ch++) {
1069 if (
s->channel_in_cpl[ch]) {
1070 if ((
s->eac3 &&
s->first_cpl_coords[ch]) ||
get_bits1(bc)) {
1071 int master_cpl_coord, cpl_coord_exp, cpl_coord_mant;
1072 s->first_cpl_coords[ch] = 0;
1073 cpl_coords_exist = 1;
1074 master_cpl_coord = 3 *
get_bits(bc, 2);
1075 for (bnd = 0; bnd <
s->num_cpl_bands; bnd++) {
1078 if (cpl_coord_exp == 15)
1079 s->cpl_coords[ch][bnd] = cpl_coord_mant << 22;
1081 s->cpl_coords[ch][bnd] = (cpl_coord_mant + 16) << 21;
1082 s->cpl_coords[ch][bnd] >>= (cpl_coord_exp + master_cpl_coord);
1086 "be present in block 0\n");
1091 s->first_cpl_coords[ch] = 1;
1096 for (bnd = 0; bnd <
s->num_cpl_bands; bnd++) {
1097 s->phase_flags[bnd] =
s->phase_flags_in_use ?
get_bits1(bc) : 0;
1109 int fbw_channels =
s->fbw_channels;
1110 int channel_mode =
s->channel_mode;
1111 int i, bnd, seg, ch,
ret;
1112 int different_transforms;
1119 different_transforms = 0;
1120 if (
s->block_switch_syntax) {
1121 for (ch = 1; ch <= fbw_channels; ch++) {
1123 if (ch > 1 &&
s->block_switch[ch] !=
s->block_switch[1])
1124 different_transforms = 1;
1129 if (
s->dither_flag_syntax) {
1130 for (ch = 1; ch <= fbw_channels; ch++) {
1136 i = !
s->channel_mode;
1143 if (range_bits <= 127 || s->drc_scale <= 1.0)
1147 }
else if (
blk == 0) {
1155 if (
s->spx_in_use) {
1160 if (!
s->eac3 || !
s->spx_in_use) {
1162 for (ch = 1; ch <= fbw_channels; ch++) {
1163 s->channel_uses_spx[ch] = 0;
1164 s->first_spx_coords[ch] = 1;
1176 }
else if (!
s->eac3) {
1179 "be present in block 0\n");
1182 s->cpl_in_use[
blk] =
s->cpl_in_use[
blk-1];
1185 cpl_in_use =
s->cpl_in_use[
blk];
1196 s->num_rematrixing_bands = 4;
1197 if (cpl_in_use &&
s->start_freq[
CPL_CH] <= 61) {
1198 s->num_rematrixing_bands -= 1 + (
s->start_freq[
CPL_CH] == 37);
1199 }
else if (
s->spx_in_use &&
s->spx_src_start_freq <= 61) {
1200 s->num_rematrixing_bands--;
1202 for (bnd = 0; bnd <
s->num_rematrixing_bands; bnd++)
1206 "new rematrixing strategy not present in block 0\n");
1207 s->num_rematrixing_bands = 0;
1212 for (ch = !cpl_in_use; ch <=
s->channels; ch++) {
1214 s->exp_strategy[
blk][ch] =
get_bits(gbc, 2 - (ch ==
s->lfe_ch));
1216 bit_alloc_stages[ch] = 3;
1220 for (ch = 1; ch <= fbw_channels; ch++) {
1221 s->start_freq[ch] = 0;
1224 int prev =
s->end_freq[ch];
1225 if (
s->channel_in_cpl[ch])
1226 s->end_freq[ch] =
s->start_freq[
CPL_CH];
1227 else if (
s->channel_uses_spx[ch])
1228 s->end_freq[ch] =
s->spx_src_start_freq;
1230 int bandwidth_code =
get_bits(gbc, 6);
1231 if (bandwidth_code > 60) {
1235 s->end_freq[ch] = bandwidth_code * 3 + 73;
1237 group_size = 3 << (
s->exp_strategy[
blk][ch] - 1);
1238 s->num_exp_groups[ch] = (
s->end_freq[ch] + group_size-4) / group_size;
1239 if (
blk > 0 &&
s->end_freq[ch] != prev)
1249 for (ch = !cpl_in_use; ch <=
s->channels; ch++) {
1251 s->dexps[ch][0] =
get_bits(gbc, 4) << !ch;
1253 s->num_exp_groups[ch],
s->dexps[ch][0],
1254 &
s->dexps[ch][
s->start_freq[ch]+!!ch])) {
1257 if (ch !=
CPL_CH && ch !=
s->lfe_ch)
1263 if (
s->bit_allocation_syntax) {
1270 for (ch = !cpl_in_use; ch <=
s->channels; ch++)
1271 bit_alloc_stages[ch] =
FFMAX(bit_alloc_stages[ch], 2);
1274 "be present in block 0\n");
1280 if (!
s->eac3 || !
blk) {
1281 if (
s->snr_offset_strategy &&
get_bits1(gbc)) {
1284 csnr = (
get_bits(gbc, 6) - 15) << 4;
1285 for (
i = ch = !cpl_in_use; ch <=
s->channels; ch++) {
1287 if (ch ==
i ||
s->snr_offset_strategy == 2)
1288 snr = (csnr +
get_bits(gbc, 4)) << 2;
1290 if (
blk &&
s->snr_offset[ch] != snr) {
1291 bit_alloc_stages[ch] =
FFMAX(bit_alloc_stages[ch], 1);
1293 s->snr_offset[ch] = snr;
1297 int prev =
s->fast_gain[ch];
1300 if (
blk && prev !=
s->fast_gain[ch])
1301 bit_alloc_stages[ch] =
FFMAX(bit_alloc_stages[ch], 2);
1304 }
else if (!
s->eac3 && !
blk) {
1312 for (ch = !cpl_in_use; ch <=
s->channels; ch++) {
1313 int prev =
s->fast_gain[ch];
1316 if (
blk && prev !=
s->fast_gain[ch])
1317 bit_alloc_stages[ch] =
FFMAX(bit_alloc_stages[ch], 2);
1319 }
else if (
s->eac3 && !
blk) {
1320 for (ch = !cpl_in_use; ch <=
s->channels; ch++)
1336 if (
blk && (fl !=
s->bit_alloc_params.cpl_fast_leak ||
1337 sl !=
s->bit_alloc_params.cpl_slow_leak)) {
1340 s->bit_alloc_params.cpl_fast_leak = fl;
1341 s->bit_alloc_params.cpl_slow_leak = sl;
1342 }
else if (!
s->eac3 && !
blk) {
1344 "be present in block 0\n");
1347 s->first_cpl_leak = 0;
1353 for (ch = !cpl_in_use; ch <= fbw_channels; ch++) {
1359 bit_alloc_stages[ch] =
FFMAX(bit_alloc_stages[ch], 2);
1362 for (ch = !cpl_in_use; ch <= fbw_channels; ch++) {
1364 s->dba_nsegs[ch] =
get_bits(gbc, 3) + 1;
1365 for (seg = 0; seg <
s->dba_nsegs[ch]; seg++) {
1366 s->dba_offsets[ch][seg] =
get_bits(gbc, 5);
1367 s->dba_lengths[ch][seg] =
get_bits(gbc, 4);
1368 s->dba_values[ch][seg] =
get_bits(gbc, 3);
1371 bit_alloc_stages[ch] =
FFMAX(bit_alloc_stages[ch], 2);
1374 }
else if (
blk == 0) {
1375 for (ch = 0; ch <=
s->channels; ch++) {
1381 for (ch = !cpl_in_use; ch <=
s->channels; ch++) {
1382 if (bit_alloc_stages[ch] > 2) {
1385 s->start_freq[ch],
s->end_freq[ch],
1386 s->psd[ch],
s->band_psd[ch]);
1388 if (bit_alloc_stages[ch] > 1) {
1392 s->start_freq[ch],
s->end_freq[ch],
1393 s->fast_gain[ch], (ch ==
s->lfe_ch),
1394 s->dba_mode[ch],
s->dba_nsegs[ch],
1395 s->dba_offsets[ch],
s->dba_lengths[ch],
1396 s->dba_values[ch],
s->mask[ch])) {
1401 if (bit_alloc_stages[ch] > 0) {
1403 const uint8_t *
bap_tab =
s->channel_uses_aht[ch] ?
1405 s->ac3dsp.bit_alloc_calc_bap(
s->mask[ch],
s->psd[ch],
1406 s->start_freq[ch],
s->end_freq[ch],
1408 s->bit_alloc_params.floor,
1430 for (ch = 1; ch <=
s->channels; ch++) {
1431 int audio_channel = 0;
1434 audio_channel = 2-ch;
1435 if (
s->heavy_compression &&
s->compression_exists[audio_channel])
1436 gain =
s->heavy_dynamic_range[audio_channel];
1438 gain =
s->dynamic_range[audio_channel];
1441 scale_coefs(
s->transform_coeffs[ch],
s->fixed_coeffs[ch], gain, 256);
1443 if (
s->target_level != 0)
1444 gain = gain *
s->level_gain[audio_channel];
1445 gain *= 1.0 / 4194304.0f;
1446 s->fmt_conv.int32_to_float_fmul_scalar(
s->transform_coeffs[ch],
1447 s->fixed_coeffs[ch], gain, 256);
1452 if (CONFIG_EAC3_DECODER &&
s->spx_in_use) {
1459 downmix_output =
s->channels !=
s->out_channels &&
1460 !((
s->output_mode & AC3_OUTPUT_LFEON) &&
1461 s->fbw_channels ==
s->out_channels);
1462 if (different_transforms) {
1472 if (downmix_output) {
1475 s->out_channels,
s->fbw_channels, 256);
1478 s->out_channels,
s->fbw_channels, 256);
1482 if (downmix_output) {
1484 s->out_channels,
s->fbw_channels, 256);
1487 if (downmix_output && !
s->downmixed) {
1490 s->out_channels,
s->fbw_channels, 128);
1503 int *got_frame_ptr,
AVPacket *avpkt)
1505 const uint8_t *buf = avpkt->
data;
1506 int buf_size, full_buf_size = avpkt->
size;
1510 int skip = 0, got_independent_frame = 0;
1517 s->superframe_size = 0;
1519 buf_size = full_buf_size;
1521 if (i < 0 || i > 10)
1528 if (buf_size >= 2 &&
AV_RB16(buf) == 0x770B) {
1530 int cnt =
FFMIN(buf_size, AC3_FRAME_BUFFER_SIZE) >> 1;
1531 s->bdsp.bswap16_buf((uint16_t *)
s->input_buffer,
1532 (
const uint16_t *) buf, cnt);
1534 memcpy(
s->input_buffer, buf,
FFMIN(buf_size, AC3_FRAME_BUFFER_SIZE));
1539 if (
s->consistent_noise_generation)
1542 buf =
s->input_buffer;
1568 if (
s->substreamid) {
1570 "unsupported substream %d: skipping frame\n",
1586 if (
s->frame_size > buf_size) {
1592 s->frame_size - 2)) {
1604 return FFMIN(full_buf_size,
s->frame_size);
1608 if (!err || (
s->channels &&
s->out_channels !=
s->channels)) {
1609 s->out_channels =
s->channels;
1610 s->output_mode =
s->channel_mode;
1612 s->output_mode |= AC3_OUTPUT_LFEON;
1613 if (
s->channels > 1 &&
1615 s->out_channels = 1;
1617 }
else if (
s->channels > 2 &&
1619 s->out_channels = 2;
1623 s->loro_center_mix_level =
gain_levels[
s-> center_mix_level];
1624 s->loro_surround_mix_level =
gain_levels[
s->surround_mix_level];
1625 s->ltrt_center_mix_level =
gain_levels[
s-> center_mix_level_ltrt];
1626 s->ltrt_surround_mix_level =
gain_levels[
s->surround_mix_level_ltrt];
1627 switch (
s->preferred_downmix) {
1642 if (
s->channels !=
s->out_channels && !((
s->output_mode & AC3_OUTPUT_LFEON) &&
1643 s->fbw_channels ==
s->out_channels)) {
1649 }
else if (!
s->channels) {
1655 if (
s->output_mode & AC3_OUTPUT_LFEON)
1663 if (
s->bitstream_mode == 0x7 &&
s->channels > 1)
1671 s->outptr[ch] =
s->output[ch +
offset];
1673 for (ch = 0; ch <
s->channels; ch++) {
1674 if (ch < s->out_channels)
1683 for (ch = 0; ch <
s->out_channels; ch++)
1685 for (ch = 0; ch <
s->out_channels; ch++)
1687 for (ch = 0; ch <
s->out_channels; ch++) {
1694 for (ch = 0; ch <
s->out_channels; ch++)
1698 if (buf_size >
s->frame_size) {
1702 if (buf_size -
s->frame_size <= 16) {
1703 skip = buf_size -
s->frame_size;
1718 buf +=
s->frame_size;
1719 buf_size -=
s->frame_size;
1720 s->prev_output_mode =
s->output_mode;
1721 s->prev_bit_rate =
s->bit_rate;
1722 got_independent_frame = 1;
1723 goto dependent_frame;
1734 avctx->
bit_rate =
s->bit_rate +
s->prev_bit_rate;
1744 extended_channel_map[ch] = ch;
1749 uint64_t channel_layout;
1752 if (
s->prev_output_mode & AC3_OUTPUT_LFEON)
1755 channel_layout = ich_layout;
1756 for (ch = 0; ch < 16; ch++) {
1777 if (extend >= channel_map_size)
1784 for (
i = 0;
i < 64;
i++) {
1789 if (extend >= channel_map_size)
1808 int map = extended_channel_map[ch];
1811 s->output_buffer[
map],
1823 s->channel_mode == (
s->output_mode & ~AC3_OUTPUT_LFEON)) {
1829 s->channel_mode == (
s->output_mode & ~AC3_OUTPUT_LFEON)) {
1830 switch (
s->dolby_surround_ex_mode) {
1851 switch (
s->preferred_downmix) {
1869 if (
s->lfe_mix_level_exists)
1877 if (!
s->superframe_size)
1878 return FFMIN(full_buf_size,
s->frame_size +
skip);
1880 return FFMIN(full_buf_size,
s->superframe_size +
skip);
1897 #define OFFSET(x) offsetof(AC3DecodeContext, x)
1898 #define PAR (AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM)