diff options
author | Lynne <dev@lynne.ee> | 2025-03-14 17:53:02 +0000 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2025-03-17 08:49:10 +0100 |
commit | 3c09aadcf47a1cbb990c48cac1c4bea9bf0593cf (patch) | |
tree | 30369be970fc63b45ff1388d0cfbbb78e52ea386 /libavutil/hwcontext_vulkan.c | |
parent | 6c9affb3e660d14ddca17d4eaa1c8d7b47b0d8a0 (diff) | |
download | ffmpeg-3c09aadcf47a1cbb990c48cac1c4bea9bf0593cf.tar.gz |
hwcontext_vulkan: allow using concurrent access images with more than 5 queues
This limit was not bumped when the queue family rewrite happened.
Fixes validation issues on nvidia.
Diffstat (limited to 'libavutil/hwcontext_vulkan.c')
-rw-r--r-- | libavutil/hwcontext_vulkan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c index 46457f8fcb..f7df5503f8 100644 --- a/libavutil/hwcontext_vulkan.c +++ b/libavutil/hwcontext_vulkan.c @@ -121,7 +121,7 @@ typedef struct VulkanDevicePriv { /* Queues */ pthread_mutex_t **qf_mutex; uint32_t nb_tot_qfs; - uint32_t img_qfs[5]; + uint32_t img_qfs[64]; uint32_t nb_img_qfs; /* Debug callback */ |