vulkan: set .decode_extension to 0 for compute-based decoders

They require no special video decode extension. The push descriptor
extension was a placeholder for when the check was performed inside
the init function.
This commit is contained in:
Lynne
2025-12-23 13:52:17 +01:00
parent bb769d9d90
commit e5eef271a5
3 changed files with 0 additions and 3 deletions
-1
View File
@@ -31,7 +31,6 @@ extern const char *ff_source_dpx_copy_comp;
const FFVulkanDecodeDescriptor ff_vk_dec_dpx_desc = {
.codec_id = AV_CODEC_ID_DPX,
.decode_extension = FF_VK_EXT_PUSH_DESCRIPTOR,
.queue_flags = VK_QUEUE_COMPUTE_BIT,
};
-1
View File
@@ -38,7 +38,6 @@ extern const char *ff_source_ffv1_dec_comp;
const FFVulkanDecodeDescriptor ff_vk_dec_ffv1_desc = {
.codec_id = AV_CODEC_ID_FFV1,
.decode_extension = FF_VK_EXT_PUSH_DESCRIPTOR,
.queue_flags = VK_QUEUE_COMPUTE_BIT,
};
-1
View File
@@ -32,7 +32,6 @@ extern const char *ff_source_prores_raw_idct_comp;
const FFVulkanDecodeDescriptor ff_vk_dec_prores_raw_desc = {
.codec_id = AV_CODEC_ID_PRORES_RAW,
.decode_extension = FF_VK_EXT_PUSH_DESCRIPTOR,
.queue_flags = VK_QUEUE_COMPUTE_BIT,
};