2016-08-12 15:51:45 +00:00
|
|
|
opus_sources = [
|
|
|
|
'gstopus.c',
|
|
|
|
'gstopusheader.c',
|
|
|
|
'gstopusparse.c',
|
|
|
|
]
|
|
|
|
|
2018-07-27 13:29:23 +00:00
|
|
|
opus_dep = dependency('opus', version : '>= 0.9.4', required : get_option('opus'))
|
2016-08-12 15:51:45 +00:00
|
|
|
|
|
|
|
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,
|
|
|
|
)
|
2018-04-24 18:05:30 +00:00
|
|
|
pkgconfig.generate(gstopus, install_dir : plugins_pkgconfig_install_dir)
|
2018-10-22 09:30:45 +00:00
|
|
|
plugins += [gstopus]
|
2016-08-12 15:51:45 +00:00
|
|
|
endif
|