[96fb8ad] | 1 | %module aubiowrapper |
---|
| 2 | |
---|
| 3 | %{ |
---|
| 4 | #include "aubio.h" |
---|
[205da86] | 5 | #include "aubioext.h" |
---|
[96fb8ad] | 6 | %} |
---|
| 7 | |
---|
| 8 | #include "aubio.h" |
---|
[205da86] | 9 | #include "aubioext.h" |
---|
[96fb8ad] | 10 | |
---|
| 11 | /* type aliases */ |
---|
| 12 | typedef unsigned int uint_t; |
---|
| 13 | typedef int sint_t; |
---|
| 14 | typedef float smpl_t; |
---|
| 15 | |
---|
| 16 | /* fvec */ |
---|
| 17 | extern fvec_t * new_fvec(uint_t length, uint_t channels); |
---|
| 18 | extern void del_fvec(fvec_t *s); |
---|
| 19 | smpl_t fvec_read_sample(fvec_t *s, uint_t channel, uint_t position); |
---|
| 20 | void fvec_write_sample(fvec_t *s, smpl_t data, uint_t channel, uint_t position); |
---|
| 21 | smpl_t * fvec_get_channel(fvec_t *s, uint_t channel); |
---|
| 22 | void fvec_put_channel(fvec_t *s, smpl_t * data, uint_t channel); |
---|
| 23 | smpl_t ** fvec_get_data(fvec_t *s); |
---|
| 24 | |
---|
| 25 | /* another way, passing -c++ option to swig */ |
---|
| 26 | /* |
---|
| 27 | class fvec_t{ |
---|
| 28 | public: |
---|
| 29 | %extend { |
---|
| 30 | fvec_t(uint_t length, uint_t channels){ |
---|
| 31 | return new_fvec(length, channels); |
---|
| 32 | } |
---|
| 33 | ~fvec_t() { |
---|
| 34 | del_fvec(self); |
---|
| 35 | } |
---|
| 36 | smpl_t get( uint_t channel, uint_t position) { |
---|
| 37 | return fvec_read_sample(self,channel,position); |
---|
| 38 | } |
---|
| 39 | void set( smpl_t data, uint_t channel, uint_t position) { |
---|
| 40 | fvec_write_sample(self, data, channel, position); |
---|
| 41 | } |
---|
| 42 | #smpl_t * fvec_get_channel(fvec_t *s, uint_t channel); |
---|
| 43 | #void fvec_put_channel(fvec_t *s, smpl_t * data, uint_t channel); |
---|
| 44 | } |
---|
| 45 | }; |
---|
| 46 | */ |
---|
| 47 | |
---|
| 48 | /* cvec */ |
---|
| 49 | extern cvec_t * new_cvec(uint_t length, uint_t channels); |
---|
| 50 | extern void del_cvec(cvec_t *s); |
---|
[7c206df] | 51 | extern void cvec_write_norm(cvec_t *s, smpl_t data, uint_t channel, uint_t position); |
---|
| 52 | extern void cvec_write_phas(cvec_t *s, smpl_t data, uint_t channel, uint_t position); |
---|
| 53 | extern smpl_t cvec_read_norm(cvec_t *s, uint_t channel, uint_t position); |
---|
| 54 | extern smpl_t cvec_read_phas(cvec_t *s, uint_t channel, uint_t position); |
---|
| 55 | extern void cvec_put_norm_channel(cvec_t *s, smpl_t * data, uint_t channel); |
---|
| 56 | extern void cvec_put_phas_channel(cvec_t *s, smpl_t * data, uint_t channel); |
---|
| 57 | extern smpl_t * cvec_get_norm_channel(cvec_t *s, uint_t channel); |
---|
| 58 | extern smpl_t * cvec_get_phas_channel(cvec_t *s, uint_t channel); |
---|
| 59 | extern smpl_t ** cvec_get_norm(cvec_t *s); |
---|
| 60 | extern smpl_t ** cvec_get_phas(cvec_t *s); |
---|
[96fb8ad] | 61 | |
---|
| 62 | |
---|
| 63 | /* sndfile */ |
---|
[9a91031] | 64 | #if HAVE_SNDFILE |
---|
[5e9c68a] | 65 | extern aubio_sndfile_t * new_aubio_sndfile_ro (const char * inputfile); |
---|
| 66 | extern aubio_sndfile_t * new_aubio_sndfile_wo(aubio_sndfile_t * existingfile, const char * outputname); |
---|
| 67 | extern void aubio_sndfile_info(aubio_sndfile_t * file); |
---|
| 68 | extern int aubio_sndfile_write(aubio_sndfile_t * file, int frames, fvec_t * write); |
---|
| 69 | extern int aubio_sndfile_read(aubio_sndfile_t * file, int frames, fvec_t * read); |
---|
| 70 | extern int del_aubio_sndfile(aubio_sndfile_t * file); |
---|
| 71 | extern uint_t aubio_sndfile_channels(aubio_sndfile_t * file); |
---|
| 72 | extern uint_t aubio_sndfile_samplerate(aubio_sndfile_t * file); |
---|
[9a91031] | 73 | #endif /* HAVE_SNDFILE */ |
---|
[96fb8ad] | 74 | |
---|
| 75 | /* fft */ |
---|
[49407f3] | 76 | extern aubio_fft_t * new_aubio_fft(uint_t size, uint_t channels); |
---|
| 77 | extern void del_aubio_fft(aubio_fft_t * s); |
---|
| 78 | extern void aubio_fft_do (aubio_fft_t *s, fvec_t * input, cvec_t * spectrum); |
---|
| 79 | extern void aubio_fft_rdo (aubio_fft_t *s, cvec_t * spectrum, fvec_t * output); |
---|
| 80 | extern void aubio_fft_do_complex (aubio_fft_t *s, fvec_t * input, fvec_t * compspec); |
---|
| 81 | extern void aubio_fft_rdo_complex (aubio_fft_t *s, fvec_t * compspec, fvec_t * output); |
---|
| 82 | extern void aubio_fft_get_spectrum(fvec_t * compspec, cvec_t * spectrum); |
---|
| 83 | extern void aubio_fft_get_realimag(cvec_t * spectrum, fvec_t * compspec); |
---|
| 84 | extern void aubio_fft_get_phas(fvec_t * compspec, cvec_t * spectrum); |
---|
| 85 | extern void aubio_fft_get_imag(cvec_t * spectrum, fvec_t * compspec); |
---|
| 86 | extern void aubio_fft_get_norm(fvec_t * compspec, cvec_t * spectrum); |
---|
| 87 | extern void aubio_fft_get_real(cvec_t * spectrum, fvec_t * compspec); |
---|
[ec10780] | 88 | |
---|
[96fb8ad] | 89 | /* filter */ |
---|
[a7667ce] | 90 | extern aubio_filter_t * new_aubio_filter(uint_t samplerate, uint_t order, uint_t channels); |
---|
[96fb8ad] | 91 | extern void aubio_filter_do(aubio_filter_t * b, fvec_t * in); |
---|
| 92 | extern void aubio_filter_do_outplace(aubio_filter_t * b, fvec_t * in, fvec_t * out); |
---|
| 93 | extern void aubio_filter_do_filtfilt(aubio_filter_t * b, fvec_t * in, fvec_t * tmp); |
---|
[4123f16] | 94 | extern void del_aubio_filter(aubio_filter_t * b); |
---|
| 95 | |
---|
[a7667ce] | 96 | extern aubio_filter_t * new_aubio_adsgn_filter(uint_t samplerate, uint_t channels); |
---|
[4123f16] | 97 | extern void aubio_adsgn_filter_do(aubio_filter_t * b, fvec_t * in); |
---|
| 98 | extern void del_aubio_adsgn_filter(aubio_filter_t * b); |
---|
| 99 | |
---|
[a7667ce] | 100 | extern aubio_filter_t * new_aubio_cdsgn_filter(uint_t samplerate, uint_t channels); |
---|
[4123f16] | 101 | extern void aubio_cdsgn_filter_do(aubio_filter_t * b, fvec_t * in); |
---|
| 102 | extern void del_aubio_cdsgn_filter(aubio_filter_t * b); |
---|
[96fb8ad] | 103 | |
---|
| 104 | /* biquad */ |
---|
| 105 | extern aubio_biquad_t * new_aubio_biquad(lsmp_t b1, lsmp_t b2, lsmp_t b3, lsmp_t a2, lsmp_t a3); |
---|
| 106 | extern void aubio_biquad_do(aubio_biquad_t * b, fvec_t * in); |
---|
| 107 | extern void aubio_biquad_do_filtfilt(aubio_biquad_t * b, fvec_t * in, fvec_t * tmp); |
---|
[055d674] | 108 | extern void del_aubio_biquad(aubio_biquad_t * b); |
---|
[96fb8ad] | 109 | |
---|
| 110 | /* hist */ |
---|
| 111 | extern aubio_hist_t * new_aubio_hist(smpl_t flow, smpl_t fhig, uint_t nelems, uint_t channels); |
---|
| 112 | extern void del_aubio_hist(aubio_hist_t *s); |
---|
| 113 | extern void aubio_hist_do(aubio_hist_t *s, fvec_t * input); |
---|
| 114 | extern void aubio_hist_do_notnull(aubio_hist_t *s, fvec_t * input); |
---|
[49407f3] | 115 | extern void aubio_hist_dyn_notnull(aubio_hist_t *s, fvec_t *input); |
---|
| 116 | extern void aubio_hist_weight(aubio_hist_t *s); |
---|
| 117 | extern smpl_t aubio_hist_mean(aubio_hist_t *s); |
---|
[96fb8ad] | 118 | |
---|
| 119 | /* mathutils */ |
---|
| 120 | typedef enum { |
---|
[b4b0324] | 121 | aubio_win_rectangle, |
---|
| 122 | aubio_win_hamming, |
---|
| 123 | aubio_win_hanning, |
---|
| 124 | aubio_win_hanningz, |
---|
| 125 | aubio_win_blackman, |
---|
| 126 | aubio_win_blackman_harris, |
---|
| 127 | aubio_win_gaussian, |
---|
| 128 | aubio_win_welch, |
---|
| 129 | aubio_win_parzen |
---|
[28d8c4a] | 130 | } aubio_window_type; |
---|
[96fb8ad] | 131 | |
---|
[d84d19e] | 132 | fvec_t * new_aubio_window(uint_t size, aubio_window_type wintype); |
---|
[28d8c4a] | 133 | smpl_t aubio_unwrap2pi (smpl_t phase); |
---|
[96fb8ad] | 134 | smpl_t vec_mean(fvec_t *s); |
---|
| 135 | smpl_t vec_max(fvec_t *s); |
---|
| 136 | smpl_t vec_min(fvec_t *s); |
---|
| 137 | uint_t vec_min_elem(fvec_t *s); |
---|
| 138 | uint_t vec_max_elem(fvec_t *s); |
---|
| 139 | void vec_shift(fvec_t *s); |
---|
| 140 | smpl_t vec_sum(fvec_t *s); |
---|
| 141 | smpl_t vec_local_energy(fvec_t * f); |
---|
| 142 | smpl_t vec_local_hfc(fvec_t * f); |
---|
| 143 | smpl_t vec_alpha_norm(fvec_t * DF, smpl_t alpha); |
---|
| 144 | void vec_dc_removal(fvec_t * mag); |
---|
| 145 | void vec_alpha_normalise(fvec_t * mag, uint_t alpha); |
---|
| 146 | void vec_add(fvec_t * mag, smpl_t threshold); |
---|
| 147 | void vec_adapt_thres(fvec_t * vec, fvec_t * tmp, uint_t post, uint_t pre); |
---|
| 148 | smpl_t vec_moving_thres(fvec_t * vec, fvec_t * tmp, uint_t post, uint_t pre, uint_t pos); |
---|
| 149 | smpl_t vec_median(fvec_t * input); |
---|
[f698997] | 150 | smpl_t vec_quadint(fvec_t * x,uint_t pos, uint_t span); |
---|
[28d8c4a] | 151 | smpl_t aubio_quadfrac(smpl_t s0, smpl_t s1, smpl_t s2, smpl_t pf); |
---|
[96fb8ad] | 152 | uint_t vec_peakpick(fvec_t * input, uint_t pos); |
---|
[28d8c4a] | 153 | smpl_t aubio_bintomidi(smpl_t bin, smpl_t samplerate, smpl_t fftsize); |
---|
[79c2e52] | 154 | smpl_t aubio_miditobin(smpl_t midi, smpl_t samplerate, smpl_t fftsize); |
---|
[28d8c4a] | 155 | smpl_t aubio_bintofreq(smpl_t bin, smpl_t samplerate, smpl_t fftsize); |
---|
[79c2e52] | 156 | smpl_t aubio_freqtobin(smpl_t freq, smpl_t samplerate, smpl_t fftsize); |
---|
[28d8c4a] | 157 | smpl_t aubio_freqtomidi(smpl_t freq); |
---|
[79c2e52] | 158 | smpl_t aubio_miditofreq(smpl_t midi); |
---|
[96fb8ad] | 159 | uint_t aubio_silence_detection(fvec_t * ibuf, smpl_t threshold); |
---|
| 160 | smpl_t aubio_level_detection(fvec_t * ibuf, smpl_t threshold); |
---|
[fe4f78a] | 161 | void aubio_autocorr(fvec_t * in, fvec_t * acf); |
---|
[5507e9d] | 162 | smpl_t aubio_zero_crossing_rate(fvec_t * input); |
---|
[c8b80cd] | 163 | smpl_t aubio_spectral_centroid(cvec_t * spectrum, smpl_t samplerate); |
---|
[96fb8ad] | 164 | |
---|
[bc4ba75] | 165 | /* filterbank */ |
---|
[dc73a4d0] | 166 | aubio_filterbank_t * new_aubio_filterbank(uint_t win_s, uint_t channels); |
---|
[1e37ade] | 167 | void aubio_filterbank_set_mel_coeffs(aubio_filterbank_t *fb, fvec_t *freqs, uint_t samplerate); |
---|
| 168 | void aubio_filterbank_set_mel_coeffs_slaney(aubio_filterbank_t *fb, uint_t samplerate); |
---|
[dc73a4d0] | 169 | void del_aubio_filterbank(aubio_filterbank_t * fb); |
---|
| 170 | void aubio_filterbank_do(aubio_filterbank_t * fb, cvec_t * in, fvec_t *out); |
---|
[06cae6c] | 171 | fvec_t * aubio_filterbank_get_coeffs(aubio_filterbank_t * fb); |
---|
[bc4ba75] | 172 | |
---|
| 173 | /* mfcc */ |
---|
[adcf405] | 174 | aubio_mfcc_t * new_aubio_mfcc (uint_t win_s, uint_t samplerate, uint_t n_filters, uint_t n_coefs); |
---|
[bc4ba75] | 175 | void del_aubio_mfcc(aubio_mfcc_t *mf); |
---|
| 176 | void aubio_mfcc_do(aubio_mfcc_t *mf, cvec_t *in, fvec_t *out); |
---|
| 177 | |
---|
[96fb8ad] | 178 | /* scale */ |
---|
[b061ef8] | 179 | extern aubio_scale_t * new_aubio_scale(smpl_t flow, smpl_t fhig, smpl_t ilow, smpl_t ihig); |
---|
[96fb8ad] | 180 | extern void aubio_scale_set (aubio_scale_t *s, smpl_t ilow, smpl_t ihig, smpl_t olow, smpl_t ohig); |
---|
| 181 | extern void aubio_scale_do(aubio_scale_t *s, fvec_t * input); |
---|
| 182 | extern void del_aubio_scale(aubio_scale_t *s); |
---|
| 183 | |
---|
| 184 | /* resampling */ |
---|
[9a91031] | 185 | #if HAVE_LIBSAMPLERATE |
---|
[96fb8ad] | 186 | extern aubio_resampler_t * new_aubio_resampler(float ratio, uint_t type); |
---|
| 187 | extern uint_t aubio_resampler_process(aubio_resampler_t *s, fvec_t * input, fvec_t * output); |
---|
| 188 | extern void del_aubio_resampler(aubio_resampler_t *s); |
---|
[9a91031] | 189 | #endif /* HAVE_LIBSAMPLERATE */ |
---|
[96fb8ad] | 190 | |
---|
| 191 | /* onset detection */ |
---|
[5cf415f] | 192 | typedef enum { |
---|
| 193 | aubio_onset_energy, |
---|
| 194 | aubio_onset_specdiff, |
---|
| 195 | aubio_onset_hfc, |
---|
| 196 | aubio_onset_complex, |
---|
| 197 | aubio_onset_phase, |
---|
| 198 | aubio_onset_kl, |
---|
[c7f32b1] | 199 | aubio_onset_mkl, |
---|
| 200 | aubio_onset_specflux, |
---|
[5cf415f] | 201 | } aubio_onsetdetection_type; |
---|
[96fb8ad] | 202 | aubio_onsetdetection_t * new_aubio_onsetdetection(aubio_onsetdetection_type type, uint_t size, uint_t channels); |
---|
| 203 | void aubio_onsetdetection(aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset); |
---|
[2a00568] | 204 | void del_aubio_onsetdetection(aubio_onsetdetection_t *o); |
---|
[96fb8ad] | 205 | |
---|
| 206 | /* should these still be exposed ? */ |
---|
| 207 | void aubio_onsetdetection_energy (aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset); |
---|
[5cf415f] | 208 | void aubio_onsetdetection_hfc (aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset); |
---|
[96fb8ad] | 209 | void aubio_onsetdetection_complex (aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset); |
---|
| 210 | void aubio_onsetdetection_phase (aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset); |
---|
| 211 | void aubio_onsetdetection_specdiff(aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset); |
---|
[5cf415f] | 212 | void aubio_onsetdetection_kl (aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset); |
---|
| 213 | void aubio_onsetdetection_mkl (aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset); |
---|
[96fb8ad] | 214 | |
---|
| 215 | /* pvoc */ |
---|
| 216 | aubio_pvoc_t * new_aubio_pvoc (uint_t win_s, uint_t hop_s, uint_t channels); |
---|
| 217 | void del_aubio_pvoc(aubio_pvoc_t *pv); |
---|
| 218 | void aubio_pvoc_do(aubio_pvoc_t *pv, fvec_t *in, cvec_t * fftgrain); |
---|
| 219 | void aubio_pvoc_rdo(aubio_pvoc_t *pv, cvec_t * fftgrain, fvec_t *out); |
---|
| 220 | |
---|
| 221 | /* pitch detection */ |
---|
[8e8bc50] | 222 | typedef enum { |
---|
[5e9c68a] | 223 | aubio_pitch_yin, |
---|
| 224 | aubio_pitch_mcomb, |
---|
| 225 | aubio_pitch_schmitt, |
---|
[650e39b] | 226 | aubio_pitch_fcomb, |
---|
[b061ef8] | 227 | aubio_pitch_yinfft |
---|
[8e8bc50] | 228 | } aubio_pitchdetection_type; |
---|
| 229 | |
---|
| 230 | typedef enum { |
---|
[5e9c68a] | 231 | aubio_pitchm_freq, |
---|
| 232 | aubio_pitchm_midi, |
---|
| 233 | aubio_pitchm_cent, |
---|
| 234 | aubio_pitchm_bin |
---|
[8e8bc50] | 235 | } aubio_pitchdetection_mode; |
---|
| 236 | |
---|
| 237 | smpl_t aubio_pitchdetection(aubio_pitchdetection_t * p, fvec_t * ibuf); |
---|
| 238 | |
---|
[4afa096d] | 239 | void aubio_pitchdetection_set_yinthresh(aubio_pitchdetection_t *p, smpl_t thres); |
---|
| 240 | |
---|
[8e8bc50] | 241 | void del_aubio_pitchdetection(aubio_pitchdetection_t * p); |
---|
| 242 | |
---|
| 243 | aubio_pitchdetection_t * new_aubio_pitchdetection(uint_t bufsize, |
---|
[b061ef8] | 244 | uint_t hopsize, |
---|
| 245 | uint_t channels, |
---|
| 246 | uint_t samplerate, |
---|
| 247 | aubio_pitchdetection_type type, |
---|
| 248 | aubio_pitchdetection_mode mode); |
---|
[8e8bc50] | 249 | |
---|
[96fb8ad] | 250 | |
---|
| 251 | /* pitch mcomb */ |
---|
[650e39b] | 252 | aubio_pitchmcomb_t * new_aubio_pitchmcomb(uint_t bufsize, uint_t hopsize, uint_t channels, uint_t samplerate); |
---|
[96fb8ad] | 253 | smpl_t aubio_pitchmcomb_detect(aubio_pitchmcomb_t * p, cvec_t * fftgrain); |
---|
| 254 | uint_t aubio_pitch_cands(aubio_pitchmcomb_t * p, cvec_t * fftgrain, smpl_t * cands); |
---|
[7a04950] | 255 | void del_aubio_pitchmcomb (aubio_pitchmcomb_t *p); |
---|
[96fb8ad] | 256 | |
---|
| 257 | /* pitch yin */ |
---|
| 258 | void aubio_pitchyin_diff(fvec_t *input, fvec_t *yin); |
---|
| 259 | void aubio_pitchyin_getcum(fvec_t *yin); |
---|
| 260 | uint_t aubio_pitchyin_getpitch(fvec_t *yin); |
---|
[650e39b] | 261 | smpl_t aubio_pitchyin_getpitchfast(fvec_t * input, fvec_t *yin, smpl_t tol); |
---|
[96fb8ad] | 262 | |
---|
[7a04950] | 263 | /* pitch schmitt */ |
---|
| 264 | aubio_pitchschmitt_t * new_aubio_pitchschmitt (uint_t size, uint_t samplerate); |
---|
| 265 | smpl_t aubio_pitchschmitt_detect (aubio_pitchschmitt_t *p, fvec_t * input); |
---|
| 266 | void del_aubio_pitchschmitt (aubio_pitchschmitt_t *p); |
---|
| 267 | |
---|
| 268 | /* pitch fcomb */ |
---|
[4afa096d] | 269 | aubio_pitchfcomb_t * new_aubio_pitchfcomb (uint_t size, uint_t hopsize, uint_t samplerate); |
---|
[7a04950] | 270 | smpl_t aubio_pitchfcomb_detect (aubio_pitchfcomb_t *p, fvec_t * input); |
---|
| 271 | void del_aubio_pitchfcomb (aubio_pitchfcomb_t *p); |
---|
| 272 | |
---|
[96fb8ad] | 273 | /* peakpicker */ |
---|
| 274 | aubio_pickpeak_t * new_aubio_peakpicker(smpl_t threshold); |
---|
| 275 | uint_t aubio_peakpick_pimrt(fvec_t * DF, aubio_pickpeak_t * p); |
---|
| 276 | uint_t aubio_peakpick_pimrt_wt( fvec_t* DF, aubio_pickpeak_t* p, smpl_t* peakval ); |
---|
[3822b73] | 277 | smpl_t aubio_peakpick_pimrt_getval(aubio_pickpeak_t* p); |
---|
[96fb8ad] | 278 | void del_aubio_peakpicker(aubio_pickpeak_t * p); |
---|
[3822b73] | 279 | void aubio_peakpicker_set_threshold(aubio_pickpeak_t * p, smpl_t threshold); |
---|
| 280 | smpl_t aubio_peakpicker_get_threshold(aubio_pickpeak_t * p); |
---|
[96fb8ad] | 281 | |
---|
| 282 | /* transient/steady state separation */ |
---|
| 283 | aubio_tss_t * new_aubio_tss(smpl_t thrs, smpl_t alfa, smpl_t beta, |
---|
| 284 | uint_t size, uint_t overlap,uint_t channels); |
---|
| 285 | void del_aubio_tss(aubio_tss_t *s); |
---|
| 286 | void aubio_tss_do(aubio_tss_t *s, cvec_t * input, cvec_t * trans, cvec_t * stead); |
---|
| 287 | |
---|
[de92b1c] | 288 | /* beattracking */ |
---|
| 289 | aubio_beattracking_t * new_aubio_beattracking(uint_t winlen, uint_t channels); |
---|
| 290 | void aubio_beattracking_do(aubio_beattracking_t * bt, fvec_t * dfframes, fvec_t * out); |
---|
| 291 | void del_aubio_beattracking(aubio_beattracking_t * p); |
---|
[e34b010] | 292 | smpl_t aubio_beattracking_get_bpm(aubio_beattracking_t * p); |
---|
| 293 | smpl_t aubio_beattracking_get_confidence(aubio_beattracking_t * p); |
---|
[de92b1c] | 294 | |
---|