mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-16 03:05:32 +00:00
35 lines
785 B
Meson
35 lines
785 B
Meson
opus_sources = [
|
|
'gstopus.c',
|
|
'gstopusheader.c',
|
|
'gstopusparse.c',
|
|
]
|
|
|
|
opus_headers = [
|
|
'gstopusheader.h',
|
|
'gstopusparse.h',
|
|
]
|
|
|
|
doc_sources = []
|
|
foreach s: opus_sources + opus_headers
|
|
doc_sources += meson.current_source_dir() / s
|
|
endforeach
|
|
|
|
plugin_sources += {
|
|
'opusparse': pathsep.join(doc_sources)
|
|
}
|
|
|
|
opus_dep = dependency('opus', version : '>= 0.9.4', required : get_option('opus'))
|
|
|
|
if opus_dep.found()
|
|
gstopus = library('gstopusparse',
|
|
opus_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
link_args : noseh_link_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstrtp_dep, gstpbutils_dep, gstaudio_dep,
|
|
gsttag_dep, opus_dep, libm],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
plugins += [gstopus]
|
|
endif
|