wasapi2: Fallback to IAudioClient interface if IAudioClient3 API is unavailable
[platform/upstream/gstreamer.git] / gst / yadif / meson.build
1 yadif_sources = [
2   'gstyadif.c',
3   'vf_yadif.c',
4   'yadif.c'
5 ]
6
7 local_c_args = gst_plugins_bad_args
8
9 # The plugin can build asm extensions
10 # on x86_64
11 if host_machine.cpu() == 'x86_64'
12   local_c_args += ['-DHAVE_CPU_X86_64=1']
13 endif
14
15 gstyadif = library('gstyadif',
16   yadif_sources,
17   c_args : local_c_args,
18   include_directories : [configinc],
19   dependencies : [gstbase_dep, gstvideo_dep],
20   install : true,
21   install_dir : plugins_install_dir,
22 )
23 pkgconfig.generate(gstyadif, install_dir : plugins_pkgconfig_install_dir)
24 plugins += [gstyadif]