diff options
author | Lynne <dev@lynne.ee> | 2022-12-14 00:52:15 +0100 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2023-05-29 00:41:38 +0200 |
commit | b0af92572fe55a1b396a19a673dfa9ee5d986c2e (patch) | |
tree | 222f41478cc9bd7bbb072715e48d7b88a17e8ef5 | |
parent | 211c910aca6f1be57a73849a923a3a12863a82f4 (diff) | |
download | ffmpeg-b0af92572fe55a1b396a19a673dfa9ee5d986c2e.tar.gz |
hwcontext_vulkan: fix minor type issue in VulkanQueueCtx.buf_deps_alloc_size
-rw-r--r-- | libavutil/hwcontext_vulkan.c | 2 |
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 { |