Changes in / [d1decd5:7c9285f]
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
rd1decd5 r7c9285f 13 13 14 14 # ignore compiled test programs 15 RE:tests/src/test-[a-z _-]*$16 RE:tests/cpp/test-[a-z _-]*$15 RE:tests/src/test-[a-z-_]*$ 16 RE:tests/cpp/test-[a-z-_]*$ 17 17 18 18 # only sgml manpages count -
.travis.yml
rd1decd5 r7c9285f 11 11 os: linux 12 12 env: WAFOPTS="--build-type=debug" 13 - name: "Linux (Python 2.7 , nodeps)"13 - name: "Linux (Python 2.7)" 14 14 python: 2.7 15 15 os: linux 16 16 distro: trusty 17 env: WAFOPTS="--nodeps"18 17 - name: "Linux (Python pypy3.5)" 19 18 language: python 20 19 python: "pypy3.5" 21 20 os: linux 22 - name: "Linux ( double, fftw3)"21 - name: "Linux (fftw3, no other deps)" 23 22 python: 3.8 24 23 os: linux 25 env: HAVE_AUBIO_DOUBLE=1 CFLAGS="-O3" WAFOPTS="--enable-fftw3 "24 env: HAVE_AUBIO_DOUBLE=1 CFLAGS="-O3" WAFOPTS="--enable-fftw3 --disable-avcodec --disable-sndfile --disable-samplerate --disable-rubberband" 26 25 - name: "Linux (default, dpkg-buildflags)" 27 26 os: linux … … 42 41 os: osx 43 42 osx_image: xcode10 44 env: CFLAGS="-Os" HAVE_AUBIO_DOUBLE=1 WAFOPTS="--disable-accelerate -- nodeps"43 env: CFLAGS="-Os" HAVE_AUBIO_DOUBLE=1 WAFOPTS="--disable-accelerate --disable-avcodec --disable-sndfile --disable-samplerate --disable-rubberband" 45 44 - name: "iOS" 46 45 language: shell 47 46 os: osx 48 env: WAFOPTS="--with-target-platform=ios -- nodeps" AUBIO_NOTESTS=147 env: WAFOPTS="--with-target-platform=ios --disable-avcodec --disable-sndfile --disable-samplerate --disable-rubberband" AUBIO_NOTESTS=1 49 48 - name: "iOSSimulator" 50 49 language: shell 51 50 os: osx 52 env: WAFOPTS="--with-target-platform=iosimulator -- nodeps" AUBIO_NOTESTS=151 env: WAFOPTS="--with-target-platform=iosimulator --disable-avcodec --disable-sndfile --disable-samplerate --disable-rubberband" AUBIO_NOTESTS=1 53 52 54 53 # - name: "Windows (Python 3.8.0, lib only)" -
Makefile
rd1decd5 r7c9285f 184 184 -$(SOX) -r 32000 -b 16 -n "$(TESTSOUNDS)/32000Hz_127f_sine440.wav" synth 127s sine 440 vol 0.9 185 185 -$(SOX) -r 8000 -b 16 -n "$(TESTSOUNDS)/8000Hz_30s_silence.wav" trim 0 30 186 -$(SOX) -r 48000 -b 16-n "$(TESTSOUNDS)/48000Hz_60s_sweep.wav" synth 60 sine 100-20000 vol 0.9186 -$(SOX) -r 48000 -b 32 -n "$(TESTSOUNDS)/48000Hz_60s_sweep.wav" synth 60 sine 100-20000 vol 0.9 187 187 -$(SOX) -r 44100 -b 16 -n "$(TESTSOUNDS)/44100Hz_44100f_sine441.wav" synth 44100s sine 441 vol 0.9 188 188 -$(SOX) -r 44100 -b 16 -n "$(TESTSOUNDS)/44100Hz_100f_sine441.wav" synth 100s sine 441 vol 0.9 -
doc/requirements.rst
rd1decd5 r7c9285f 31 31 If ``pkg-config`` is not found in ``PATH``, the configure step will 32 32 succeed, but none of the external libraries will be used. 33 34 To build aubio with no external libraries, use the ``--nodeps`` build option.35 33 36 34 Media libraries -
python/demos/demo_pitch.py
rd1decd5 r7c9285f 98 98 ax3.plot(times, [tolerance]*len(confidences)) 99 99 ax3.axis( xmin = times[0], xmax = times[-1]) 100 ax3.set_ylabel('con fidence')100 ax3.set_ylabel('condidence') 101 101 set_xlabels_sample2time(ax3, times[-1], samplerate) 102 102 plt.show() -
src/musicutils.h
rd1decd5 r7c9285f 241 241 \param threshold threshold in dB SPL 242 242 243 \return 1 if level is under the given threshold, 0otherwise243 \return 0 if level is under the given threshold, 1 otherwise 244 244 245 245 */ -
wscript
rd1decd5 r7c9285f 49 49 dest = 'build_type', const = 'debug', 50 50 help = 'build in debug mode (see --build-type)') 51 ctx.add_option('--nodeps', action = 'store_const',52 dest = 'nodeps', const = 'debug',53 help = 'build with no external dependencies')54 51 add_option_enable_disable(ctx, 'fftw3f', default = False, 55 52 help_str = 'compile with fftw3f instead of ooura (recommended)', … … 133 130 target_platform = ctx.options.target_platform 134 131 135 if ctx.options.nodeps:136 external_deps = [137 'sndfile',138 'samplerate',139 'jack',140 'avcodec',141 'blas',142 'fftw3',143 'fftw3f',144 ]145 for d in external_deps:146 if not hasattr(ctx.options, 'enable_' + d):147 raise ctx.errors.ConfigurationError ('--enable-%s missing from options' % d)148 if getattr(ctx.options, 'enable_' + d) == True:149 msg = 'Option --nodeps can not be used along with --enable-%s' % d150 raise ctx.errors.ConfigurationError (msg)151 elif getattr(ctx.options, 'enable_' + d) is None:152 msg = 'Option --nodeps used but automatic detection with --enable-%s' % d153 ctx.msg('Warning', msg)154 setattr(ctx.options, 'enable_' + d, False)155 156 132 from waflib import Options 157 133
Note: See TracChangeset
for help on using the changeset viewer.