This is an automated email from the git hooks/post-receive script.
Git pushed a commit to branch master
in repository ffmpeg.
The following commit(s) were added to refs/heads/master by this push:
new e5eef271a5 vulkan: set .decode_extension to 0 for compute-based
decoders
e5eef271a5 is described below
commit e5eef271a5f6e20de9eff7660680bf42e5ef4f89
Author: Lynne <[email protected]>
AuthorDate: Tue Dec 23 13:52:17 2025 +0100
Commit: Lynne <[email protected]>
CommitDate: Tue Dec 23 15:42:24 2025 +0100
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.
---
libavcodec/vulkan_dpx.c | 1 -
libavcodec/vulkan_ffv1.c | 1 -
libavcodec/vulkan_prores_raw.c | 1 -
3 files changed, 3 deletions(-)
diff --git a/libavcodec/vulkan_dpx.c b/libavcodec/vulkan_dpx.c
index eaf131c383..faad28d624 100644
--- a/libavcodec/vulkan_dpx.c
+++ b/libavcodec/vulkan_dpx.c
@@ -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,
};
diff --git a/libavcodec/vulkan_ffv1.c b/libavcodec/vulkan_ffv1.c
index 93f2ccae65..168871d5d9 100644
--- a/libavcodec/vulkan_ffv1.c
+++ b/libavcodec/vulkan_ffv1.c
@@ -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,
};
diff --git a/libavcodec/vulkan_prores_raw.c b/libavcodec/vulkan_prores_raw.c
index 0a844156fb..8ccaf1c07f 100644
--- a/libavcodec/vulkan_prores_raw.c
+++ b/libavcodec/vulkan_prores_raw.c
@@ -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,
};
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]