diff options
author | Lynne <dev@lynne.ee> | 2025-04-13 03:37:14 +0000 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2025-04-14 06:10:40 +0200 |
commit | 4f64df2928d7e54c89a5e1263c6768d3dcfe61a2 (patch) | |
tree | 9039842f6a4fdc6293d0a70548e235d33769b93c /libavutil | |
parent | 11911aef4631971e3233f086b52caf06c8a7f55c (diff) | |
download | ffmpeg-4f64df2928d7e54c89a5e1263c6768d3dcfe61a2.tar.gz |
vulkan: remove unused field from exec pools
This used to be involved in a mechanism to switch between queue indices,
but since the rewrite of the rewrite of the rewrite, it was rewritten out.
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/vulkan.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavutil/vulkan.h b/libavutil/vulkan.h index 9c068f03e1..4ea68e3ecc 100644 --- a/libavutil/vulkan.h +++ b/libavutil/vulkan.h @@ -23,7 +23,6 @@ #include <stdatomic.h> -#include "thread.h" #include "pixdesc.h" #include "bprint.h" #include "hwcontext.h" @@ -112,7 +111,6 @@ typedef struct FFVkBuffer { typedef struct FFVkExecContext { uint32_t idx; const struct FFVkExecPool *parent; - pthread_mutex_t lock; int had_submission; /* Queue for the execution context */ |