Changes in / [f55630c:439ba7b]


Ignore:
Files:
7 added
6 edited

Legend:

Unmodified
Added
Removed
  • .travis.yml

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

    rf55630c r439ba7b  
    2121    'method': '"default"',
    2222    'uri': '"none"',
     23    'transpose': '0.',
    2324    }
    2425
     
    8485        'filterbank': 'self->n_filters',
    8586        'tss': 'self->buf_size',
     87        'pitchshift': 'self->hop_size',
    8688        'dct': 'self->size',
    8789        }
     
    9799        'wavetable': 'self->hop_size',
    98100        'tss': 'self->buf_size / 2 + 1',
     101        'pitchshift': 'self->hop_size',
    99102        }
    100103
     
    291294        if p['type'] == 'char_t*':
    292295            return self.check_valid_char(p)
     296        if p['type'] == 'smpl_t':
     297            return self.check_valid_smpl(p)
    293298        else:
    294299            print ("ERROR, no idea how to check %s for validity" % p['type'])
     
    311316    self->{name} = {defval};
    312317    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.) {{
    313327        self->{name} = {name};
    314328    }}
  • python/lib/moresetuptools.py

    rf55630c r439ba7b  
    7979    packages = ['libavcodec', 'libavformat', 'libavutil',
    8080                'libswresample', 'libavresample',
     81                'jack',
    8182                'sndfile',
     83                'rubberband',
    8284                #'fftw3f',
    8385               ]
     
    101103    if 'samplerate' in ext.libraries:
    102104        ext.define_macros += [('HAVE_SAMPLERATE', 1)]
     105    if 'rubberband' in ext.libraries:
     106        ext.define_macros += [('HAVE_RUBBERBAND', 1)]
    103107    if 'fftw3f' in ext.libraries:
    104108        ext.define_macros += [('HAVE_FFTW3F', 1)]
  • src/aubio.h

    rf55630c r439ba7b  
    221221#include "pitch/pitchspecacf.h"
    222222#include "tempo/beattracking.h"
     223#include "effects/pitchshift.h"
    223224#include "utils/scale.h"
    224225#include "utils/hist.h"
  • src/wscript_build

    rf55630c r439ba7b  
    77uselib += ['SAMPLERATE']
    88uselib += ['SNDFILE']
     9uselib += ['RUBBERBAND']
    910uselib += ['AVCODEC']
    1011uselib += ['AVFORMAT']
  • wscript

    rf55630c r439ba7b  
    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')
    7275    add_option_enable_disable(ctx, 'memcpy', default = True,
    7376            help_str = 'use memcpy hacks (default)',
     
    381384                args = '--cflags --libs samplerate >= 0.0.15',
    382385                mandatory = ctx.options.enable_samplerate)
     386
     387    # check for librubberband
     388    if (ctx.options.enable_rubberband != False):
     389        ctx.check_cfg(package = 'rubberband', atleast_version = '1.3',
     390                args = '--cflags --libs',
     391                mandatory = ctx.options.enable_rubberband)
    383392
    384393    # check for jack
Note: See TracChangeset for help on using the changeset viewer.