dcadec: simplify an expression

Signed-off-by: Diego Biurrun <diego@biurrun.de>
pull/46/merge
Tim Walker 11 years ago committed by Diego Biurrun
parent a553c6a347
commit 37a3cac78c
  1. 3
      libavcodec/dcadec.c

@ -1922,8 +1922,7 @@ static av_cold int dca_decode_init(AVCodecContext *avctx)
avctx->sample_fmt = AV_SAMPLE_FMT_FLTP;
/* allow downmixing to stereo */
if (avctx->channels > 0 && avctx->request_channels < avctx->channels &&
avctx->request_channels == 2) {
if (avctx->channels > 2 && avctx->request_channels == 2) {
avctx->channels = avctx->request_channels;
}

Loading…
Cancel
Save