Changes in / [633400d:f19db54]
- Files:
-
- 7 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified .travis.yml ¶
r633400d rf19db54 34 34 os: osx 35 35 compiler: clang 36 env: WAFOPTS="--enable-fat --disable-avcodec --disable-sndfile --disable-samplerate --disable-rubberband"36 env: WAFOPTS="--enable-fat --disable-avcodec --disable-sndfile" 37 37 - language: C 38 38 os: osx … … 61 61 - libasound2-dev 62 62 - libfftw3-dev 63 - librubberband-dev64 63 - sox 65 64 - lcov … … 69 68 - ffmpeg 70 69 - libsndfile 71 - libsamplerate72 - rubberband73 70 - lcov 74 71 #update: true -
TabularUnified python/lib/gen_code.py ¶
r633400d rf19db54 21 21 'method': '"default"', 22 22 'uri': '"none"', 23 'transpose': '0.',24 23 } 25 24 … … 85 84 'filterbank': 'self->n_filters', 86 85 'tss': 'self->buf_size', 87 'pitchshift': 'self->hop_size',88 86 'dct': 'self->size', 89 87 } … … 99 97 'wavetable': 'self->hop_size', 100 98 'tss': 'self->buf_size / 2 + 1', 101 'pitchshift': 'self->hop_size',102 99 } 103 100 … … 284 281 if p['type'] == 'char_t*': 285 282 return self.check_valid_char(p) 286 if p['type'] == 'smpl_t':287 return self.check_valid_smpl(p)288 283 else: 289 284 print ("ERROR, no idea how to check %s for validity" % p['type']) … … 306 301 self->{name} = {defval}; 307 302 if ({name} != NULL) {{ 308 self->{name} = {name};309 }}310 """.format(defval = aubiodefvalue[name], name = name)311 312 def check_valid_smpl(self, p):313 name = p['name']314 return """315 self->{name} = {defval};316 if ({name} != 0.) {{317 303 self->{name} = {name}; 318 304 }} -
TabularUnified python/lib/moresetuptools.py ¶
r633400d rf19db54 79 79 packages = ['libavcodec', 'libavformat', 'libavutil', 80 80 'libswresample', 'libavresample', 81 'jack',82 81 'sndfile', 83 'rubberband',84 82 #'fftw3f', 85 83 ] … … 103 101 if 'samplerate' in ext.libraries: 104 102 ext.define_macros += [('HAVE_SAMPLERATE', 1)] 105 if 'rubberband' in ext.libraries:106 ext.define_macros += [('HAVE_RUBBERBAND', 1)]107 103 if 'fftw3f' in ext.libraries: 108 104 ext.define_macros += [('HAVE_FFTW3F', 1)] -
TabularUnified src/aubio.h ¶
r633400d rf19db54 221 221 #include "pitch/pitchspecacf.h" 222 222 #include "tempo/beattracking.h" 223 #include "effects/pitchshift.h"224 223 #include "utils/scale.h" 225 224 #include "utils/hist.h" -
TabularUnified src/wscript_build ¶
r633400d rf19db54 7 7 uselib += ['SAMPLERATE'] 8 8 uselib += ['SNDFILE'] 9 uselib += ['RUBBERBAND']10 9 uselib += ['AVCODEC'] 11 10 uselib += ['AVFORMAT'] -
TabularUnified wscript ¶
r633400d rf19db54 70 70 help_str = 'compile with samplerate (auto)', 71 71 help_disable_str = 'disable samplerate') 72 add_option_enable_disable(ctx, 'rubberband', default = None,73 help_str = 'compile with rubberband (auto)',74 help_disable_str = 'disable rubberband')75 72 add_option_enable_disable(ctx, 'memcpy', default = True, 76 73 help_str = 'use memcpy hacks (default)', … … 383 380 args = '--cflags --libs samplerate >= 0.0.15', 384 381 mandatory = ctx.options.enable_samplerate) 385 386 # check for librubberband387 if (ctx.options.enable_rubberband != False):388 ctx.check_cfg(package = 'rubberband', atleast_version = '1.3',389 args = '--cflags --libs',390 mandatory = ctx.options.enable_rubberband)391 382 392 383 # check for jack
Note: See TracChangeset
for help on using the changeset viewer.