[FFmpeg-cvslog] vulkan: use allocator callback for buffer creation
Lynne
git at videolan.org
Sun Aug 11 06:21:13 EEST 2024
ffmpeg | branch: master | Lynne <dev at lynne.ee> | Wed Jul 24 20:19:15 2024 +0200| [8eac11105b0addc6f9ff53d4f082171db459e172] | committer: Lynne
vulkan: use allocator callback for buffer creation
This would've let to a segfault if custom allocators were used.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8eac11105b0addc6f9ff53d4f082171db459e172
---
libavutil/vulkan.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavutil/vulkan.c b/libavutil/vulkan.c
index df7758cc1e..7b45e43a89 100644
--- a/libavutil/vulkan.c
+++ b/libavutil/vulkan.c
@@ -855,7 +855,7 @@ int ff_vk_create_buf(FFVulkanContext *s, FFVkBuffer *buf, size_t size,
.pNext = &ded_req,
};
- ret = vk->CreateBuffer(s->hwctx->act_dev, &buf_spawn, NULL, &buf->buf);
+ ret = vk->CreateBuffer(s->hwctx->act_dev, &buf_spawn, s->hwctx->alloc, &buf->buf);
if (ret != VK_SUCCESS) {
av_log(s, AV_LOG_ERROR, "Failed to create buffer: %s\n",
ff_vk_ret2str(ret));
More information about the ffmpeg-cvslog
mailing list