summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-09-04 21:51:54 +0100
committerCarl Hetherington <cth@carlh.net>2015-09-05 00:25:08 +0100
commitf227d182fa5a829fdeabf9eca8f33da5ce7f4e0d (patch)
tree753bbb75ed9a41d5b01967a2c16667285abae42a /wscript
parentaf7196df44dc81c7ab48486ca270f4036fb8bbfd (diff)
Use libsamplerate for resampling instead of FFmpeg / libsoxr.
libsoxr was crashing on Windows and seems somewhat unmaintained.
Diffstat (limited to 'wscript')
-rw-r--r--wscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/wscript b/wscript
index d77fadb8e..18409fe01 100644
--- a/wscript
+++ b/wscript
@@ -163,6 +163,9 @@ def configure(conf):
# libsndfile
conf.check_cfg(package='sndfile', args='--cflags --libs', uselib_store='SNDFILE', mandatory=True)
+ # libsamplerate
+ conf.check_cfg(package='samplerate', args='--cflags --libs', uselib_store='SAMPLERATE', mandatory=True)
+
# glib
conf.check_cfg(package='glib-2.0', args='--cflags --libs', uselib_store='GLIB', mandatory=True)