1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

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.
This commit is contained in:
Lynne
2025-03-14 17:53:02 +00:00
parent 6c9affb3e6
commit 3c09aadcf4

View File

@ -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 */