2019-03-01 08:56:24 +00:00
|
|
|
wl_req = '>= 1.15'
|
2018-07-27 13:29:23 +00:00
|
|
|
wl_client_dep = dependency('wayland-client', version: wl_req, required: get_option('wayland'))
|
|
|
|
libdrm_dep = dependency('libdrm', version: '>= 2.4.55', required: get_option('wayland'))
|
|
|
|
wl_protocol_dep = dependency('wayland-protocols', version: wl_req, required: get_option('wayland'))
|
|
|
|
wl_scanner = find_program('wayland-scanner', required: get_option('wayland'))
|
|
|
|
# Also used in ext/wayland
|
2016-11-17 04:15:18 +00:00
|
|
|
use_wayland = wl_protocol_dep.found() and wl_client_dep.found() and wl_scanner.found() and libdrm_dep.found()
|
2016-11-15 20:46:17 +00:00
|
|
|
|
2016-11-17 04:15:18 +00:00
|
|
|
if use_wayland
|
2022-01-04 14:20:41 +00:00
|
|
|
wl_sources = [
|
|
|
|
'gstwlbuffer.c',
|
|
|
|
'gstwlcontext.c',
|
|
|
|
'gstwldisplay.c',
|
|
|
|
'gstwllinuxdmabuf.c',
|
|
|
|
'gstwlshmallocator.c',
|
|
|
|
'gstwlvideobufferpool.c',
|
|
|
|
'gstwlvideoformat.c',
|
|
|
|
'gstwlwindow.c',
|
|
|
|
]
|
|
|
|
|
|
|
|
wl_headers = [
|
|
|
|
'gstwl_fwd.h',
|
|
|
|
'gstwlbuffer.h',
|
|
|
|
'gstwlcontext.h',
|
|
|
|
'gstwldisplay.h',
|
|
|
|
'gstwllinuxdmabuf.h',
|
|
|
|
'gstwlshmallocator.h',
|
|
|
|
'gstwlvideobufferpool.h',
|
|
|
|
'gstwlvideoformat.h',
|
|
|
|
'gstwlwindow.h',
|
|
|
|
'wayland.h',
|
|
|
|
'wayland-prelude.h',
|
|
|
|
]
|
|
|
|
|
|
|
|
protocols_datadir = wl_protocol_dep.get_variable('pkgdatadir')
|
|
|
|
|
|
|
|
protocol_defs = [
|
|
|
|
['/stable/viewporter/viewporter.xml', 'viewporter-protocol.c', 'viewporter-client-protocol.h'],
|
|
|
|
['/unstable/linux-dmabuf/linux-dmabuf-unstable-v1.xml',
|
|
|
|
'linux-dmabuf-unstable-v1-protocol.c', 'linux-dmabuf-unstable-v1-client-protocol.h'],
|
|
|
|
['/unstable/fullscreen-shell/fullscreen-shell-unstable-v1.xml',
|
|
|
|
'fullscreen-shell-unstable-v1-protocol.c', 'fullscreen-shell-unstable-v1-client-protocol.h'],
|
|
|
|
['/stable/xdg-shell/xdg-shell.xml', 'xdg-shell-protocol.c', 'xdg-shell-client-protocol.h'],
|
|
|
|
]
|
|
|
|
protocols_files = []
|
|
|
|
|
|
|
|
foreach protodef: protocol_defs
|
|
|
|
xmlfile = protocols_datadir + protodef.get(0)
|
|
|
|
|
|
|
|
protocols_files += [custom_target(protodef.get(1),
|
|
|
|
output : protodef.get(1),
|
|
|
|
input : xmlfile,
|
|
|
|
command : [wl_scanner, 'code', '@INPUT@', '@OUTPUT@'])]
|
|
|
|
|
|
|
|
protocols_files += [custom_target(protodef.get(2),
|
|
|
|
output : protodef.get(2),
|
|
|
|
input : xmlfile,
|
|
|
|
command : [wl_scanner, 'client-header', '@INPUT@', '@OUTPUT@'])]
|
|
|
|
endforeach
|
|
|
|
|
|
|
|
extra_c_args = [
|
|
|
|
'-DGST_USE_UNSTABLE_API',
|
|
|
|
'-DBUILDING_GST_WL',
|
|
|
|
'-DG_LOG_DOMAIN="GStreamer-Wayland"',
|
|
|
|
'-D_GNU_SOURCE'
|
|
|
|
]
|
|
|
|
|
2016-11-17 04:15:18 +00:00
|
|
|
gstwayland = library('gstwayland-' + api_version,
|
2022-01-04 14:20:41 +00:00
|
|
|
wl_sources + protocols_files,
|
|
|
|
c_args : gst_plugins_bad_args + extra_c_args,
|
2016-11-17 04:15:18 +00:00
|
|
|
include_directories : [configinc, libsinc],
|
|
|
|
version : libversion,
|
|
|
|
soversion : soversion,
|
2020-10-12 11:12:07 +00:00
|
|
|
darwin_versions : osxversion,
|
2016-11-17 04:15:18 +00:00
|
|
|
install : true,
|
2022-01-04 14:20:41 +00:00
|
|
|
dependencies : [gst_dep, gstallocators_dep, gstvideo_dep, libdrm_dep,
|
|
|
|
wl_client_dep, wl_protocol_dep]
|
2016-11-17 04:15:18 +00:00
|
|
|
)
|
|
|
|
|
2020-06-27 04:39:00 +00:00
|
|
|
pkg_name = 'gstreamer-wayland-1.0'
|
|
|
|
libraries += [[pkg_name, {'lib': gstwayland}]]
|
2018-04-07 20:33:47 +00:00
|
|
|
pkgconfig.generate(gstwayland,
|
|
|
|
libraries : [gst_dep, gstvideo_dep],
|
|
|
|
variables : pkgconfig_variables,
|
|
|
|
subdirs : pkgconfig_subdirs,
|
2020-06-27 04:39:00 +00:00
|
|
|
name : pkg_name,
|
2018-04-07 20:33:47 +00:00
|
|
|
description : 'GStreamer Wayland support',
|
|
|
|
)
|
|
|
|
|
2016-11-17 04:15:18 +00:00
|
|
|
gstwayland_dep = declare_dependency(link_with : gstwayland,
|
|
|
|
include_directories : [libsinc],
|
2022-01-04 14:20:41 +00:00
|
|
|
dependencies : [gst_dep, gstallocators_dep, gstvideo_dep, libdrm_dep,
|
|
|
|
wl_client_dep, wl_protocol_dep])
|
2018-04-07 20:33:47 +00:00
|
|
|
|
2022-01-04 14:20:41 +00:00
|
|
|
install_headers(wl_headers, subdir: 'gstreamer-1.0/gst/wayland')
|
2020-06-27 04:39:00 +00:00
|
|
|
meson.override_dependency(pkg_name, gstwayland_dep)
|
2016-11-17 04:15:18 +00:00
|
|
|
endif
|