Browse Source

nellymoserdec: Increase the log level of messages when failing to decode data

Originally committed as revision 23606 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Martin Storsjö 15 years ago
parent
commit
caea217d37
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/nellymoserdec.c

+ 1
- 1
libavcodec/nellymoserdec.c View File

@@ -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;


Loading…
Cancel
Save