From: Paul Brossier Date: Fri, 18 Sep 2009 00:56:10 +0000 (+0200) Subject: swig/aubio.i: update new_aubio_mfcc prototype X-Git-Tag: bzr2git~335 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=adcf4056210cbddb6978f7aaad37d82e4e1b151e;p=aubio.git swig/aubio.i: update new_aubio_mfcc prototype --- diff --git a/swig/aubio.i b/swig/aubio.i index cdc0832a..261c4afe 100644 --- a/swig/aubio.i +++ b/swig/aubio.i @@ -169,7 +169,7 @@ void aubio_filterbank_do(aubio_filterbank_t * fb, cvec_t * in, fvec_t *out); fvec_t * aubio_filterbank_get_coeffs(aubio_filterbank_t * fb); /* mfcc */ -aubio_mfcc_t * new_aubio_mfcc (uint_t win_s, uint_t samplerate, uint_t n_filters, uint_t n_coefs, smpl_t lowfreq, smpl_t highfreq, uint_t channels); +aubio_mfcc_t * new_aubio_mfcc (uint_t win_s, uint_t samplerate, uint_t n_filters, uint_t n_coefs); void del_aubio_mfcc(aubio_mfcc_t *mf); void aubio_mfcc_do(aubio_mfcc_t *mf, cvec_t *in, fvec_t *out);