[FFmpeg-cvslog] r23606 - trunk/libavcodec/nellymoserdec.c
mstorsjo
subversion
Mon Jun 14 16:09:00 CEST 2010
Author: mstorsjo
Date: Mon Jun 14 16:09:00 2010
New Revision: 23606
Log:
nellymoserdec: Increase the log level of messages when failing to decode data
Modified:
trunk/libavcodec/nellymoserdec.c
Modified: trunk/libavcodec/nellymoserdec.c
==============================================================================
--- trunk/libavcodec/nellymoserdec.c Mon Jun 14 16:07:22 2010 (r23605)
+++ trunk/libavcodec/nellymoserdec.c Mon Jun 14 16:09:00 2010 (r23606)
@@ -167,7 +167,7 @@ static int decode_tag(AVCodecContext * a
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;
More information about the ffmpeg-cvslog
mailing list