mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
vulkan: use allocator callback for buffer creation
This would've let to a segfault if custom allocators were used.
This commit is contained in:
parent
55adcb4fc5
commit
8eac11105b
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user