summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLynne <dev@lynne.ee>2024-03-24 20:37:57 +0100
committerPhilip Langdale <github.philipl@overt.org>2024-03-24 13:25:35 -0700
commitcda5a787d5f9b293378a6b02251439744001c8f3 (patch)
tree2f550a502611db0541399835535269561a2d79b1
parent77e1cfb85f1128c1cfcb0037bd09cc927725938d (diff)
downloadmpv-cda5a787d5f9b293378a6b02251439744001c8f3.tar.bz2
mpv-cda5a787d5f9b293378a6b02251439744001c8f3.tar.xz
hwdec/vulkan: enable the stable AV1 extension
As no drivers were ever released with the unstable extension, it's not needed anymore. Not bumping the required headers version yet.
-rw-r--r--video/out/vulkan/context.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/video/out/vulkan/context.c b/video/out/vulkan/context.c
index 966241743e..73afefd718 100644
--- a/video/out/vulkan/context.c
+++ b/video/out/vulkan/context.c
@@ -206,8 +206,7 @@ bool ra_vk_ctx_init(struct ra_ctx *ctx, struct mpvk_ctx *vk,
VK_KHR_VIDEO_DECODE_H264_EXTENSION_NAME,
VK_KHR_VIDEO_DECODE_H265_EXTENSION_NAME,
VK_KHR_VIDEO_QUEUE_EXTENSION_NAME,
- // This is a literal string as it's not in the official headers yet.
- "VK_MESA_video_decode_av1",
+ "VK_KHR_video_decode_av1", /* VK_KHR_VIDEO_DECODE_AV1_EXTENSION_NAME */
};
VkPhysicalDeviceDescriptorBufferFeaturesEXT descriptor_buffer_feature = {