From d256118b7e622c07167bbe044daba05c2326a6e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Tue, 25 Mar 2025 11:56:50 +0200 Subject: [PATCH] videotoolbox: Fix building with older SDKs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The kVTVideoDecoderReferenceMissingErr constant was only added in the macOS 12 and iOS 15 SDKs. Use a hardcoded value instead of the named constant, to fix building with older SDKs after c6214b0d691566c7cb0f2ff5be08a24c3534e5bb. Signed-off-by: Martin Storsjö --- libavcodec/videotoolbox.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/videotoolbox.c b/libavcodec/videotoolbox.c index aaa6129576..a744657957 100644 --- a/libavcodec/videotoolbox.c +++ b/libavcodec/videotoolbox.c @@ -728,7 +728,8 @@ static void videotoolbox_decoder_callback(void *opaque, } if (!image_buffer) { - if (status != kVTVideoDecoderReferenceMissingErr) + // kVTVideoDecoderReferenceMissingErr, defined since the macOS 12 SDKs + if (status != -17694) vtctx->reconfig_needed = true; av_log(vtctx->logctx, status ? AV_LOG_WARNING : AV_LOG_DEBUG,