1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-07-12 15:40:50 +02:00

dpcm: use AV_LOG_ERROR for error message.

This commit is contained in:
Piotr Bandurski 2012-11-05 17:44:24 +01:00 committed by Carl Eugen Hoyos
parent 461797f6aa
commit 8d88920578

View File

@ -118,7 +118,7 @@ static av_cold int dpcm_decode_init(AVCodecContext *avctx)
int i;
if (avctx->channels < 1 || avctx->channels > 2) {
av_log(avctx, AV_LOG_INFO, "invalid number of channels\n");
av_log(avctx, AV_LOG_ERROR, "invalid number of channels\n");
return AVERROR(EINVAL);
}