[FFmpeg-cvslog] hwcontext_vulkan: remove VK_EXT_hdr_metadata from autoloaded extensions list

Lynne git at videolan.org
Mon Jan 3 04:22:39 EET 2022


ffmpeg | branch: master | Lynne <dev at lynne.ee> | Sun Jan  2 23:57:41 2022 +0100| [b84ce56589755ec290b8564a5d69c5cb1b2adec6] | committer: Lynne

hwcontext_vulkan: remove VK_EXT_hdr_metadata from autoloaded extensions list

We don't use it. Was copied from libplacebo's recommended defaults.
Creates problems with validation on Intel devices, where the driver
still advertizes it, even though it's not usable without a swapchain.

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

 libavutil/hwcontext_vulkan.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c
index 83a7527198..e90edea111 100644
--- a/libavutil/hwcontext_vulkan.c
+++ b/libavutil/hwcontext_vulkan.c
@@ -341,7 +341,6 @@ static const VulkanOptExtension optional_instance_exts[] = {
 static const VulkanOptExtension optional_device_exts[] = {
     /* Misc or required by other extensions */
     { VK_KHR_PUSH_DESCRIPTOR_EXTENSION_NAME,                  FF_VK_EXT_NO_FLAG                },
-    { VK_EXT_HDR_METADATA_EXTENSION_NAME,                     FF_VK_EXT_NO_FLAG                },
     { VK_KHR_SAMPLER_YCBCR_CONVERSION_EXTENSION_NAME,         FF_VK_EXT_NO_FLAG                },
     { VK_KHR_SYNCHRONIZATION_2_EXTENSION_NAME,                FF_VK_EXT_NO_FLAG                },
 



More information about the ffmpeg-cvslog mailing list