meson: avoid unkown variables in the msdk tests
authorJordan Petridis <jordan@centricular.com>
Mon, 29 Oct 2018 19:51:14 +0000 (21:51 +0200)
committerJordan Petridis <jordan@centricular.com>
Tue, 6 Nov 2018 21:48:58 +0000 (23:48 +0200)
sys/msdk/meson.build

index bf3fb21..bb05045 100644 (file)
@@ -30,6 +30,9 @@ else
   msdk_sources += ['msdk_libva.c', 'gstmsdkallocator_libva.c']
 endif
 
+have_msdk = false
+msdk_dep = []
+
 msdk_option = get_option('msdk')
 if msdk_option.disabled()
   subdir_done()
@@ -41,9 +44,6 @@ if msdk_root == '' and msdk_option.enabled()
   error('msdk plugin enabled but Intel Media SDK not found: neither INTELMEDIASDKROOT nor MFX_HOME were set')
 endif
 
-have_msdk = false
-msdk_dep = []
-
 if msdk_root != ''
   msdk_libdir = [msdk_root + '/lib/lin_x64', msdk_root + '/lib/x64', msdk_root + '/lib64']
   msdk_incdir = include_directories(msdk_root + '/include')