PR #21567 opened by James Almer (jamrial) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/21567 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/21567.patch
Fixes compilation after the latest SVT-AV1 changes. >From a5d4c398b411a00ac09d8fe3b66117222323844c Mon Sep 17 00:00:00 2001 From: Christopher Degawa <[email protected]> Date: Wed, 21 Jan 2026 00:12:59 -0600 Subject: [PATCH] avcodec/libsvtav1: rename aq_mode for v4.0.0 Signed-off-by: Christopher Degawa <[email protected]> Signed-off-by: James Almer <[email protected]> --- libavcodec/libsvtav1.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libavcodec/libsvtav1.c b/libavcodec/libsvtav1.c index 7047b72422..90c61b98a1 100644 --- a/libavcodec/libsvtav1.c +++ b/libavcodec/libsvtav1.c @@ -237,7 +237,11 @@ static int config_enc_params(EbSvtAv1EncConfiguration *param, } else if (svt_enc->qp > 0) { param->qp = svt_enc->qp; param->rate_control_mode = 0; +#if SVT_AV1_CHECK_VERSION(4, 0, 0) + param->aq_mode = 0; +#else param->enable_adaptive_quantization = 0; +#endif } desc = av_pix_fmt_desc_get(avctx->pix_fmt); -- 2.52.0 _______________________________________________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]
