mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-11 17:55:21 +00:00
do not set channels before checking request_channels
Originally committed as revision 11414 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
296cbe5728
commit
6cd325c106
@ -60,13 +60,14 @@ int ff_aac_ac3_parse(AVCodecParserContext *s1,
|
|||||||
s->frame_size = len;
|
s->frame_size = len;
|
||||||
/* update codec info */
|
/* update codec info */
|
||||||
avctx->sample_rate = sample_rate;
|
avctx->sample_rate = sample_rate;
|
||||||
avctx->channels = channels;
|
|
||||||
/* allow downmixing to mono or stereo for AC3 */
|
/* allow downmixing to mono or stereo for AC3 */
|
||||||
if(avctx->request_channels > 0 &&
|
if(avctx->request_channels > 0 &&
|
||||||
avctx->request_channels < channels &&
|
avctx->request_channels < channels &&
|
||||||
avctx->request_channels <= 2 &&
|
avctx->request_channels <= 2 &&
|
||||||
avctx->codec_id == CODEC_ID_AC3) {
|
avctx->codec_id == CODEC_ID_AC3) {
|
||||||
avctx->channels = avctx->request_channels;
|
avctx->channels = avctx->request_channels;
|
||||||
|
} else {
|
||||||
|
avctx->channels = channels;
|
||||||
}
|
}
|
||||||
avctx->bit_rate = bit_rate;
|
avctx->bit_rate = bit_rate;
|
||||||
avctx->frame_size = samples;
|
avctx->frame_size = samples;
|
||||||
|
Loading…
Reference in New Issue
Block a user