summaryrefslogtreecommitdiffstats
path: root/video/out/gpu/hwdec.c
diff options
context:
space:
mode:
authorllyyr <llyyr.public@gmail.com>2023-09-20 02:50:26 +0530
committerNiklas Haas <github-daiK1o@haasn.dev>2023-10-23 13:03:29 +0200
commitf5ca11e12bc55d14bd6895b619c4abfd470c6452 (patch)
tree6ac7c720f50e54ba5940282cee4b793a3dee0f22 /video/out/gpu/hwdec.c
parent59a3c453f97c558b80ba4a39a8e5b476a66c5951 (diff)
downloadmpv-f5ca11e12bc55d14bd6895b619c4abfd470c6452.tar.bz2
mpv-f5ca11e12bc55d14bd6895b619c4abfd470c6452.tar.xz
meson: make libplacebo a required dependency
Make it not possible to build mpv without the latest libplacebo anymore. This will allow for less code duplication between mpv and libplacebo, and in the future also let us delete legacy ifdefs and track libplacebo better.
Diffstat (limited to 'video/out/gpu/hwdec.c')
-rw-r--r--video/out/gpu/hwdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/gpu/hwdec.c b/video/out/gpu/hwdec.c
index 878ac148fb..d8be6da777 100644
--- a/video/out/gpu/hwdec.c
+++ b/video/out/gpu/hwdec.c
@@ -41,7 +41,7 @@ extern const struct ra_hwdec_driver ra_hwdec_aimagereader;
extern const struct ra_hwdec_driver ra_hwdec_vulkan;
const struct ra_hwdec_driver *const ra_hwdec_drivers[] = {
-#if HAVE_VAAPI_EGL || HAVE_VAAPI_LIBPLACEBO
+#if HAVE_VAAPI
&ra_hwdec_vaapi,
#endif
#if HAVE_VIDEOTOOLBOX_GL || HAVE_IOS_GL