mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
5e728ee5b5
Split plugin into features including dynamic types which can be indiviually registered during a static build. More details here: https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199 https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/1029>
25 lines
764 B
Meson
25 lines
764 B
Meson
opus_sources = [
|
|
'gstopus.c',
|
|
'gstopuselement.c',
|
|
'gstopuscommon.c',
|
|
'gstopusdec.c',
|
|
'gstopusenc.c',
|
|
'gstopusheader.c',
|
|
]
|
|
|
|
opus_dep = dependency('opus', version: '>= 0.9.4', required: get_option('opus'),
|
|
fallback: ['opus', 'opus_dep'], default_options: ['docs=disabled'])
|
|
|
|
if opus_dep.found()
|
|
gstopus = library('gstopus',
|
|
opus_sources,
|
|
c_args : gst_plugins_base_args,
|
|
link_args : noseh_link_args,
|
|
include_directories: [configinc, libsinc],
|
|
dependencies : glib_deps + [pbutils_dep, tag_dep, audio_dep, gst_dep, gst_base_dep, opus_dep, libm],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
pkgconfig.generate(gstopus, install_dir : plugins_pkgconfig_install_dir)
|
|
plugins += [gstopus]
|
|
endif
|