Be less verbose about dca channel number changes.

Only inform the user that the number of channels changed if it was set
before.
This commit is contained in:
Carl Eugen Hoyos 2011-10-28 18:21:40 +02:00
parent 81cd96caee
commit ad2d597292

View File

@ -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;
}