mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-18 12:56:56 +00:00
svq1dec: use log level that have more common sense
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
7b9fc769e4
commit
dd5aff001e
@ -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,
|
|||||||
result = svq1_decode_block_intra(&s->gb, ¤t[x],
|
result = svq1_decode_block_intra(&s->gb, ¤t[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;
|
||||||
|
Loading…
Reference in New Issue
Block a user