27#include "config_components.h"
62 for (
int i = 0;
i < 256;
i++) {
63 int v = (
i >> 5) - ((
i >> 7) << 3) - 5;
69 for (
int i = 0;
i < 256;
i++) {
70 int v = (
i >> 4) - ((
i >> 7) << 4) - 4;
101 const float scale = 1.0f;
136 s->xcfptr[
i] =
s->transform_coeffs[
i];
137 s->dlyptr[
i] =
s->delay[
i];
154 memset(&
s->frame_type, 0,
sizeof(*
s) - offsetof(AC3DecodeContext,
frame_type));
173 s->bit_alloc_params.sr_code = hdr.
sr_code;
178 s->bit_alloc_params.sr_shift = hdr.
sr_shift;
182 s->fbw_channels =
s->channels -
s->lfe_on;
183 s->lfe_ch =
s->fbw_channels + 1;
191 s->center_mix_level_ltrt = 4;
192 s->surround_mix_level_ltrt = 4;
193 s->lfe_mix_level_exists = 0;
202 s->start_freq[
s->lfe_ch] = 0;
203 s->end_freq[
s->lfe_ch] = 7;
204 s->num_exp_groups[
s->lfe_ch] = 2;
205 s->channel_in_cpl[
s->lfe_ch] = 0;
208 if (
s->bitstream_id <= 10) {
210 s->snr_offset_strategy = 2;
211 s->block_switch_syntax = 1;
212 s->dither_flag_syntax = 1;
213 s->bit_allocation_syntax = 1;
214 s->fast_gain_syntax = 0;
215 s->first_cpl_leak = 0;
218 memset(
s->channel_uses_aht, 0,
sizeof(
s->channel_uses_aht));
220 for (
int i = 0;
i < (
s->channel_mode ? 1 : 2);
i++) {
222 if (
s->dialog_normalization[
i] == 0) {
223 s->dialog_normalization[
i] = -31;
225 if (
s->target_level != 0) {
226 s->level_gain[
i] =
powf(2.0f,
227 (
float)(
s->target_level -
s->dialog_normalization[
i])/6.0f);
230 if (
s->compression_exists[
i]) {
235 }
else if (CONFIG_EAC3_DECODER) {
256 if (!
s->downmix_coeffs[0]) {
258 sizeof(**
s->downmix_coeffs));
259 if (!
s->downmix_coeffs[0])
264 for (
i = 0;
i <
s->fbw_channels;
i++) {
268 if (
s->channel_mode > 1 &&
s->channel_mode & 1) {
269 downmix_coeffs[0][1] = downmix_coeffs[1][1] = cmix;
272 int nf =
s->channel_mode - 2;
273 downmix_coeffs[0][nf] = downmix_coeffs[1][nf] = smix *
LEVEL_MINUS_3DB;
276 int nf =
s->channel_mode - 4;
277 downmix_coeffs[0][nf] = downmix_coeffs[1][nf+1] = smix;
282 for (
i = 0;
i <
s->fbw_channels;
i++) {
283 norm0 += downmix_coeffs[0][
i];
284 norm1 += downmix_coeffs[1][
i];
286 norm0 = 1.0f / norm0;
287 norm1 = 1.0f / norm1;
288 for (
i = 0;
i <
s->fbw_channels;
i++) {
289 downmix_coeffs[0][
i] *= norm0;
290 downmix_coeffs[1][
i] *= norm1;
294 for (
i = 0;
i <
s->fbw_channels;
i++)
295 downmix_coeffs[0][
i] = (downmix_coeffs[0][
i] +
298 for (
i = 0;
i <
s->fbw_channels;
i++) {
299 s->downmix_coeffs[0][
i] =
FIXR12(downmix_coeffs[0][
i]);
300 s->downmix_coeffs[1][
i] =
FIXR12(downmix_coeffs[1][
i]);
312 uint8_t absexp, int8_t *dexps)
314 int i, j, grp, group_size;
319 group_size = exp_strategy + (exp_strategy ==
EXP_D45);
320 for (grp = 0,
i = 0; grp < ngrps; grp++) {
333 for (
i = 0, j = 0;
i < ngrps * 3;
i++) {
334 prevexp += dexp[
i] - 2;
339 switch (group_size) {
340 case 4: dexps[j++] = prevexp;
341 dexps[j++] = prevexp;
343 case 2: dexps[j++] = prevexp;
345 case 1: dexps[j++] = prevexp;
361 for (band = 0; band <
s->num_cpl_bands; band++) {
362 int band_start = bin;
363 int band_end = bin +
s->cpl_band_sizes[band];
364 for (ch = 1; ch <=
s->fbw_channels; ch++) {
365 if (
s->channel_in_cpl[ch]) {
366 int cpl_coord =
s->cpl_coords[ch][band] << 5;
367 for (bin = band_start; bin < band_end; bin++) {
368 s->fixed_coeffs[ch][bin] =
369 MULH(
s->fixed_coeffs[
CPL_CH][bin] * (1 << 4), cpl_coord);
371 if (ch == 2 &&
s->phase_flags[band]) {
372 for (bin = band_start; bin < band_end; bin++)
373 s->fixed_coeffs[2][bin] = -
s->fixed_coeffs[2][bin];
397 return (mantissa * (1 << coeff_bits)) >> exponent;
399 return mantissa >> exponent;
419 int start_freq =
s->start_freq[ch_index];
420 int end_freq =
s->end_freq[ch_index];
421 uint8_t *baps =
s->bap[ch_index];
422 int8_t *exps =
s->dexps[ch_index];
423 int32_t *coeffs =
s->fixed_coeffs[ch_index];
424 int dither = (ch_index ==
CPL_CH) ||
s->dither_flag[ch_index];
433 for (freq = start_freq; freq < end_freq; freq++) {
434 int bap = baps[freq];
440 mantissa = (((
av_lfg_get(&
s->dith_state)>>8)*181)>>8) - 5931008;
515 for (ch = 1; ch <=
s->fbw_channels; ch++) {
516 if (!
s->dither_flag[ch] &&
s->channel_in_cpl[ch]) {
519 s->fixed_coeffs[ch][
i] = 0;
528 if (!
s->channel_uses_aht[ch]) {
534 if (CONFIG_EAC3_DECODER && !
blk)
536 for (bin =
s->start_freq[ch]; bin < s->end_freq[ch]; bin++) {
538 s->pre_mantissa[ch][bin][
blk],
s->dexps[ch][bin], 0);
554 for (ch = 1; ch <=
s->channels; ch++) {
559 if (
s->channel_in_cpl[ch]) {
567 end =
s->end_freq[ch];
570 s->fixed_coeffs[ch][end] = 0;
587 end =
FFMIN(
s->end_freq[1],
s->end_freq[2]);
589 for (bnd = 0; bnd <
s->num_rematrixing_bands; bnd++) {
590 if (
s->rematrixing_flags[bnd]) {
593 int tmp0 =
s->fixed_coeffs[1][
i];
594 s->fixed_coeffs[1][
i] +=
s->fixed_coeffs[2][
i];
595 s->fixed_coeffs[2][
i] = tmp0 -
s->fixed_coeffs[2][
i];
613 for (ch = 1; ch <=
channels; ch++) {
614 if (
s->block_switch[ch]) {
617 for (
i = 0;
i < 128;
i++)
618 x[
i] =
s->transform_coeffs[ch][2 *
i];
619 s->tx_fn_128(
s->tx_128,
s->tmp_output, x,
sizeof(
INTFLOAT));
621 s->fdsp->vector_fmul_window_scaled(
s->outptr[ch - 1],
s->delay[ch - 1 +
offset],
622 s->tmp_output,
s->window, 128, window_bits);
624 s->fdsp->vector_fmul_window(
s->outptr[ch - 1],
s->delay[ch - 1 +
offset],
625 s->tmp_output,
s->window, 128);
627 for (
i = 0;
i < 128;
i++)
628 x[
i] =
s->transform_coeffs[ch][2 *
i + 1];
631 s->tx_fn_256(
s->tx_256,
s->tmp_output,
s->transform_coeffs[ch],
sizeof(
INTFLOAT));
633 s->fdsp->vector_fmul_window_scaled(
s->outptr[ch - 1],
s->delay[ch - 1 +
offset],
634 s->tmp_output,
s->window, 128, window_bits);
636 s->fdsp->vector_fmul_window(
s->outptr[ch - 1],
s->delay[ch - 1 +
offset],
637 s->tmp_output,
s->window, 128);
639 memcpy(
s->delay[ch - 1 +
offset],
s->tmp_output + 128, 128 *
sizeof(
INTFLOAT));
649 int channel_data_size =
sizeof(
s->delay[0]);
650 switch (
s->channel_mode) {
654 memcpy(
s->delay[1],
s->delay[0], channel_data_size);
657 memset(
s->delay[3], 0, channel_data_size);
660 memset(
s->delay[2], 0, channel_data_size);
663 memset(
s->delay[4], 0, channel_data_size);
666 memset(
s->delay[3], 0, channel_data_size);
669 memcpy(
s->delay[2],
s->delay[1], channel_data_size);
670 memset(
s->delay[1], 0, channel_data_size);
693 int ecpl,
int start_subband,
int end_subband,
694 const uint8_t *default_band_struct,
695 int *num_bands, uint8_t *band_sizes,
696 uint8_t *band_struct,
int band_struct_size)
698 int subbnd, bnd, n_subbands, n_bands=0;
701 n_subbands = end_subband - start_subband;
704 memcpy(band_struct, default_band_struct, band_struct_size);
706 av_assert0(band_struct_size >= start_subband + n_subbands);
708 band_struct += start_subband + 1;
712 for (subbnd = 0; subbnd < n_subbands - 1; subbnd++) {
720 if (num_bands || band_sizes ) {
721 n_bands = n_subbands;
722 bnd_sz[0] = ecpl ? 6 : 12;
723 for (bnd = 0, subbnd = 1; subbnd < n_subbands; subbnd++) {
724 int subbnd_size = (ecpl && subbnd < 4) ? 6 : 12;
725 if (band_struct[subbnd - 1]) {
727 bnd_sz[bnd] += subbnd_size;
729 bnd_sz[++bnd] = subbnd_size;
736 *num_bands = n_bands;
738 memcpy(band_sizes, bnd_sz, n_bands);
744 int dst_start_freq, dst_end_freq, src_start_freq,
745 start_subband, end_subband;
749 s->channel_uses_spx[1] = 1;
751 unsigned channel_uses_spx =
get_bits(bc,
s->fbw_channels);
752 for (
int ch =
s->fbw_channels; ch >= 1; --ch) {
753 s->channel_uses_spx[ch] = channel_uses_spx & 1;
754 channel_uses_spx >>= 1;
761 start_subband =
get_bits(bc, 3) + 2;
762 if (start_subband > 7)
763 start_subband += start_subband - 7;
769 end_subband += end_subband - 7;
770 dst_start_freq = dst_start_freq * 12 + 25;
771 src_start_freq = start_subband * 12 + 25;
772 dst_end_freq = end_subband * 12 + 25;
775 if (start_subband >= end_subband) {
777 "range (%d >= %d)\n", start_subband, end_subband);
780 if (dst_start_freq >= src_start_freq) {
782 "copy start bin (%d >= %d)\n", dst_start_freq, src_start_freq);
786 s->spx_dst_start_freq = dst_start_freq;
787 s->spx_src_start_freq = src_start_freq;
789 s->spx_dst_end_freq = dst_end_freq;
792 start_subband, end_subband,
796 s->spx_band_struct,
sizeof(
s->spx_band_struct));
803 int fbw_channels =
s->fbw_channels;
806 for (ch = 1; ch <= fbw_channels; ch++) {
807 if (
s->channel_uses_spx[ch]) {
808 if (
s->first_spx_coords[ch] ||
get_bits1(bc)) {
810 int bin, master_spx_coord;
812 s->first_spx_coords[ch] = 0;
814 master_spx_coord =
get_bits(bc, 2) * 3;
816 bin =
s->spx_src_start_freq;
817 for (bnd = 0; bnd <
s->num_spx_bands; bnd++) {
818 int bandsize =
s->spx_band_sizes[bnd];
819 int spx_coord_exp, spx_coord_mant;
823 int64_t accu = ((bin << 23) + (bandsize << 22))
825 nratio = (int)(accu >> 32);
826 nratio -= spx_blend << 18;
831 }
else if (nratio > 0x7fffff) {
836 accu = (
int64_t)nblend * 1859775393;
837 nblend = (int)((accu + (1<<29)) >> 30);
844 nratio = ((
float)((bin + (bandsize >> 1))) /
s->spx_dst_end_freq) - spx_blend;
845 nratio =
av_clipf(nratio, 0.0f, 1.0f);
846 nblend =
sqrtf(3.0f * nratio);
848 sblend =
sqrtf(1.0f - nratio);
855 if (spx_coord_exp == 15) spx_coord_mant <<= 1;
856 else spx_coord_mant += 4;
857 spx_coord_mant <<= (25 - spx_coord_exp - master_spx_coord);
861 accu = (
int64_t)nblend * spx_coord_mant;
862 s->spx_noise_blend[ch][bnd] = (int)((accu + (1<<22)) >> 23);
863 accu = (
int64_t)sblend * spx_coord_mant;
864 s->spx_signal_blend[ch][bnd] = (int)((accu + (1<<22)) >> 23);
866 spx_coord = spx_coord_mant * (1.0f / (1 << 23));
867 s->spx_noise_blend [ch][bnd] = nblend * spx_coord;
868 s->spx_signal_blend[ch][bnd] = sblend * spx_coord;
873 s->first_spx_coords[ch] = 1;
879 uint8_t *bit_alloc_stages)
882 int fbw_channels =
s->fbw_channels;
883 int channel_mode =
s->channel_mode;
889 if (
s->cpl_in_use[
blk]) {
891 int cpl_start_subband, cpl_end_subband;
907 s->channel_in_cpl[1] = 1;
908 s->channel_in_cpl[2] = 1;
910 for (ch = 1; ch <= fbw_channels; ch++)
919 cpl_start_subband =
get_bits(bc, 4);
920 cpl_end_subband =
s->spx_in_use ? (
s->spx_src_start_freq - 37) / 12 :
922 if (cpl_start_subband >= cpl_end_subband) {
924 cpl_start_subband, cpl_end_subband);
927 s->start_freq[
CPL_CH] = cpl_start_subband * 12 + 37;
928 s->end_freq[
CPL_CH] = cpl_end_subband * 12 + 37;
933 &
s->num_cpl_bands,
s->cpl_band_sizes,
934 s->cpl_band_struct,
sizeof(
s->cpl_band_struct));
937 for (ch = 1; ch <= fbw_channels; ch++) {
938 s->channel_in_cpl[ch] = 0;
939 s->first_cpl_coords[ch] = 1;
941 s->first_cpl_leak =
s->eac3;
942 s->phase_flags_in_use = 0;
951 int fbw_channels =
s->fbw_channels;
953 int cpl_coords_exist = 0;
955 for (ch = 1; ch <= fbw_channels; ch++) {
956 if (
s->channel_in_cpl[ch]) {
957 if ((
s->eac3 &&
s->first_cpl_coords[ch]) ||
get_bits1(bc)) {
958 int master_cpl_coord, cpl_coord_exp, cpl_coord_mant;
959 s->first_cpl_coords[ch] = 0;
960 cpl_coords_exist = 1;
961 master_cpl_coord = 3 *
get_bits(bc, 2);
962 for (bnd = 0; bnd <
s->num_cpl_bands; bnd++) {
965 if (cpl_coord_exp == 15)
966 s->cpl_coords[ch][bnd] = cpl_coord_mant << 22;
968 s->cpl_coords[ch][bnd] = (cpl_coord_mant + 16) << 21;
969 s->cpl_coords[ch][bnd] >>= (cpl_coord_exp + master_cpl_coord);
973 "be present in block 0\n");
978 s->first_cpl_coords[ch] = 1;
983 for (bnd = 0; bnd <
s->num_cpl_bands; bnd++) {
984 s->phase_flags[bnd] =
s->phase_flags_in_use ?
get_bits1(bc) : 0;
996 int fbw_channels =
s->fbw_channels;
997 int channel_mode =
s->channel_mode;
998 int i, bnd, seg, ch, ret;
999 int different_transforms;
1006 different_transforms = 0;
1007 if (
s->block_switch_syntax) {
1008 for (ch = 1; ch <= fbw_channels; ch++) {
1010 if (ch > 1 &&
s->block_switch[ch] !=
s->block_switch[1])
1011 different_transforms = 1;
1016 if (
s->dither_flag_syntax) {
1017 for (ch = 1; ch <= fbw_channels; ch++) {
1023 i = !
s->channel_mode;
1030 if (range_bits <= 127 || s->drc_scale <= 1.0)
1034 }
else if (
blk == 0) {
1042 if (
s->spx_in_use) {
1047 if (!
s->eac3 || !
s->spx_in_use) {
1049 for (ch = 1; ch <= fbw_channels; ch++) {
1050 s->channel_uses_spx[ch] = 0;
1051 s->first_spx_coords[ch] = 1;
1063 }
else if (!
s->eac3) {
1066 "be present in block 0\n");
1069 s->cpl_in_use[
blk] =
s->cpl_in_use[
blk-1];
1072 cpl_in_use =
s->cpl_in_use[
blk];
1083 s->num_rematrixing_bands = 4;
1084 if (cpl_in_use &&
s->start_freq[
CPL_CH] <= 61) {
1085 s->num_rematrixing_bands -= 1 + (
s->start_freq[
CPL_CH] == 37);
1086 }
else if (
s->spx_in_use &&
s->spx_src_start_freq <= 61) {
1087 s->num_rematrixing_bands--;
1089 for (bnd = 0; bnd <
s->num_rematrixing_bands; bnd++)
1093 "new rematrixing strategy not present in block 0\n");
1094 s->num_rematrixing_bands = 0;
1099 for (ch = !cpl_in_use; ch <=
s->channels; ch++) {
1101 s->exp_strategy[
blk][ch] =
get_bits(gbc, 2 - (ch ==
s->lfe_ch));
1103 bit_alloc_stages[ch] = 3;
1107 for (ch = 1; ch <= fbw_channels; ch++) {
1108 s->start_freq[ch] = 0;
1111 int prev =
s->end_freq[ch];
1112 if (
s->channel_in_cpl[ch])
1113 s->end_freq[ch] =
s->start_freq[
CPL_CH];
1114 else if (
s->channel_uses_spx[ch])
1115 s->end_freq[ch] =
s->spx_src_start_freq;
1117 int bandwidth_code =
get_bits(gbc, 6);
1118 if (bandwidth_code > 60) {
1122 s->end_freq[ch] = bandwidth_code * 3 + 73;
1124 group_size = 3 << (
s->exp_strategy[
blk][ch] - 1);
1125 s->num_exp_groups[ch] = (
s->end_freq[ch] + group_size-4) / group_size;
1126 if (
blk > 0 &&
s->end_freq[ch] != prev)
1136 for (ch = !cpl_in_use; ch <=
s->channels; ch++) {
1138 s->dexps[ch][0] =
get_bits(gbc, 4) << !ch;
1140 s->num_exp_groups[ch],
s->dexps[ch][0],
1141 &
s->dexps[ch][
s->start_freq[ch]+!!ch])) {
1144 if (ch !=
CPL_CH && ch !=
s->lfe_ch)
1150 if (
s->bit_allocation_syntax) {
1157 for (ch = !cpl_in_use; ch <=
s->channels; ch++)
1158 bit_alloc_stages[ch] =
FFMAX(bit_alloc_stages[ch], 2);
1161 "be present in block 0\n");
1167 if (!
s->eac3 || !
blk) {
1168 if (
s->snr_offset_strategy &&
get_bits1(gbc)) {
1171 csnr = (
get_bits(gbc, 6) - 15) << 4;
1172 for (
i = ch = !cpl_in_use; ch <=
s->channels; ch++) {
1174 if (ch ==
i ||
s->snr_offset_strategy == 2)
1175 snr = (csnr +
get_bits(gbc, 4)) << 2;
1177 if (
blk &&
s->snr_offset[ch] != snr) {
1178 bit_alloc_stages[ch] =
FFMAX(bit_alloc_stages[ch], 1);
1180 s->snr_offset[ch] = snr;
1184 int prev =
s->fast_gain[ch];
1187 if (
blk && prev !=
s->fast_gain[ch])
1188 bit_alloc_stages[ch] =
FFMAX(bit_alloc_stages[ch], 2);
1191 }
else if (!
s->eac3 && !
blk) {
1199 for (ch = !cpl_in_use; ch <=
s->channels; ch++) {
1200 int prev =
s->fast_gain[ch];
1203 if (
blk && prev !=
s->fast_gain[ch])
1204 bit_alloc_stages[ch] =
FFMAX(bit_alloc_stages[ch], 2);
1206 }
else if (
s->eac3 && !
blk) {
1207 for (ch = !cpl_in_use; ch <=
s->channels; ch++)
1223 if (
blk && (fl !=
s->bit_alloc_params.cpl_fast_leak ||
1224 sl !=
s->bit_alloc_params.cpl_slow_leak)) {
1227 s->bit_alloc_params.cpl_fast_leak = fl;
1228 s->bit_alloc_params.cpl_slow_leak = sl;
1229 }
else if (!
s->eac3 && !
blk) {
1231 "be present in block 0\n");
1234 s->first_cpl_leak = 0;
1240 for (ch = !cpl_in_use; ch <= fbw_channels; ch++) {
1246 bit_alloc_stages[ch] =
FFMAX(bit_alloc_stages[ch], 2);
1249 for (ch = !cpl_in_use; ch <= fbw_channels; ch++) {
1251 s->dba_nsegs[ch] =
get_bits(gbc, 3) + 1;
1252 for (seg = 0; seg <
s->dba_nsegs[ch]; seg++) {
1253 s->dba_offsets[ch][seg] =
get_bits(gbc, 5);
1254 s->dba_lengths[ch][seg] =
get_bits(gbc, 4);
1255 s->dba_values[ch][seg] =
get_bits(gbc, 3);
1258 bit_alloc_stages[ch] =
FFMAX(bit_alloc_stages[ch], 2);
1261 }
else if (
blk == 0) {
1262 for (ch = 0; ch <=
s->channels; ch++) {
1268 for (ch = !cpl_in_use; ch <=
s->channels; ch++) {
1269 if (bit_alloc_stages[ch] > 2) {
1272 s->start_freq[ch],
s->end_freq[ch],
1273 s->psd[ch],
s->band_psd[ch]);
1275 if (bit_alloc_stages[ch] > 1) {
1279 s->start_freq[ch],
s->end_freq[ch],
1280 s->fast_gain[ch], (ch ==
s->lfe_ch),
1281 s->dba_mode[ch],
s->dba_nsegs[ch],
1282 s->dba_offsets[ch],
s->dba_lengths[ch],
1283 s->dba_values[ch],
s->mask[ch])) {
1288 if (bit_alloc_stages[ch] > 0) {
1290 const uint8_t *
bap_tab =
s->channel_uses_aht[ch] ?
1292 s->ac3dsp.bit_alloc_calc_bap(
s->mask[ch],
s->psd[ch],
1293 s->start_freq[ch],
s->end_freq[ch],
1295 s->bit_alloc_params.floor,
1317 for (ch = 1; ch <=
s->channels; ch++) {
1318 int audio_channel = 0;
1321 audio_channel = 2-ch;
1322 if (
s->heavy_compression &&
s->compression_exists[audio_channel])
1323 gain =
s->heavy_dynamic_range[audio_channel];
1325 gain =
s->dynamic_range[audio_channel];
1332 scale_coefs(
s->transform_coeffs[ch],
s->fixed_coeffs[ch], gain, 256);
1334 if (
s->target_level != 0)
1335 gain = gain *
s->level_gain[audio_channel];
1336 gain *= 1.0 / 4194304.0f;
1337 s->fmt_conv.int32_to_float_fmul_scalar(
s->transform_coeffs[ch],
1338 s->fixed_coeffs[ch], gain, 256);
1343 if (CONFIG_EAC3_DECODER &&
s->spx_in_use) {
1350 downmix_output =
s->channels !=
s->out_channels &&
1351 !((
s->output_mode & AC3_OUTPUT_LFEON) &&
1352 s->fbw_channels ==
s->out_channels);
1353 if (different_transforms) {
1363 if (downmix_output) {
1366 s->out_channels,
s->fbw_channels, 256);
1369 s->out_channels,
s->fbw_channels, 256);
1373 if (downmix_output) {
1375 s->out_channels,
s->fbw_channels, 256);
1378 if (downmix_output && !
s->downmixed) {
1381 s->out_channels,
s->fbw_channels, 128);
1394 int *got_frame_ptr,
AVPacket *avpkt)
1396 const uint8_t *buf = avpkt->
data;
1397 int buf_size, full_buf_size = avpkt->
size;
1402 int previous_coeff_bits;
1404 int skip = 0, got_independent_frame = 0;
1411 s->superframe_size = 0;
1413 buf_size = full_buf_size;
1422 if (buf_size >= 2 &&
AV_RB16(buf) == 0x770B) {
1424 int cnt =
FFMIN(buf_size, AC3_FRAME_BUFFER_SIZE) >> 1;
1425 s->bdsp.bswap16_buf((uint16_t *)
s->input_buffer,
1426 (
const uint16_t *) buf, cnt);
1428 memcpy(
s->input_buffer, buf,
FFMIN(buf_size, AC3_FRAME_BUFFER_SIZE));
1433 if (
s->consistent_noise_generation)
1436 buf =
s->input_buffer;
1452 memset(
s->delay, 0,
sizeof(
s->delay));
1472 if (
s->substreamid) {
1474 "unsupported substream %d: skipping frame\n",
1493 if (
s->frame_size > buf_size) {
1499 s->frame_size - 2)) {
1511 return FFMIN(full_buf_size,
s->frame_size);
1515 if (!err || (
s->channels &&
s->out_channels !=
s->channels)) {
1516 s->out_channels =
s->channels;
1517 s->output_mode =
s->channel_mode;
1519 s->output_mode |= AC3_OUTPUT_LFEON;
1520 if (
s->channels > 1 &&
1522 s->out_channels = 1;
1524 }
else if (
s->channels > 2 &&
1526 s->out_channels = 2;
1534 switch (
s->preferred_downmix) {
1549 if (
s->channels !=
s->out_channels && !((
s->output_mode & AC3_OUTPUT_LFEON) &&
1550 s->fbw_channels ==
s->out_channels)) {
1556 }
else if (!
s->channels) {
1562 if (
s->output_mode & AC3_OUTPUT_LFEON)
1570 if (
s->bitstream_mode == 0x7 &&
s->channels > 1)
1577 output[ch] =
s->output[ch +
offset];
1578 s->outptr[ch] =
s->output[ch +
offset];
1580 for (ch = 0; ch <
s->channels; ch++) {
1581 if (ch < s->out_channels)
1590 for (ch = 0; ch <
s->out_channels; ch++)
1592 for (ch = 0; ch <
s->out_channels; ch++)
1594 for (ch = 0; ch <
s->out_channels; ch++) {
1601 for (ch = 0; ch <
s->out_channels; ch++)
1605 if (buf_size >
s->frame_size) {
1609 if (buf_size -
s->frame_size <= 16) {
1610 skip = buf_size -
s->frame_size;
1614 if ((ret =
init_get_bits8(&
s->gbc, buf +
s->frame_size, buf_size -
s->frame_size)) < 0)
1625 buf +=
s->frame_size;
1626 buf_size -=
s->frame_size;
1627 s->prev_output_mode =
s->output_mode;
1628 s->prev_bit_rate =
s->bit_rate;
1629 got_independent_frame = 1;
1630 goto dependent_frame;
1641 avctx->
bit_rate =
s->bit_rate +
s->prev_bit_rate;
1651 extended_channel_map[ch] = ch;
1656 uint64_t channel_layout;
1659 if (
s->prev_output_mode & AC3_OUTPUT_LFEON)
1662 channel_layout = ich_layout;
1663 for (ch = 0; ch < 16; ch++) {
1684 if (extend >= channel_map_size)
1691 for (
i = 0;
i < 64;
i++) {
1696 if (extend >= channel_map_size)
1715 int map = extended_channel_map[ch];
1718 s->output_buffer[
map],
1730 s->channel_mode == (
s->output_mode & ~AC3_OUTPUT_LFEON)) {
1736 s->channel_mode == (
s->output_mode & ~AC3_OUTPUT_LFEON)) {
1737 switch (
s->dolby_surround_ex_mode) {
1758 switch (
s->preferred_downmix) {
1776 if (
s->lfe_mix_level_exists)
1784 if (!
s->superframe_size)
1785 return FFMIN(full_buf_size,
s->frame_size +
skip);
1787 return FFMIN(full_buf_size,
s->superframe_size +
skip);
1804#define OFFSET(x) offsetof(AC3DecodeContext, x)
1805#define PAR (AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_AUDIO_PARAM)
int ff_ac3_bit_alloc_calc_mask(AC3BitAllocParameters *s, int16_t *band_psd, int start, int end, int fast_gain, int is_lfe, int dba_mode, int dba_nsegs, uint8_t *dba_offsets, uint8_t *dba_lengths, uint8_t *dba_values, int16_t *mask)
Calculate the masking curve.
void ff_ac3_bit_alloc_calc_psd(int8_t *exp, int start, int end, int16_t *psd, int16_t *band_psd)
Calculate the log power-spectral density of the input signal.
#define AC3_DYNAMIC_RANGE(x)
#define AC3_DYNAMIC_RANGE1
#define AC3_HEAVY_RANGE(x)
const uint16_t ff_ac3_channel_layout_tab[8]
Map audio coding mode (acmod) to channel layout mask.
int ff_ac3_find_syncword(const uint8_t *buf, int buf_size)
@ AC3_PARSE_ERROR_FRAME_TYPE
@ AC3_PARSE_ERROR_SAMPLE_RATE
@ AC3_PARSE_ERROR_CHANNEL_MAP
@ AC3_PARSE_ERROR_FRAME_SIZE
int ff_ac3_parse_header(GetBitContext *gbc, AC3HeaderInfo *hdr)
Parse AC-3 frame header.
uint8_t ff_ac3_ungroup_3_in_7_bits_tab[128][3]
table for ungrouping 3 values in 7 bits.
const uint8_t ff_ac3_quantization_tab[16]
Quantization table: levels for symmetric.
const uint8_t ff_eac3_default_spx_band_struct[17]
Table E2.15 Default Spectral Extension Banding Structure.
int ff_ac3_bap1_mantissas[32][3]
tables for ungrouping mantissas
const uint8_t ff_ac3_default_coeffs[8][5][2]
Table for default stereo downmixing coefficients reference: Section 7.8.2 Downmixing Into Two Channel...
int ff_ac3_bap4_mantissas[128][2]
const int ff_ac3_bap3_mantissas[7+1]
Ungrouped mantissa tables; the extra entry is padding to avoid range checks.
av_cold void ff_ac3_init_static(void)
const float ff_eac3_gain_levels_lfe[32]
Adjustments in dB gain (LFE, +10 to -21 dB)
const uint8_t ff_eac3_hebap_tab[64]
const int ff_ac3_bap5_mantissas[15+1]
Table 7.23.
int ff_ac3_bap2_mantissas[128][3]
#define AC3_FIXED_EXPONENT_MAX
#define AC3_FIXED_COEFF_BITS
static void ac3_downmix_c_fixed16(int16_t **samples, int16_t **matrix, int out_ch, int in_ch, int len)
Downmix samples from original signal to stereo or mono (this is for 16-bit samples and fixed point de...
static void scale_coefs_q2(int32_t *dst, const int32_t *src, int dynrng, int len)
static const int end_freq_inv_tab[8]
static av_always_inline int fixed_coeff_bits(const AC3DecodeContext *s)
static void scale_coefs(int32_t *dst, const int32_t *src, int dynrng, int len)
@ AC3_DHEADPHONMOD_NOTINDICATED
#define CPL_CH
coupling channel index
#define EAC3_MAX_CHANNELS
maximum number of channels in EAC3
#define AC3_MAX_CHANNELS
maximum number of channels, including coupling channel
@ AC3_DSUREXMOD_NOTINDICATED
@ EAC3_FRAME_TYPE_DEPENDENT
@ EAC3_FRAME_TYPE_INDEPENDENT
@ AC3_DMIXMOD_NOTINDICATED
const uint8_t ff_ac3_rematrix_band_tab[5]
Table of bin locations for rematrixing bands reference: Section 7.5.2 Rematrixing : Frequency Band De...
const uint8_t ff_ac3_channels_tab[8]
Map audio coding mode (acmod) to number of full-bandwidth channels.
const uint8_t ff_ac3_dec_channel_map[8][2][6]
Table to remap channels from AC-3 order to SMPTE order.
const uint8_t ff_ac3_fast_decay_tab[4]
const uint16_t ff_ac3_fast_gain_tab[8]
const uint16_t ff_ac3_slow_gain_tab[4]
const uint8_t ff_eac3_default_cpl_band_struct[18]
Table E2.16 Default Coupling Banding Structure.
const uint8_t ff_ac3_slow_decay_tab[4]
const float ff_ac3_gain_levels[9]
Adjustments in dB gain.
const uint64_t ff_eac3_custom_channel_map_locations[16][2]
const int16_t ff_ac3_floor_tab[8]
const uint16_t ff_ac3_db_per_bit_tab[4]
const uint8_t ff_ac3_bap_tab[64]
static const uint8_t channel_map[8][8]
#define av_assert0(cond)
assert() equivalent, that is always enabled.
static void BS_FUNC skip(BSCTX *bc, unsigned int n)
Skip n bits in the buffer.
#define i(width, name, range_min, range_max)
Public libavutil channel layout APIs header.
Public header for CRC hash function implementation.
static __device__ float sqrtf(float a)
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
int ff_side_data_update_matrix_encoding(AVFrame *frame, enum AVMatrixEncoding matrix_encoding)
Add or update AV_FRAME_DATA_MATRIXENCODING side data.
#define AV_EF_CRCCHECK
Verify checksums embedded in the bitstream (could be of either encoded or decoded data,...
#define AV_PROFILE_UNKNOWN
#define AV_EF_EXPLODE
abort decoding on minor error detection
#define AV_PROFILE_EAC3_DDP_ATMOS
#define AV_EF_CAREFUL
consider things that violate the spec, are fast to calculate and have not been seen in the wild as er...
@ AV_AUDIO_SERVICE_TYPE_KARAOKE
static const uint8_t bap_tab[64]
static void ff_eac3_decode_transform_coeffs_aht_ch(AC3DecodeContext *s, int ch)
static int ff_eac3_parse_header(AC3DecodeContext *s, const AC3HeaderInfo *hdr)
static void ff_eac3_apply_spectral_extension(AC3DecodeContext *s)
static const uint8_t bits[8]
static av_always_inline int fixed_sqrt(int x, int bits)
Calculate the square root.
#define FF_DECODE_ERROR_INVALID_BITSTREAM
#define AV_NUM_DATA_POINTERS
static int get_sbits(GetBitContext *s, int n)
static void skip_bits_long(GetBitContext *s, int n)
Skips the specified number of bits.
static unsigned int get_bits1(GetBitContext *s)
static void skip_bits(GetBitContext *s, int n)
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
@ AV_MATRIX_ENCODING_NONE
@ AV_MATRIX_ENCODING_DOLBY
@ AV_MATRIX_ENCODING_DPLIIZ
@ AV_MATRIX_ENCODING_DOLBYEX
@ AV_MATRIX_ENCODING_DOLBYHEADPHONE
#define AV_CH_LOW_FREQUENCY
AVDownmixInfo * av_downmix_info_update_side_data(AVFrame *frame)
Get a frame's AV_FRAME_DATA_DOWNMIX_INFO side data for editing.
@ AV_DOWNMIX_TYPE_UNKNOWN
Not indicated.
@ AV_DOWNMIX_TYPE_LTRT
Lt/Rt 2-channel downmix, Dolby Surround compatible.
@ AV_DOWNMIX_TYPE_LORO
Lo/Ro 2-channel downmix (Stereo).
@ AV_DOWNMIX_TYPE_DPLII
Lt/Rt 2-channel downmix, Dolby Pro Logic II compatible.
#define AV_CODEC_FLAG_BITEXACT
Use only bitexact stuff (except (I)DCT).
int av_channel_layout_index_from_channel(const AVChannelLayout *channel_layout, enum AVChannel channel)
Get the index of a given channel in a channel layout.
#define AV_CHANNEL_LAYOUT_STEREO
int av_channel_layout_compare(const AVChannelLayout *chl, const AVChannelLayout *chl1)
Check whether two channel layouts are semantically the same, i.e.
#define AV_CHANNEL_LAYOUT_MONO
void av_channel_layout_uninit(AVChannelLayout *channel_layout)
Free any allocated data in the channel layout and reset the channel count to 0.
int av_channel_layout_from_mask(AVChannelLayout *channel_layout, uint64_t mask)
Initialize a native channel layout from a bitmask indicating which channels are present.
const AVCRC * av_crc_get_table(AVCRCId crc_id)
Get an initialized standard CRC table.
uint32_t av_crc(const AVCRC *ctx, uint32_t crc, const uint8_t *buffer, size_t length)
Calculate the CRC of a block.
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
#define AV_LOG_WARNING
Something somehow does not look correct.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
@ AV_SAMPLE_FMT_FLTP
float, planar
@ AV_SAMPLE_FMT_S16P
signed 16 bits, planar
const VDPAUPixFmtMap * map
static void scale(int *out, const int *in, const int w, const int h, const int shift)
av_cold void ff_kbd_window_init(float *window, float alpha, int n)
Generate a Kaiser-Bessel Derived Window.
av_cold void av_lfg_init(AVLFG *c, unsigned int seed)
int av_lfg_init_from_data(AVLFG *c, const uint8_t *data, unsigned int length)
Seed the state of the ALFG using binary data.
static unsigned int av_lfg_get(AVLFG *c)
Get the next random unsigned 32-bit number using an ALFG.
float ff_ac3_heavy_dynamic_range_tab[256]
static int coupling_coordinates(AC3DecodeContext *s, int blk)
static void remove_dithering(AC3DecodeContext *s)
Remove random dithering from coupling range coefficients with zero-bit mantissas for coupled channels...
static int decode_audio_block(AC3DecodeContext *s, int blk, int offset)
Decode a single audio block from the AC-3 bitstream.
static float dynamic_range_tab[256]
dynamic range table.
static int coupling_strategy(AC3DecodeContext *s, int blk, uint8_t *bit_alloc_stages)
static int set_downmix_coeffs(AC3DecodeContext *s)
Set stereo downmixing coefficients based on frame header info.
static void decode_transform_coeffs_ch(AC3DecodeContext *s, int blk, int ch, mant_groups *m)
static av_cold void ac3_decode_flush(AVCodecContext *avctx)
static av_cold int ac3_decode_end(AVCodecContext *avctx)
Uninitialize the AC-3 decoder.
static void ac3_upmix_delay(AC3DecodeContext *s)
Upmix delay samples from stereo to original channel layout.
static av_cold void ac3_float_tables_init(void)
static void spx_coordinates(AC3DecodeContext *s)
static av_always_inline int dequantize_coeff(int mantissa, int exponent, int coeff_bits)
static void decode_transform_coeffs(AC3DecodeContext *s, int blk)
Decode the transform coefficients.
static int decode_exponents(AC3DecodeContext *s, GetBitContext *gbc, int exp_strategy, int ngrps, uint8_t absexp, int8_t *dexps)
Decode the grouped exponents according to exponent strategy.
static av_always_inline int dequantize_dexp24_dither(int mantissa)
static void calc_transform_coeffs_cpl(AC3DecodeContext *s)
Generate transform coefficients for each coupled channel in the coupling range using the coupling coe...
static void decode_band_structure(GetBitContext *gbc, int blk, int eac3, int ecpl, int start_subband, int end_subband, const uint8_t *default_band_struct, int *num_bands, uint8_t *band_sizes, uint8_t *band_struct, int band_struct_size)
Decode band structure for coupling, spectral extension, or enhanced coupling.
static int parse_frame_header(AC3DecodeContext *s)
Common function to parse AC-3 or E-AC-3 frame header.
static int ac3_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame_ptr, AVPacket *avpkt)
Decode a single AC-3 frame.
static void do_rematrixing(AC3DecodeContext *s)
Stereo rematrixing.
static void ac3_downmix(AVCodecContext *avctx)
static int spx_strategy(AC3DecodeContext *s, int blk)
static void ac3_decode_transform_coeffs_ch(AC3DecodeContext *s, int ch_index, mant_groups *m)
Decode the transform coefficients for a particular channel reference: Section 7.3 Quantization and De...
static void do_imdct(AC3DecodeContext *s, int channels, int offset)
Inverse MDCT Transform.
static av_cold int ac3_decode_init(AVCodecContext *avctx)
AVCodec initialization.
void ff_ac3dsp_downmix(AC3DSPContext *c, float **samples, float **matrix, int out_ch, int in_ch, int len)
av_cold void ff_ac3dsp_init(AC3DSPContext *c)
av_cold void ff_bswapdsp_init(BswapDSPContext *c)
av_cold void ff_fmt_convert_init(FmtConvertContext *c)
Macro definitions for various function/variable attributes.
AVFixedDSPContext * avpriv_alloc_fixed_dsp(int bit_exact)
Allocate and initialize a fixed DSP context.
av_cold AVFloatDSPContext * avpriv_float_dsp_alloc(int bit_exact)
Allocate a float DSP context.
static int ff_thread_once(char *control, void(*routine)(void))
static av_always_inline av_const double round(double x)
static const uint16_t mask[17]
Memory handling functions.
An AVChannelLayout holds information about the channel layout of audio data.
int nb_channels
Number of channels in this layout.
main external API structure.
AVChannelLayout ch_layout
Audio channel layout.
enum AVSampleFormat sample_fmt
audio sample format
enum AVAudioServiceType audio_service_type
Type of service that the audio stream conveys.
int64_t bit_rate
the average bitrate
int sample_rate
samples per second
int flags
AV_CODEC_FLAG_*.
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
This structure describes optional metadata relevant to a downmix procedure.
double lfe_mix_level
Absolute scale factor representing the level at which the LFE data is mixed into L/R channels during ...
double surround_mix_level_ltrt
Absolute scale factor representing the nominal level of the surround channels during an Lt/Rt compati...
double surround_mix_level
Absolute scale factor representing the nominal level of the surround channels during a regular downmi...
double center_mix_level
Absolute scale factor representing the nominal level of the center channel during a regular downmix.
enum AVDownmixType preferred_downmix_type
Type of downmix preferred by the mastering engineer.
double center_mix_level_ltrt
Absolute scale factor representing the nominal level of the center channel during an Lt/Rt compatible...
This structure describes decoded (raw) audio or video data.
This structure stores compressed data.
Grouped mantissas for 3-level 5-level and 11-level quantization.
#define av_malloc_array(a, b)
#define avpriv_request_sample(...)
av_cold void av_tx_uninit(AVTXContext **ctx)
Frees a context and sets *ctx to NULL, does nothing when *ctx == NULL.
av_cold int av_tx_init(AVTXContext **ctx, av_tx_fn *tx, enum AVTXType type, int inv, int len, const void *scale, uint64_t flags)
Initialize a transform context with the given configuration (i)MDCTs with an odd length are currently...
static const uint16_t dither[8][8]