The branch, master has been updated
via f39884b3fd0aaa57b8d5359a57304566b6a5587c (commit)
from 418235e98a42681a7f243ba6de8f7e9284a677b5 (commit)
- Log -----------------------------------------------------------------
commit f39884b3fd0aaa57b8d5359a57304566b6a5587c
Author: Lynne <[email protected]>
AuthorDate: Wed Nov 12 10:35:09 2025 +0100
Commit: Lynne <[email protected]>
CommitDate: Wed Nov 12 10:36:48 2025 +0100
vulkan: fix driver warning for unrecognized structure
VkQueueFamilyQueryResultStatusPropertiesKHR was added with the
VK_KHR_video_queue extension, which NVK does not support yet.
Correctly classify it as part of the video extensions.
diff --git a/libavutil/vulkan.c b/libavutil/vulkan.c
index 0f168e017b..54448a32e5 100644
--- a/libavutil/vulkan.c
+++ b/libavutil/vulkan.c
@@ -241,7 +241,7 @@ int ff_vk_load_props(FFVulkanContext *s)
.sType = VK_STRUCTURE_TYPE_QUEUE_FAMILY_PROPERTIES_2,
};
- FF_VK_STRUCT_EXT(s, &s->qf_props[i], &s->query_props[i],
FF_VK_EXT_NO_FLAG,
+ FF_VK_STRUCT_EXT(s, &s->qf_props[i], &s->query_props[i],
FF_VK_EXT_VIDEO_QUEUE,
VK_STRUCTURE_TYPE_QUEUE_FAMILY_QUERY_RESULT_STATUS_PROPERTIES_KHR);
FF_VK_STRUCT_EXT(s, &s->qf_props[i], &s->video_props[i],
FF_VK_EXT_VIDEO_QUEUE,
VK_STRUCTURE_TYPE_QUEUE_FAMILY_VIDEO_PROPERTIES_KHR);
-----------------------------------------------------------------------
Summary of changes:
libavutil/vulkan.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]