feat(libplacebo): made hardware context creation failure non-critical

Signed-off-by: k4yt3x <i@k4yt3x.com>
This commit is contained in:
k4yt3x 2024-11-09 00:00:00 +00:00
parent aa8ed60e52
commit c8f2acdea6
No known key found for this signature in database

View File

@ -29,8 +29,8 @@ int init_libplacebo(
&vk_hw_device_ctx, AV_HWDEVICE_TYPE_VULKAN, std::to_string(vk_device_index).c_str(), NULL, 0
);
if (ret < 0) {
spdlog::error("Failed to create Vulkan hardware device context.");
return ret;
spdlog::error("Failed to create Vulkan hardware device context for libplacebo.");
vk_hw_device_ctx = nullptr;
}
AVFilterGraph *graph = avfilter_graph_alloc();
@ -118,8 +118,10 @@ int init_libplacebo(
}
// Set the hardware device context to Vulkan
if (vk_hw_device_ctx != nullptr) {
libplacebo_ctx->hw_device_ctx = av_buffer_ref(vk_hw_device_ctx);
av_buffer_unref(&vk_hw_device_ctx);
}
// Link buffersrc to libplacebo
ret = avfilter_link(last_filter, 0, libplacebo_ctx, 0);