mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
110 lines
2.7 KiB
Meson
110 lines
2.7 KiB
Meson
qsv_sources = [
|
|
'gstqsvallocator.cpp',
|
|
'gstqsvav1enc.cpp',
|
|
'gstqsvdecoder.cpp',
|
|
'gstqsvencoder.cpp',
|
|
'gstqsvh264dec.cpp',
|
|
'gstqsvh264enc.cpp',
|
|
'gstqsvh265dec.cpp',
|
|
'gstqsvh265enc.cpp',
|
|
'gstqsvjpegenc.cpp',
|
|
'gstqsvutils.cpp',
|
|
'gstqsvvp9enc.cpp',
|
|
'plugin.cpp',
|
|
]
|
|
|
|
qsv_d3d11_sources = [
|
|
'gstqsvallocator_d3d11.cpp',
|
|
]
|
|
|
|
qsv_va_sources = [
|
|
'gstqsvallocator_va.cpp',
|
|
]
|
|
|
|
extra_args = [
|
|
'-DGST_USE_UNSTABLE_API',
|
|
]
|
|
|
|
qsv_option = get_option('qsv')
|
|
if qsv_option.disabled()
|
|
subdir_done()
|
|
endif
|
|
|
|
qsv_platform_deps = []
|
|
if host_system == 'windows'
|
|
# TODO: We can cross-compile this plugin using MinGW but there's an issue.
|
|
# Re-enable cross-compile once it's investigated and addressed
|
|
# https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/854
|
|
if cc.get_id() != 'msvc'
|
|
if qsv_option.enabled()
|
|
error('qsv plugin supports only MSVC build')
|
|
else
|
|
subdir_done()
|
|
endif
|
|
endif
|
|
|
|
if not gstd3d11_dep.found()
|
|
if qsv_option.enabled()
|
|
error('The qsv was enabled explicitly, but required d3d11 was not found')
|
|
else
|
|
subdir_done()
|
|
endif
|
|
endif
|
|
|
|
code = '''
|
|
#include <windows.h>
|
|
#if !(WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP) && !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP))
|
|
#error "Not building for UWP"
|
|
#endif'''
|
|
if cc.compiles(code, name : 'building for UWP')
|
|
if qsv_option.enabled()
|
|
error('qsv plugin does not support UWP')
|
|
else
|
|
subdir_done()
|
|
endif
|
|
endif
|
|
|
|
qsv_sources += qsv_d3d11_sources
|
|
qsv_platform_deps += [gstd3d11_dep]
|
|
elif host_system == 'linux' and host_machine.cpu_family() == 'x86_64'
|
|
if not gstva_dep.found()
|
|
if qsv_option.enabled()
|
|
error('The qsv was enabled explicitly, but required va was not found')
|
|
else
|
|
subdir_done()
|
|
endif
|
|
endif
|
|
qsv_sources += qsv_va_sources
|
|
qsv_platform_deps += [gstva_dep]
|
|
else
|
|
if qsv_option.enabled()
|
|
error('QSV plugin supports only Windows or Linux')
|
|
else
|
|
subdir_done()
|
|
endif
|
|
endif
|
|
|
|
# suppress deprecated use of MFXInitEx. We don't use the method,
|
|
# but used in "mfxvideo++.h"
|
|
# and MinGW 32bits compiler seems to be complaining about redundant-decls
|
|
if cc.get_id() != 'msvc'
|
|
extra_args += cc.get_supported_arguments([
|
|
'-Wno-redundant-decls',
|
|
'-Wno-deprecated-declarations',
|
|
])
|
|
endif
|
|
|
|
subdir('libmfx')
|
|
|
|
gstqsv = library('gstqsv',
|
|
qsv_sources,
|
|
c_args : gst_plugins_bad_args + extra_args,
|
|
cpp_args : gst_plugins_bad_args + extra_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstbase_dep, gstvideo_dep, gstcodecparsers_dep, libmfx_internal_dep] + qsv_platform_deps,
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
|
|
pkgconfig.generate(gstqsv, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstqsv]
|