2016-08-12 15:51:45 +00:00
|
|
|
soundtouch_sources = [
|
|
|
|
'plugin.c',
|
|
|
|
'gstpitch.cc',
|
|
|
|
'gstbpmdetect.cc',
|
|
|
|
]
|
|
|
|
|
|
|
|
soundtouch_cargs = ['-DHAVE_SOUNDTOUCH']
|
2018-07-27 13:29:23 +00:00
|
|
|
if get_option('soundtouch').disabled()
|
|
|
|
subdir_done()
|
|
|
|
endif
|
2016-08-12 15:51:45 +00:00
|
|
|
|
2018-11-12 10:23:37 +00:00
|
|
|
if not gnustl_dep.found() and get_option('soundtouch').enabled()
|
|
|
|
error('soundtouch plugin enabled but could not find gnustl dep for Android c++ support')
|
|
|
|
endif
|
|
|
|
|
2016-08-12 15:51:45 +00:00
|
|
|
soundtouch_dep = dependency('soundtouch', required : false)
|
|
|
|
if soundtouch_dep.found()
|
|
|
|
soundtouch_cargs += ['-DHAVE_SOUNDTOUCH_1_4']
|
|
|
|
else
|
|
|
|
soundtouch_dep = dependency('soundtouch-1.4', required : false)
|
|
|
|
if soundtouch_dep.found()
|
|
|
|
soundtouch_cargs += ['-DHAVE_SOUNDTOUCH_1_4']
|
|
|
|
else
|
|
|
|
soundtouch_dep = dependency('soundtouch-1.0', required : false)
|
|
|
|
# NOTE: I removed the checks for libSoundTouch.pc and so on.
|
|
|
|
# Add them back once we know which distros use them.
|
|
|
|
endif
|
|
|
|
endif
|
2018-07-27 13:29:23 +00:00
|
|
|
if not soundtouch_dep.found() and get_option('soundtouch').enabled()
|
|
|
|
error('soundtouch plugin enabled but soundtouch library not found')
|
|
|
|
endif
|
2016-08-12 15:51:45 +00:00
|
|
|
|
|
|
|
if soundtouch_dep.found()
|
|
|
|
gstsoundtouch = library('gstsoundtouch',
|
|
|
|
soundtouch_sources,
|
|
|
|
c_args : gst_plugins_bad_args + soundtouch_cargs,
|
|
|
|
cpp_args : gst_plugins_bad_args + soundtouch_cargs,
|
|
|
|
include_directories : [configinc],
|
2018-11-12 10:23:37 +00:00
|
|
|
dependencies : [gstaudio_dep, soundtouch_dep, gnustl_dep],
|
2016-08-12 15:51:45 +00:00
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir)
|
2018-04-24 18:05:30 +00:00
|
|
|
pkgconfig.generate(gstsoundtouch, install_dir : plugins_pkgconfig_install_dir)
|
2018-10-22 09:30:45 +00:00
|
|
|
plugins += [gstsoundtouch]
|
2016-08-12 15:51:45 +00:00
|
|
|
endif
|