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:
Haihao Xiang 2023-11-27 14:01:51 +08:00
parent e233f3e75f
commit fc73b372cd
1 changed files with 1 additions and 1 deletions

View File

@ -917,7 +917,7 @@ static int qsv_process_data(AVCodecContext *avctx, QSVContext *q,
ret = qsv_decode_header(avctx, q, pkt, pix_fmt, &param);
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;