gstreamer/ext/svthevcenc/meson.build
Yeongjin Jeong 663aeb2131 svthevcenc: Add new SVT-HEVC encoder element
The SVT-HEVC (Scalable Video Technology[0] for HEVC) Encoder is an
open source video coding technology[1] that is highly optimized for
Intel Xeon Scalable processors and Intel Xeon D processors.

[0] https://01.org/svt
[1] https://github.com/OpenVisualCloud/SVT-HEVC
2019-12-20 15:43:55 +00:00

19 lines
624 B
Meson

svthevcenc_sources = [
'gstsvthevcenc.c',
]
svthevcenc_dep = dependency('SvtHevcEnc', version : '>= 1.4.1', required: get_option('svthevcenc'))
if svthevcenc_dep.found()
gstsvthevcenc = library('gstsvthevcenc',
svthevcenc_sources,
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
include_directories : [configinc],
dependencies : [gstbase_dep, gstpbutils_dep, gstvideo_dep, gstcodecparsers_dep, svthevcenc_dep],
install : true,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstsvthevcenc, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstsvthevcenc]
endif