testffmpeg_vulkan: enable the VK_KHR_video_maintenance1 extension

This is used by ffmpeg, so we'll enable it if it's available
This commit is contained in:
Sam Lantinga
2026-07-10 11:40:30 -07:00
parent 094213b3be
commit 9149eca207

View File

@@ -556,7 +556,8 @@ static int createDevice(VulkanVideoContext *context)
VK_KHR_VIDEO_DECODE_QUEUE_EXTENSION_NAME,
VK_KHR_VIDEO_DECODE_H264_EXTENSION_NAME,
VK_KHR_VIDEO_DECODE_H265_EXTENSION_NAME,
VK_KHR_VIDEO_DECODE_AV1_EXTENSION_NAME
VK_KHR_VIDEO_DECODE_AV1_EXTENSION_NAME,
VK_KHR_VIDEO_MAINTENANCE_1_EXTENSION_NAME
};
VkDeviceCreateInfo deviceCreateInfo;
VkDeviceQueueCreateInfo *queueCreateInfos = NULL;