diff options
author | Niklas Haas <git@haasn.dev> | 2023-04-24 13:22:23 +0200 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2023-05-29 00:41:55 +0200 |
commit | b41ea8c6c38951b421f5ee717d4b9e2284c2a264 (patch) | |
tree | 582b69e189b65abd7b0a75d44f28a5e055564fac | |
parent | 661db605db412681d18e6b44801cf4ea5e2aa13e (diff) | |
download | ffmpeg-b41ea8c6c38951b421f5ee717d4b9e2284c2a264.tar.gz |
avfilter/vf_libplacebo: bump max vk version
For two reasons:
1. We now create a vulkan 1.3 device
2. libplacebo master currently requires a vulkan 1.3 device
-rw-r--r-- | libavfilter/vf_libplacebo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_libplacebo.c b/libavfilter/vf_libplacebo.c index e28dddef4f..2b8dac09b0 100644 --- a/libavfilter/vf_libplacebo.c +++ b/libavfilter/vf_libplacebo.c @@ -603,7 +603,7 @@ static int init_vulkan(AVFilterContext *avctx, const AVVulkanDeviceContext *hwct .count = hwctx->nb_tx_queues, }, /* This is the highest version created by hwcontext_vulkan.c */ - .max_api_version = VK_API_VERSION_1_2, + .max_api_version = VK_API_VERSION_1_3, )); } else { s->vulkan = pl_vulkan_create(s->log, pl_vulkan_params( |