1
0
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:
Piotr Bandurski 2012-03-08 23:27:17 +01:00 committed by Michael Niedermayer
parent a8cedbebf1
commit 520cf05338

View File

@ -706,7 +706,7 @@ static int svq1_decode_frame(AVCodecContext *avctx,
result = svq1_decode_block_intra (&s->gb, &current[x], linesize); result = svq1_decode_block_intra (&s->gb, &current[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;
} }
} }