2016-08-12 15:51:45 +00:00
|
|
|
audiomixer_sources = [
|
|
|
|
'gstaudiomixer.c',
|
|
|
|
'gstaudiointerleave.c',
|
|
|
|
]
|
|
|
|
|
|
|
|
orcsrc = 'gstaudiomixerorc'
|
|
|
|
if have_orcc
|
|
|
|
orc_h = custom_target(orcsrc + '.h',
|
|
|
|
input : orcsrc + '.orc',
|
|
|
|
output : orcsrc + '.h',
|
|
|
|
command : orcc_args + ['--header', '-o', '@OUTPUT@', '@INPUT@'])
|
|
|
|
orc_c = custom_target(orcsrc + '.c',
|
|
|
|
input : orcsrc + '.orc',
|
|
|
|
output : orcsrc + '.c',
|
|
|
|
command : orcc_args + ['--implementation', '-o', '@OUTPUT@', '@INPUT@'])
|
|
|
|
else
|
|
|
|
orc_h = configure_file(input : orcsrc + '-dist.h',
|
|
|
|
output : orcsrc + '.h',
|
2018-09-27 12:21:14 +00:00
|
|
|
copy : true)
|
2016-08-12 15:51:45 +00:00
|
|
|
orc_c = configure_file(input : orcsrc + '-dist.c',
|
|
|
|
output : orcsrc + '.c',
|
2018-09-27 12:21:14 +00:00
|
|
|
copy : true)
|
2016-08-12 15:51:45 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
gstaudiomixer = library('gstaudiomixer',
|
|
|
|
audiomixer_sources, orc_c, orc_h,
|
2018-02-13 16:38:32 +00:00
|
|
|
c_args : gst_plugins_base_args,
|
2016-08-12 15:51:45 +00:00
|
|
|
include_directories : [configinc],
|
2018-02-13 16:38:32 +00:00
|
|
|
dependencies : [audio_dep, gst_base_dep, orc_dep],
|
2016-08-12 15:51:45 +00:00
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
2018-04-24 18:05:57 +00:00
|
|
|
pkgconfig.generate(gstaudiomixer, install_dir : plugins_pkgconfig_install_dir)
|
2018-10-22 06:17:24 +00:00
|
|
|
plugins += [gstaudiomixer]
|