Commit dd5aff00 authored by Paul B Mahol's avatar Paul B Mahol

svq1dec: use log level that have more common sense

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 7b9fc769
...@@ -531,7 +531,7 @@ static int svq1_decode_frame_header(GetBitContext *bitbuf, MpegEncContext *s) ...@@ -531,7 +531,7 @@ static int svq1_decode_frame_header(GetBitContext *bitbuf, MpegEncContext *s)
svq1_parse_string(bitbuf, msg); svq1_parse_string(bitbuf, msg);
av_log(s->avctx, AV_LOG_ERROR, av_log(s->avctx, AV_LOG_INFO,
"embedded message: \"%s\"\n", (char *)msg); "embedded message: \"%s\"\n", (char *)msg);
} }
...@@ -665,7 +665,7 @@ static int svq1_decode_frame(AVCodecContext *avctx, void *data, ...@@ -665,7 +665,7 @@ static int svq1_decode_frame(AVCodecContext *avctx, void *data,
result = svq1_decode_block_intra(&s->gb, &current[x], result = svq1_decode_block_intra(&s->gb, &current[x],
linesize); linesize);
if (result) { if (result) {
av_log(s->avctx, AV_LOG_INFO, av_log(s->avctx, AV_LOG_ERROR,
"Error in svq1_decode_block %i (keyframe)\n", "Error in svq1_decode_block %i (keyframe)\n",
result); result);
goto err; goto err;
......
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