mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
lavc/qsvdec: reduce info message when more data is required
demote the info to AV_LOG_VERBOSE Signed-off-by: Haihao Xiang <haihao.xiang@intel.com>
This commit is contained in:
parent
e233f3e75f
commit
fc73b372cd
@ -917,7 +917,7 @@ static int qsv_process_data(AVCodecContext *avctx, QSVContext *q,
|
||||
ret = qsv_decode_header(avctx, q, pkt, pix_fmt, ¶m);
|
||||
if (ret < 0) {
|
||||
if (ret == AVERROR(EAGAIN))
|
||||
av_log(avctx, AV_LOG_INFO, "More data is required to decode header\n");
|
||||
av_log(avctx, AV_LOG_VERBOSE, "More data is required to decode header\n");
|
||||
else
|
||||
av_log(avctx, AV_LOG_ERROR, "Error decoding header\n");
|
||||
goto reinit_fail;
|
||||
|
Loading…
Reference in New Issue
Block a user