Fix dca decoding for many samples after last commit.

Still be less verbose about channel count change from 0 channels.
This commit is contained in:
Carl Eugen Hoyos 2011-10-28 19:13:59 +02:00
parent ad2d597292
commit 246c8dac3e

View File

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