diff options
author | Lynne <dev@lynne.ee> | 2022-01-02 23:57:41 +0100 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2022-01-03 03:16:45 +0100 |
commit | b84ce56589755ec290b8564a5d69c5cb1b2adec6 (patch) | |
tree | ec6d0fbc2b2eaf8b6888750f23594dd471e6782d | |
parent | d6b2357eddca392ee137cb2a92ff178a0a7d0cce (diff) | |
download | ffmpeg-b84ce56589755ec290b8564a5d69c5cb1b2adec6.tar.gz |
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.
-rw-r--r-- | libavutil/hwcontext_vulkan.c | 1 |
1 files changed, 0 insertions, 1 deletions
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 }, |