Commit 7a221e4f authored by mstorsjo's avatar mstorsjo

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


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@23606 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e53c4590
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment