Message ID | 20240807213347.917235-6-dev@lynne.ee |
---|---|
State | New |
Headers | show |
Series | [FFmpeg-devel,01/13] hwcontext_vulkan: add a new mechanism to expose used queue families | expand |
Context | Check | Description |
---|---|---|
yinshiyou/make_loongarch64 | success | Make finished |
yinshiyou/make_fate_loongarch64 | success | Make fate finished |
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.