mirror of https://git.ffmpeg.org/ffmpeg.git
check for request_channels in dca init function
Originally committed as revision 11423 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
ef7f2bb782
commit
cfec09e914
|
@ -1230,6 +1230,13 @@ static int dca_decode_init(AVCodecContext * avctx)
|
|||
pre_calc_cosmod(s);
|
||||
|
||||
dsputil_init(&s->dsp, avctx);
|
||||
|
||||
/* allow downmixing to stereo */
|
||||
if (avctx->channels > 0 && avctx->request_channels < avctx->channels &&
|
||||
avctx->request_channels == 2) {
|
||||
avctx->channels = avctx->request_channels;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue