Browse Source

Be less verbose about dca channel number changes.

Only inform the user that the number of channels changed if it was set
before.
tags/n0.9
Carl Eugen Hoyos 14 years ago
parent
commit
ad2d597292
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/dca.c

+ 1
- 1
libavcodec/dca.c 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;
}


Loading…
Cancel
Save