From a62f75557a8b2d64fe88670b823d1e8500504bd2 Mon Sep 17 00:00:00 2001 From: Lynne Date: Wed, 14 Dec 2022 00:52:15 +0100 Subject: [PATCH 26/72] 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 de5575c031..8141e8c310 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.39.2