From caea217d370143674957ba4909f14901c5c33175 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20Storsj=C3=B6?= Date: Mon, 14 Jun 2010 14:09:00 +0000 Subject: [PATCH] nellymoserdec: Increase the log level of messages when failing to decode data Originally committed as revision 23606 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/nellymoserdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/nellymoserdec.c b/libavcodec/nellymoserdec.c index 7b973c0..8976467 100644 --- a/libavcodec/nellymoserdec.c +++ b/libavcodec/nellymoserdec.c @@ -167,7 +167,7 @@ static int decode_tag(AVCodecContext * avctx, return buf_size; if (buf_size % 64) { - av_log(avctx, AV_LOG_DEBUG, "Tag size %d.\n", buf_size); + av_log(avctx, AV_LOG_ERROR, "Tag size %d.\n", buf_size); return buf_size; } blocks = buf_size / 64; -- 2.7.4