Changes in / [633400d:f19db54]


Ignore:
Files:
7 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified .travis.yml

    r633400d rf19db54  
    3434      os: osx
    3535      compiler: clang
    36       env: WAFOPTS="--enable-fat --disable-avcodec --disable-sndfile --disable-samplerate --disable-rubberband"
     36      env: WAFOPTS="--enable-fat --disable-avcodec --disable-sndfile"
    3737    - language: C
    3838      os: osx
     
    6161    - libasound2-dev
    6262    - libfftw3-dev
    63     - librubberband-dev
    6463    - sox
    6564    - lcov
     
    6968    - ffmpeg
    7069    - libsndfile
    71     - libsamplerate
    72     - rubberband
    7370    - lcov
    7471    #update: true
  • TabularUnified python/lib/gen_code.py

    r633400d rf19db54  
    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
     
    284281        if p['type'] == 'char_t*':
    285282            return self.check_valid_char(p)
    286         if p['type'] == 'smpl_t':
    287             return self.check_valid_smpl(p)
    288283        else:
    289284            print ("ERROR, no idea how to check %s for validity" % p['type'])
     
    306301    self->{name} = {defval};
    307302    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.) {{
    317303        self->{name} = {name};
    318304    }}
  • TabularUnified python/lib/moresetuptools.py

    r633400d rf19db54  
    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)]
  • TabularUnified src/aubio.h

    r633400d rf19db54  
    221221#include "pitch/pitchspecacf.h"
    222222#include "tempo/beattracking.h"
    223 #include "effects/pitchshift.h"
    224223#include "utils/scale.h"
    225224#include "utils/hist.h"
  • TabularUnified src/wscript_build

    r633400d rf19db54  
    77uselib += ['SAMPLERATE']
    88uselib += ['SNDFILE']
    9 uselib += ['RUBBERBAND']
    109uselib += ['AVCODEC']
    1110uselib += ['AVFORMAT']
  • TabularUnified wscript

    r633400d rf19db54  
    7070            help_str = 'compile with samplerate (auto)',
    7171            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')
    7572    add_option_enable_disable(ctx, 'memcpy', default = True,
    7673            help_str = 'use memcpy hacks (default)',
     
    383380                args = '--cflags --libs samplerate >= 0.0.15',
    384381                mandatory = ctx.options.enable_samplerate)
    385 
    386     # check for librubberband
    387     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)
    391382
    392383    # check for jack
Note: See TracChangeset for help on using the changeset viewer.