gstreamer/subprojects/gst-plugins-bad/sys/qsv/libmfx/meson.build
Seungha Yang 64ed6075b7 qsv: Introduce H.264 Intel Quick Sync Video Encoder
A new implementation of Intel Quick Sync Video plugin.
This plugin supports both Windows and Linux but optimization for
VA/DMABuf is not implemented yet.

This new plugin has some notable differences compared with existing
MSDK plugin.

* Encoder will expose formats which can be natively supported
without internal conversion. This will make encoder
control/negotiation flow much simpler and cleaner than
that of MSDK plugin.

* This plugin includes QSV specific library loading helper,
called dispatcher, with QSV SDK headers as a part of this plugin.
So, there will be no more SDK version dependent #ifdef in the code
and also there will be no more build-time MSDK/oneVPL SDK
dependency.

* Memory allocator interop between GStreamer and QSV is re-designed
and decoupled. Instead of implementing QSV specific allocator/bufferpool,
this plugin will make use of generic GStreamer memory
allocator/bufferpool (e.g., GstD3D11Allocator and GstD3D11BufferPool).
Specifically, GstQsvAllocator object will help interop between
GstMemory and mfxFrameAllocator memory abstraction layers.

Note that because of the design decision, VA/DMABuf support is not made
as a part of this initial commit. We can add the optimization for Linux
later once GstVA library exposes allocator/bufferpool implementation as
an API like GstD3D11.

* Initial encoder implementation supports interop with GstD3D11
infrastructure, including zero-copy encoding with upstream D3D11 element.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1408>
2022-02-08 10:05:35 +00:00

100 lines
3 KiB
Meson

mfx_win_sources = [
'dispatcher/windows/main.cpp',
'dispatcher/windows/mfx_dispatcher_log.cpp',
'dispatcher/windows/mfx_dispatcher.cpp',
'dispatcher/windows/mfx_dxva2_device.cpp',
'dispatcher/windows/mfx_function_table.cpp',
'dispatcher/windows/mfx_load_dll.cpp',
]
mfx_win32_sources = [
'dispatcher/windows/mfx_critical_section.cpp',
'dispatcher/windows/mfx_driver_store_loader.cpp',
'dispatcher/windows/mfx_library_iterator.cpp',
'dispatcher/windows/mfx_win_reg_key.cpp',
]
mfx_uwp_sources = [
'dispatcher/windows/mfx_dispatcher_uwp.cpp',
'dispatcher/windows/mfx_driver_store_loader.cpp',
]
mfx_linux_sources = [
'dispatcher/linux/mfxloader.cpp',
]
vpl_sources = [
'dispatcher/vpl/mfx_dispatcher_vpl_config.cpp',
'dispatcher/vpl/mfx_dispatcher_vpl_loader.cpp',
'dispatcher/vpl/mfx_dispatcher_vpl_log.cpp',
'dispatcher/vpl/mfx_dispatcher_vpl_lowlatency.cpp',
'dispatcher/vpl/mfx_dispatcher_vpl_msdk.cpp',
'dispatcher/vpl/mfx_dispatcher_vpl.cpp',
]
libmfx_extra_args = [
'-DONEVPL_EXPERIMENTAL'
]
libmfx_extra_deps = []
libmfx_sources = vpl_sources
if host_system == 'windows'
libmfx_sources += mfx_win_sources
# FIXME: check UWP only
libmfx_sources += mfx_win32_sources
elif host_system == 'linux'
libmfx_sources += mfx_linux_sources
# Unlike Windows (libmfxhw64.dll is part of driver so it's system library),
# user can build/install libmfx on Linux, so we need to define
# "MFX_MODULES_DIR" for dispatcher to be able to search libmfx from
# additional search path.
libmfx_modules_dir = get_option('mfx-modules-dir')
if libmfx_modules_dir == ''
# This "libdir" will be likely wrong but may be fine since libmfx library
# will be installed in the distro default library path as part of libmfx package
# and dispatcher will try to load library from the distro default library path first
libmfx_modules_dir = join_paths(prefix, get_option('libdir'))
endif
libmfx_extra_args += ['-DMFX_MODULES_DIR="@0@"'.format(libmfx_modules_dir)]
libmfx_extra_deps += [
cc.find_library('dl'),
cc.find_library('pthread'),
]
else
error('Only Windows or Linux build is supported')
endif
# suppress build warnings
if cc.get_id() == 'msvc'
libmfx_extra_args += cc.get_supported_arguments([
'/wd4189', # local variable is initialized but not referenced
])
else
libmfx_extra_args += cc.get_supported_arguments([
'-Wno-missing-declarations',
'-Wno-deprecated-declarations',
'-Wno-redundant-decls',
'-Wno-unused-but-set-variable',
'-Wno-unused-variable',
# clang complains
'-Wno-missing-braces',
'-Wno-format-nonliteral',
])
endif
libmfx_incl = include_directories('dispatcher', 'api')
libmfx_static = static_library('libmfx-static',
libmfx_sources,
c_args : libmfx_extra_args,
cpp_args : libmfx_extra_args,
dependencies : libmfx_extra_deps,
include_directories : libmfx_incl
)
libmfx_internal_dep = declare_dependency(
link_with : libmfx_static,
include_directories: [libmfx_incl, include_directories('api/vpl')]
)