aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLynne <dev@lynne.ee>2024-07-18 10:16:27 +0200
committerLynne <dev@lynne.ee>2024-08-11 05:13:10 +0200
commit81c5d4ea0e5e90bc030d31ab9e7d0cf090988b96 (patch)
tree31e89dc3be7938c52a5b84d146820770f9344cf1
parent6757cdb5350fdad381adfe42b305457897f86c8e (diff)
downloadffmpeg-81c5d4ea0e5e90bc030d31ab9e7d0cf090988b96.tar.gz
hwcontext_vulkan: remove unused struct
-rw-r--r--libavutil/hwcontext_vulkan.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c
index c81fc95af2..e2ef599a0d 100644
--- a/libavutil/hwcontext_vulkan.c
+++ b/libavutil/hwcontext_vulkan.c
@@ -67,19 +67,6 @@
#define CHECK_CU(x) FF_CUDA_CHECK_DL(cuda_cu, cu, x)
#endif
-typedef struct VulkanQueueCtx {
- VkFence fence;
- VkQueue queue;
- int was_synchronous;
- int qf;
- int qidx;
-
- /* Buffer dependencies */
- AVBufferRef **buf_deps;
- int nb_buf_deps;
- unsigned int buf_deps_alloc_size;
-} VulkanQueueCtx;
-
typedef struct VulkanDevicePriv {
/**
* The public AVVulkanDeviceContext. See hwcontext_vulkan.h for it.