summaryrefslogtreecommitdiff
path: root/libavcodec/dpcm.c
diff options
context:
space:
mode:
authorPiotr Bandurski <ami_stuff@o2.pl>2012-11-05 17:44:24 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-11-05 17:44:24 +0100
commit8d88920578a2fae5a852bf971fda3e3c5cb59ae4 (patch)
tree3000fd3119ab8d2187ed289d39b2b02918c5c0ee /libavcodec/dpcm.c
parent461797f6aac52cf733fbeb41c532f4bdfb769b84 (diff)
dpcm: use AV_LOG_ERROR for error message.
Diffstat (limited to 'libavcodec/dpcm.c')
-rw-r--r--libavcodec/dpcm.c2
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);
}