aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLynne <dev@lynne.ee>2022-12-14 00:52:15 +0100
committerLynne <dev@lynne.ee>2023-05-29 00:41:38 +0200
commitb0af92572fe55a1b396a19a673dfa9ee5d986c2e (patch)
tree222f41478cc9bd7bbb072715e48d7b88a17e8ef5
parent211c910aca6f1be57a73849a923a3a12863a82f4 (diff)
downloadffmpeg-b0af92572fe55a1b396a19a673dfa9ee5d986c2e.tar.gz
hwcontext_vulkan: fix minor type issue in VulkanQueueCtx.buf_deps_alloc_size
-rw-r--r--libavutil/hwcontext_vulkan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c
index 82790cb014..f796cbd689 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 {