From 4db18a66b415f794ee5500da589e719b77a39a19 Mon Sep 17 00:00:00 2001 From: Scott D Phillips Date: Thu, 27 Apr 2017 22:58:35 -0700 Subject: [PATCH] require libva < 0.99.0 for gstreamer-vaapi Version 0.99.0 of libva isn't currently supported by gstreamer-vaapi. https://bugzilla.gnome.org/show_bug.cgi?id=781866 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 351bdc6..b21ea5d 100644 --- a/meson.build +++ b/meson.build @@ -60,7 +60,7 @@ if not get_option('disable_gst_omx') endif if not get_option('disable_gstreamer_vaapi') - if dependency('libva', version: '>= 0.30.4', required : false).found() + if dependency('libva', version: ['>= 0.30.4', '< 0.99.0'], required : false).found() subprojects += ['gstreamer-vaapi'] else message('WARNING: not building gstreamer-vaapi module, missing libva') -- 2.7.4