Changes in / [4c9aa80:7889d29]


Ignore:
Files:
11 deleted
7 edited

Legend:

Unmodified
Added
Removed
  • .travis.yml

    r4c9aa80 r7889d29  
    3939      os: osx
    4040      compiler: clang
    41       env: WAFOPTS="--enable-fat --disable-avcodec --disable-sndfile --disable-samplerate --disable-rubberband"
     41      env: WAFOPTS="--enable-fat --disable-avcodec --disable-sndfile --disable-samplerate"
    4242    - language: C
    4343      os: osx
    4444      compiler: clang
    45       env: WAFOPTS="--with-target-platform=ios --disable-avcodec --disable-sndfile --disable-samplerate --disable-rubberband" AUBIO_NOTESTS=1
     45      env: WAFOPTS="--with-target-platform=ios --disable-avcodec --disable-sndfile --disable-samplerate" AUBIO_NOTESTS=1
    4646    - language: C
    4747      os: osx
    4848      compiler: clang
    49       env: WAFOPTS="--with-target-platform=iosimulator --disable-avcodec --disable-sndfile --disable-samplerate --disable-rubberband" AUBIO_NOTESTS=1
     49      env: WAFOPTS="--with-target-platform=iosimulator --disable-avcodec --disable-sndfile --disable-samplerate" AUBIO_NOTESTS=1
    5050
    5151# use trusty
     
    6666    - libasound2-dev
    6767    - libfftw3-dev
    68     - librubberband-dev
    6968    - sox
    7069    - lcov
     
    7473    - ffmpeg
    7574    - libsndfile
    76     - libsamplerate
    77     - rubberband
    7875    - lcov
    7976    update: true
  • python/lib/gen_code.py

    r4c9aa80 r7889d29  
    2121    'method': '"default"',
    2222    'uri': '"none"',
    23     'transpose': '0.',
    2423    }
    2524
     
    8584        'filterbank': 'self->n_filters',
    8685        'tss': 'self->buf_size',
    87         'pitchshift': 'self->hop_size',
    8886        'dct': 'self->size',
    8987        }
     
    9997        'wavetable': 'self->hop_size',
    10098        'tss': 'self->buf_size / 2 + 1',
    101         'pitchshift': 'self->hop_size',
    10299        }
    103100
     
    294291        if p['type'] == 'char_t*':
    295292            return self.check_valid_char(p)
    296         if p['type'] == 'smpl_t':
    297             return self.check_valid_smpl(p)
    298293        else:
    299294            print ("ERROR, no idea how to check %s for validity" % p['type'])
     
    316311    self->{name} = {defval};
    317312    if ({name} != NULL) {{
    318         self->{name} = {name};
    319     }}
    320 """.format(defval = aubiodefvalue[name], name = name)
    321 
    322     def check_valid_smpl(self, p):
    323         name = p['name']
    324         return """
    325     self->{name} = {defval};
    326     if ({name} != 0.) {{
    327313        self->{name} = {name};
    328314    }}
  • python/lib/gen_external.py

    r4c9aa80 r7889d29  
    4747    'audio_unit',
    4848    'spectral_whitening',
    49     'timestretch', # TODO fix parsing of uint_t *read in _do
    5049]
    5150
  • python/lib/moresetuptools.py

    r4c9aa80 r7889d29  
    7979    packages = ['libavcodec', 'libavformat', 'libavutil',
    8080                'libswresample', 'libavresample',
    81                 'jack',
    8281                'sndfile',
    83                 'rubberband',
    8482                #'fftw3f',
    8583               ]
     
    103101    if 'samplerate' in ext.libraries:
    104102        ext.define_macros += [('HAVE_SAMPLERATE', 1)]
    105     if 'rubberband' in ext.libraries:
    106         ext.define_macros += [('HAVE_RUBBERBAND', 1)]
    107103    if 'fftw3f' in ext.libraries:
    108104        ext.define_macros += [('HAVE_FFTW3F', 1)]
  • src/aubio.h

    r4c9aa80 r7889d29  
    221221#include "pitch/pitchspecacf.h"
    222222#include "tempo/beattracking.h"
    223 #include "effects/pitchshift.h"
    224 #include "effects/timestretch.h"
    225223#include "utils/scale.h"
    226224#include "utils/hist.h"
  • src/wscript_build

    r4c9aa80 r7889d29  
    77uselib += ['SAMPLERATE']
    88uselib += ['SNDFILE']
    9 uselib += ['RUBBERBAND']
    109uselib += ['AVCODEC']
    1110uselib += ['AVFORMAT']
  • wscript

    r4c9aa80 r7889d29  
    7373            help_str = 'compile with samplerate (auto)',
    7474            help_disable_str = 'disable samplerate')
    75     add_option_enable_disable(ctx, 'rubberband', default = None,
    76             help_str = 'compile with rubberband (auto)',
    77             help_disable_str = 'disable rubberband')
    7875    add_option_enable_disable(ctx, 'memcpy', default = True,
    7976            help_str = 'use memcpy hacks (default)',
     
    387384                args = '--cflags --libs samplerate >= 0.0.15',
    388385                mandatory = ctx.options.enable_samplerate)
    389 
    390     # check for librubberband
    391     if (ctx.options.enable_rubberband != False):
    392         ctx.check_cfg(package = 'rubberband', atleast_version = '1.3',
    393                 args = '--cflags --libs',
    394                 mandatory = ctx.options.enable_rubberband)
    395386
    396387    # check for jack
Note: See TracChangeset for help on using the changeset viewer.