[FFmpeg-cvslog] videotoolbox: Fix building with older SDKs

Martin Storsjö git at videolan.org
Wed Mar 26 22:35:34 EET 2025


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Tue Mar 25 11:56:50 2025 +0200| [d256118b7e622c07167bbe044daba05c2326a6e3] | committer: Martin Storsjö

videotoolbox: Fix building with older SDKs

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ö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d256118b7e622c07167bbe044daba05c2326a6e3
---

 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,



More information about the ffmpeg-cvslog mailing list