mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
libavcodec/ac3dec: fix channel_layout
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
2e5780a53f
commit
2cbf27b08a
@ -1369,7 +1369,9 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data,
|
|||||||
s->output_mode = AC3_CHMODE_STEREO;
|
s->output_mode = AC3_CHMODE_STEREO;
|
||||||
}
|
}
|
||||||
avctx->channels = s->out_channels;
|
avctx->channels = s->out_channels;
|
||||||
avctx->channel_layout = avpriv_ac3_channel_layout_tab[s->output_mode];
|
avctx->channel_layout = avpriv_ac3_channel_layout_tab[s->output_mode & ~AC3_OUTPUT_LFEON];
|
||||||
|
if (s->output_mode & AC3_OUTPUT_LFEON)
|
||||||
|
avctx->channel_layout |= AV_CH_LOW_FREQUENCY;
|
||||||
|
|
||||||
s->loro_center_mix_level = gain_levels[s-> center_mix_level];
|
s->loro_center_mix_level = gain_levels[s-> center_mix_level];
|
||||||
s->loro_surround_mix_level = gain_levels[s->surround_mix_level];
|
s->loro_surround_mix_level = gain_levels[s->surround_mix_level];
|
||||||
|
Loading…
Reference in New Issue
Block a user