From: Paul Brossier Date: Sun, 4 Oct 2009 22:31:37 +0000 (+0200) Subject: swig/aubio.i: update set_a,c_weighting prototypes X-Git-Tag: bzr2git~214 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=eebb0e1fce66faaafa201ea5292ad014e743a53e;p=aubio.git swig/aubio.i: update set_a,c_weighting prototypes --- diff --git a/swig/aubio.i b/swig/aubio.i index 3a437fa9..2ceca64a 100644 --- a/swig/aubio.i +++ b/swig/aubio.i @@ -94,10 +94,10 @@ extern void aubio_filter_do_filtfilt(aubio_filter_t * b, fvec_t * in, fvec_t * t extern void del_aubio_filter(aubio_filter_t * b); extern aubio_filter_t * new_aubio_filter_a_weighting (uint_t samplerate, uint_t channels); -extern void aubio_filter_set_a_weighting (aubio_filter_t * b); +extern uint_t aubio_filter_set_a_weighting (aubio_filter_t * b); extern aubio_filter_t * new_aubio_filter_c_weighting (uint_t samplerate, uint_t channels); -extern void aubio_filter_set_c_weighting (aubio_filter_t * b); +extern uint_t aubio_filter_set_c_weighting (aubio_filter_t * b); /* biquad */ extern aubio_biquad_t * new_aubio_biquad(lsmp_t b1, lsmp_t b2, lsmp_t b3, lsmp_t a2, lsmp_t a3);