From 246c8dac3e12887ec90c6eae29bf26aee6dc6ac0 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Fri, 28 Oct 2011 19:13:59 +0200 Subject: [PATCH] Fix dca decoding for many samples after last commit. Still be less verbose about channel count change from 0 channels. --- libavcodec/dca.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libavcodec/dca.c b/libavcodec/dca.c index ddd2be9fb8..5cf5b2629a 100644 --- a/libavcodec/dca.c +++ b/libavcodec/dca.c @@ -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; }