From b77f88157e82e644c88c5e095093ef7229f29542 Mon Sep 17 00:00:00 2001 From: Philip Langdale Date: Sun, 5 Feb 2023 17:28:25 -0800 Subject: [PATCH] meson: bump libplacebo-next required version to 5.264 This is the latest stable release, and what we should use for libplacebo-next per haasn's recommendation. The previous 202 version wasn't even a release. --- meson.build | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meson.build b/meson.build index 1597543e0a..4a8fa203cc 100644 --- a/meson.build +++ b/meson.build @@ -917,13 +917,13 @@ if features['libplacebo'] sources += files('video/out/placebo/ra_pl.c', 'video/out/placebo/utils.c') pl_api_ver = libplacebo.version().split('.')[1] - if pl_api_ver.version_compare('>=202') + if pl_api_ver.version_compare('>=264.0') features += {'libplacebo-next': true} - message('libplacebo v4.202+ found! Enabling vo_gpu_next.') + message('libplacebo v5.264.0+ found! Enabling vo_gpu_next.') sources += files('video/out/vo_gpu_next.c', 'video/out/gpu_next/context.c') else - message('libplacebo v4.202+ not found! Disabling vo_gpu_next.') + message('libplacebo v5.264.0+ not found! Disabling vo_gpu_next.') endif endif