Be less verbose about dca channel number changes.

Only inform the user that the number of channels changed if it was set
before.
pull/2/head
Carl Eugen Hoyos 13 years ago
parent 81cd96caee
commit ad2d597292
  1. 2
      libavcodec/dca.c

@ -1815,7 +1815,7 @@ static int dca_decode_frame(AVCodecContext * avctx,
return -1;
}
if (avctx->channels != channels) {
if (avctx->channels && avctx->channels != channels) {
av_log(avctx, AV_LOG_INFO, "Number of channels changed in DCA decoder (%d -> %d)\n", avctx->channels, channels);
avctx->channels = channels;
}

Loading…
Cancel
Save