From 3531fe0a4f28f7db6ed5053b5057f0c197a53de8 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Wed, 2 Oct 2024 00:37:22 -0500 Subject: [PATCH] Fix typo in version check for new Vulkan queue API --- app/streaming/video/ffmpeg-renderers/plvk.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/streaming/video/ffmpeg-renderers/plvk.cpp b/app/streaming/video/ffmpeg-renderers/plvk.cpp index 6b1638fa..4546be7c 100644 --- a/app/streaming/video/ffmpeg-renderers/plvk.cpp +++ b/app/streaming/video/ffmpeg-renderers/plvk.cpp @@ -582,7 +582,7 @@ bool PlVkRenderer::populateQueues(int videoFormat) fn_vkGetPhysicalDeviceQueueFamilyProperties2(m_Vulkan->phys_device, &queueFamilyCount, queueFamilies.data()); -#if LIBAVUTIL_VERSION_INT >= AV_VERSION_INT(58, 34, 100) +#if LIBAVUTIL_VERSION_INT >= AV_VERSION_INT(59, 34, 100) Q_UNUSED(videoFormat); for (uint32_t i = 0; i < queueFamilyCount; i++) {