This is an automated email from the git hooks/post-receive script.
Git pushed a commit to branch master
in repository ffmpeg.
The following commit(s) were added to refs/heads/master by this push:
new 344a9ce2da avcodec/qsvenc: add unsupported codec level log
344a9ce2da is described below
commit 344a9ce2dad0f3dfb86938ba52da6b9e3649f4f6
Author: Anton Kesy <[email protected]>
AuthorDate: Mon Jan 5 02:48:24 2026 +0100
Commit: michaelni <[email protected]>
CommitDate: Tue Jun 2 20:51:32 2026 +0000
avcodec/qsvenc: add unsupported codec level log
Adds missing log of struct mfxInfoMFX member: codec level.
Signed-off-by: Anton Kesy <[email protected]>
---
libavcodec/qsvenc.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/libavcodec/qsvenc.c b/libavcodec/qsvenc.c
index 0e957d1b91..c79db089a0 100644
--- a/libavcodec/qsvenc.c
+++ b/libavcodec/qsvenc.c
@@ -683,6 +683,8 @@ static int check_enc_param(AVCodecContext *avctx,
QSVEncContext *q)
av_log(avctx, AV_LOG_ERROR, "Selected ratecontrol mode is
unsupported\n");
if (UNMATCH(LowPower))
av_log(avctx, AV_LOG_ERROR, "Low power mode is unsupported\n");
+ if (UNMATCH(CodecLevel))
+ av_log(avctx, AV_LOG_ERROR, "Current codec level is
unsupported\n");
if (UNMATCH(FrameInfo.FrameRateExtN) ||
UNMATCH(FrameInfo.FrameRateExtD))
av_log(avctx, AV_LOG_ERROR, "Current frame rate is
unsupported\n");
if (UNMATCH(FrameInfo.PicStruct))
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]