mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-06-16 04:32:47 +02:00
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:
@@ -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,
|
||||
};
|
||||
|
||||
|
||||
@@ -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,
|
||||
};
|
||||
|
||||
|
||||
@@ -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,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user