[FFmpeg-cvslog] lavc/qsvdec: reduce info message when more data is required
Haihao Xiang
git at videolan.org
Tue Dec 5 06:52:39 EET 2023
ffmpeg | branch: master | Haihao Xiang <haihao.xiang at intel.com> | Mon Nov 27 14:01:51 2023 +0800| [fc73b372cd43e52d3aa0aefc6d76fd340bf753f1] | committer: Haihao Xiang
lavc/qsvdec: reduce info message when more data is required
demote the info to AV_LOG_VERBOSE
Signed-off-by: Haihao Xiang <haihao.xiang at intel.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fc73b372cd43e52d3aa0aefc6d76fd340bf753f1
---
libavcodec/qsvdec.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/qsvdec.c b/libavcodec/qsvdec.c
index b501964089..559f63698a 100644
--- a/libavcodec/qsvdec.c
+++ b/libavcodec/qsvdec.c
@@ -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;
More information about the ffmpeg-cvslog
mailing list