2019-01-30 11:07:29 +00:00
|
|
|
d3d11_sources = [
|
2019-11-06 10:38:31 +00:00
|
|
|
'gstd3d11basefilter.c',
|
2019-08-18 12:01:55 +00:00
|
|
|
'gstd3d11colorconvert.c',
|
2019-12-03 11:35:06 +00:00
|
|
|
'gstd3d11colorconverter.c',
|
2020-06-02 16:26:12 +00:00
|
|
|
'gstd3d11compositor.c',
|
|
|
|
'gstd3d11compositorbin.c',
|
2020-12-20 17:47:45 +00:00
|
|
|
'gstd3d11download.c',
|
|
|
|
'gstd3d11overlaycompositor.c',
|
|
|
|
'gstd3d11pluginutils.c',
|
|
|
|
'gstd3d11shader.c',
|
|
|
|
'gstd3d11upload.c',
|
|
|
|
'gstd3d11videoprocessor.c',
|
|
|
|
'gstd3d11videosink.c',
|
|
|
|
'gstd3d11videosinkbin.c',
|
|
|
|
'gstd3d11window.cpp',
|
|
|
|
'plugin.c',
|
2019-01-30 11:07:29 +00:00
|
|
|
]
|
|
|
|
|
2019-12-26 05:24:46 +00:00
|
|
|
d3d11_dec_sources = [
|
|
|
|
'gstd3d11decoder.c',
|
|
|
|
'gstd3d11h264dec.c',
|
2019-12-20 14:05:52 +00:00
|
|
|
'gstd3d11vp9dec.c',
|
2019-12-26 05:28:03 +00:00
|
|
|
'gstd3d11h265dec.c',
|
2021-01-10 16:06:24 +00:00
|
|
|
'gstd3d11mpeg2dec.c',
|
2020-02-28 09:14:51 +00:00
|
|
|
'gstd3d11vp8dec.c',
|
2019-12-26 05:24:46 +00:00
|
|
|
]
|
|
|
|
|
2020-12-20 17:47:45 +00:00
|
|
|
extra_c_args = ['-DCOBJMACROS', '-DGST_USE_UNSTABLE_API']
|
|
|
|
extra_cpp_args = ['-DGST_USE_UNSTABLE_API']
|
2019-01-30 11:07:29 +00:00
|
|
|
extra_dep = []
|
|
|
|
|
|
|
|
d3d11_option = get_option('d3d11')
|
|
|
|
if host_system != 'windows' or d3d11_option.disabled()
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2020-12-20 17:47:45 +00:00
|
|
|
if not gstd3d11_dep.found()
|
|
|
|
if d3d11_option.enabled()
|
|
|
|
error('The d3d11 was enabled explicitly, but required dependencies were not found.')
|
2019-12-18 04:21:31 +00:00
|
|
|
endif
|
2020-12-20 17:47:45 +00:00
|
|
|
subdir_done()
|
|
|
|
endif
|
2019-12-18 04:21:31 +00:00
|
|
|
|
2020-12-20 17:47:45 +00:00
|
|
|
d3dcompiler_lib = cc.find_library('d3dcompiler', required: d3d11_option)
|
|
|
|
runtimeobject_lib = cc.find_library('runtimeobject', required : false)
|
2020-01-10 14:54:43 +00:00
|
|
|
|
2020-12-20 17:47:45 +00:00
|
|
|
have_d3d11 = cc.has_header('d3dcompiler.h')
|
2019-01-30 11:07:29 +00:00
|
|
|
if not have_d3d11
|
|
|
|
if d3d11_option.enabled()
|
|
|
|
error('The d3d11 plugin was enabled explicitly, but required dependencies were not found.')
|
|
|
|
endif
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2019-12-26 05:24:46 +00:00
|
|
|
# d3d11 video api uses dxva structure for decoding, and dxva.h needs d3d9 types
|
|
|
|
if cc.has_header('dxva.h') and cc.has_header('d3d9.h')
|
|
|
|
d3d11_sources += d3d11_dec_sources
|
2020-12-20 17:47:45 +00:00
|
|
|
extra_c_args += ['-DHAVE_DXVA_H']
|
2020-01-31 22:54:57 +00:00
|
|
|
extra_dep += [gstcodecs_dep]
|
2019-12-26 05:24:46 +00:00
|
|
|
endif
|
|
|
|
|
2020-12-20 17:47:45 +00:00
|
|
|
if d3d11_winapi_only_app and (not d3dcompiler_lib.found() or not runtimeobject_lib.found())
|
|
|
|
if d3d11_option.enabled()
|
|
|
|
error('The d3d11 plugin was enabled explicitly, but required dependencies were not found.')
|
|
|
|
endif
|
|
|
|
subdir_done()
|
2019-12-30 09:58:59 +00:00
|
|
|
endif
|
|
|
|
|
2021-01-18 10:17:14 +00:00
|
|
|
# if build target is Windows 10 and WINAPI_PARTITION_APP is allowed,
|
|
|
|
# we can build UWP only modules as well
|
|
|
|
if d3d11_winapi_app
|
2019-12-30 09:58:59 +00:00
|
|
|
d3d11_sources += ['gstd3d11window_corewindow.cpp',
|
|
|
|
'gstd3d11window_swapchainpanel.cpp']
|
2020-06-19 12:24:59 +00:00
|
|
|
extra_dep += [runtimeobject_lib, d3dcompiler_lib]
|
2021-01-18 10:17:14 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
if d3d11_winapi_desktop
|
2019-12-30 09:58:59 +00:00
|
|
|
d3d11_sources += ['gstd3d11window_win32.cpp']
|
2020-12-20 17:47:45 +00:00
|
|
|
if d3d11_conf.get('GST_D3D11_DXGI_HEADER_VERSION') >= 6
|
2020-11-20 18:20:36 +00:00
|
|
|
# Desktop Duplication API is unavailable for UWP
|
|
|
|
# and MinGW is not supported due to some missing headers
|
2020-12-20 17:47:45 +00:00
|
|
|
extra_c_args += ['-DHAVE_DXGI_DESKTOP_DUP']
|
2020-11-20 18:20:36 +00:00
|
|
|
d3d11_sources += ['gstd3d11desktopdup.cpp', 'gstd3d11desktopdupsrc.c']
|
|
|
|
message('Enable D3D11 Desktop Duplication API')
|
|
|
|
endif
|
2019-12-30 09:58:59 +00:00
|
|
|
endif
|
|
|
|
|
2020-11-20 18:20:36 +00:00
|
|
|
# MinGW 32bits compiler seems to be complaining about redundant-decls
|
|
|
|
# when ComPtr is in use. Let's just disable the warning
|
|
|
|
if cc.get_id() != 'msvc'
|
|
|
|
extra_args = cc.get_supported_arguments([
|
|
|
|
'-Wno-redundant-decls',
|
|
|
|
])
|
|
|
|
|
|
|
|
extra_c_args += extra_args
|
|
|
|
extra_cpp_args += extra_args
|
|
|
|
endif
|
|
|
|
|
2019-01-30 11:07:29 +00:00
|
|
|
gstd3d11 = library('gstd3d11',
|
|
|
|
d3d11_sources,
|
|
|
|
c_args : gst_plugins_bad_args + extra_c_args,
|
2020-11-20 18:20:36 +00:00
|
|
|
cpp_args: gst_plugins_bad_args + extra_cpp_args,
|
2019-01-30 11:07:29 +00:00
|
|
|
include_directories : [configinc],
|
2020-12-20 17:47:45 +00:00
|
|
|
dependencies : [gstbase_dep, gstvideo_dep, gmodule_dep, gstcontroller_dep, gstd3d11_dep] + extra_dep,
|
2019-01-30 11:07:29 +00:00
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
|
|
|
pkgconfig.generate(gstd3d11, install_dir : plugins_pkgconfig_install_dir)
|
|
|
|
plugins += [gstd3d11]
|