diff options
author | Piotr Bandurski <ami_stuff@o2.pl> | 2012-11-05 17:44:24 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-11-05 17:44:24 +0100 |
commit | 8d88920578a2fae5a852bf971fda3e3c5cb59ae4 (patch) | |
tree | 3000fd3119ab8d2187ed289d39b2b02918c5c0ee /libavcodec | |
parent | 461797f6aac52cf733fbeb41c532f4bdfb769b84 (diff) | |
download | ffmpeg-8d88920578a2fae5a852bf971fda3e3c5cb59ae4.tar.gz |
dpcm: use AV_LOG_ERROR for error message.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dpcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dpcm.c b/libavcodec/dpcm.c index 1875a55efe..c9c45c61b8 100644 --- a/libavcodec/dpcm.c +++ b/libavcodec/dpcm.c @@ -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); } |