From 3618d186001c6da0b2bd0219ef226614fd384b3e Mon Sep 17 00:00:00 2001 From: Lynne Date: Wed, 14 Dec 2022 00:52:15 +0100 Subject: [PATCH 29/97] hwcontext_vulkan: fix minor type issue in VulkanQueueCtx.buf_deps_alloc_size --- libavutil/hwcontext_vulkan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c index 9eacbb4d2e..ec05428903 100644 --- a/libavutil/hwcontext_vulkan.c +++ b/libavutil/hwcontext_vulkan.c @@ -66,7 +66,7 @@ typedef struct VulkanQueueCtx { /* Buffer dependencies */ AVBufferRef **buf_deps; int nb_buf_deps; - int buf_deps_alloc_size; + unsigned int buf_deps_alloc_size; } VulkanQueueCtx; typedef struct VulkanExecCtx { -- 2.40.0