mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 09:41:07 +00:00
meson.build: blacklist only libva 0.99.0
This is the same fix we used in gstreaemr-vaapi to blacklist the notoroious libva version 0.99.0 Intel's MSDK uses libva 0.99.0, meanwhile open source libva bumped its API version to 1.0.0. Thus we have to blacklist only the MSDK's libva (0.99.0) https://bugzilla.gnome.org/show_bug.cgi?id=789744
This commit is contained in:
parent
13996d5244
commit
ccedfe7472
1 changed files with 1 additions and 1 deletions
|
@ -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', '< 0.99.0'], 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')
|
||||
|
|
Loading…
Reference in a new issue