mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
svq1dec: use AV_LOG_ERROR for error message
Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
a8cedbebf1
commit
520cf05338
@ -706,7 +706,7 @@ static int svq1_decode_frame(AVCodecContext *avctx,
|
|||||||
result = svq1_decode_block_intra (&s->gb, ¤t[x], linesize);
|
result = svq1_decode_block_intra (&s->gb, ¤t[x], linesize);
|
||||||
if (result != 0)
|
if (result != 0)
|
||||||
{
|
{
|
||||||
av_log(s->avctx, AV_LOG_INFO, "Error in svq1_decode_block %i (keyframe)\n",result);
|
av_log(s->avctx, AV_LOG_ERROR, "Error in svq1_decode_block %i (keyframe)\n",result);
|
||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user