mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
eadedc68f8
GL dependency detection is still automagic. https://bugzilla.gnome.org/show_bug.cgi?id=795107
22 lines
668 B
Meson
22 lines
668 B
Meson
xvimage_sources = [
|
|
'xvcontext.c',
|
|
'xvimage.c',
|
|
'xvimageallocator.c',
|
|
'xvimagepool.c',
|
|
'xvimagesink.c',
|
|
]
|
|
|
|
xvideo_dep = dependency('xv', required : get_option('xvideo'))
|
|
core_conf.set('HAVE_XVIDEO', x11_dep.found() and xvideo_dep.found())
|
|
|
|
if xvideo_dep.found()
|
|
gstxvimage = library('gstxvimagesink',
|
|
xvimage_sources,
|
|
c_args : gst_plugins_base_args,
|
|
include_directories: [configinc, libsinc],
|
|
dependencies : glib_deps + [video_dep, gst_base_dep, gst_dep, x11_dep, xshm_dep, xvideo_dep, libm],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstxvimage, install_dir : plugins_pkgconfig_install_dir)
|
|
endif
|