2016-08-12 15:51:45 +00:00
|
|
|
winscreencap_sources = [
|
|
|
|
'gstdx9screencapsrc.c',
|
|
|
|
'gstgdiscreencapsrc.c',
|
|
|
|
'gstwinscreencap.c',
|
|
|
|
]
|
|
|
|
|
2018-07-27 13:29:23 +00:00
|
|
|
if host_system != 'windows' or get_option('winscreencap').disabled()
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
|
|
|
d3d_dep = cc.find_library('d3d9', required : get_option('winscreencap'))
|
|
|
|
gdi_dep = cc.find_library('gdi32', required : get_option('winscreencap'))
|
2019-11-21 04:50:21 +00:00
|
|
|
windowscodecs_dep = cc.find_library('windowscodecs', required : false)
|
2020-06-19 12:43:15 +00:00
|
|
|
dxguid_dep = cc.find_library('dxguid', required : false)
|
2019-11-21 04:50:21 +00:00
|
|
|
|
2018-07-27 13:29:23 +00:00
|
|
|
have_d3d9_h = cc.has_header('d3d9.h')
|
|
|
|
if not have_d3d9_h and get_option('winscreencap').enabled()
|
|
|
|
error('winscreencap plugin enabled but d3d9.h not found')
|
|
|
|
endif
|
2016-08-12 15:51:45 +00:00
|
|
|
|
2018-07-27 13:29:23 +00:00
|
|
|
if d3d_dep.found() and gdi_dep.found() and have_d3d9_h
|
2016-08-12 15:51:45 +00:00
|
|
|
gstwinscreencap = library('gstwinscreencap',
|
2022-02-19 21:36:45 +00:00
|
|
|
winscreencap_sources,
|
|
|
|
c_args : gst_plugins_bad_args,
|
2016-08-12 15:51:45 +00:00
|
|
|
include_directories : [configinc],
|
2022-02-19 21:36:45 +00:00
|
|
|
dependencies : [gstbase_dep, gstvideo_dep, d3d_dep, gdi_dep],
|
2016-08-12 15:51:45 +00:00
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-10-22 09:30:45 +00:00
|
|
|
plugins += [gstwinscreencap]
|
2016-08-12 15:51:45 +00:00
|
|
|
endif
|