diff options
author | Martin Storsjö <martin@martin.st> | 2010-06-14 14:09:00 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-06-14 14:09:00 +0000 |
commit | caea217d370143674957ba4909f14901c5c33175 (patch) | |
tree | d2450e32ff0101f11d2a4e524a8780085003a462 /libavcodec | |
parent | 133cd270f8be2ac43c7145998efb79ced66812bd (diff) | |
download | ffmpeg-caea217d370143674957ba4909f14901c5c33175.tar.gz |
nellymoserdec: Increase the log level of messages when failing to decode data
Originally committed as revision 23606 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/nellymoserdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/nellymoserdec.c b/libavcodec/nellymoserdec.c index 7b973c02f6..8976467f61 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; |