[96fb8ad] | 1 | %module aubiowrapper |
---|
| 2 | |
---|
| 3 | %{ |
---|
| 4 | #include "aubio.h" |
---|
[740f06b] | 5 | %} |
---|
[96fb8ad] | 6 | |
---|
| 7 | /* type aliases */ |
---|
| 8 | typedef unsigned int uint_t; |
---|
| 9 | typedef int sint_t; |
---|
| 10 | typedef float smpl_t; |
---|
| 11 | |
---|
| 12 | /* fvec */ |
---|
[e5f49af] | 13 | fvec_t * new_fvec(uint_t length, uint_t channels); |
---|
| 14 | void del_fvec(fvec_t *s); |
---|
[96fb8ad] | 15 | smpl_t fvec_read_sample(fvec_t *s, uint_t channel, uint_t position); |
---|
| 16 | void fvec_write_sample(fvec_t *s, smpl_t data, uint_t channel, uint_t position); |
---|
| 17 | smpl_t * fvec_get_channel(fvec_t *s, uint_t channel); |
---|
| 18 | void fvec_put_channel(fvec_t *s, smpl_t * data, uint_t channel); |
---|
| 19 | smpl_t ** fvec_get_data(fvec_t *s); |
---|
| 20 | |
---|
| 21 | /* another way, passing -c++ option to swig */ |
---|
| 22 | /* |
---|
| 23 | class fvec_t{ |
---|
| 24 | public: |
---|
| 25 | %extend { |
---|
| 26 | fvec_t(uint_t length, uint_t channels){ |
---|
| 27 | return new_fvec(length, channels); |
---|
| 28 | } |
---|
| 29 | ~fvec_t() { |
---|
| 30 | del_fvec(self); |
---|
| 31 | } |
---|
| 32 | smpl_t get( uint_t channel, uint_t position) { |
---|
| 33 | return fvec_read_sample(self,channel,position); |
---|
| 34 | } |
---|
| 35 | void set( smpl_t data, uint_t channel, uint_t position) { |
---|
| 36 | fvec_write_sample(self, data, channel, position); |
---|
| 37 | } |
---|
| 38 | #smpl_t * fvec_get_channel(fvec_t *s, uint_t channel); |
---|
| 39 | #void fvec_put_channel(fvec_t *s, smpl_t * data, uint_t channel); |
---|
| 40 | } |
---|
| 41 | }; |
---|
| 42 | */ |
---|
| 43 | |
---|
| 44 | /* cvec */ |
---|
[e5f49af] | 45 | cvec_t * new_cvec(uint_t length, uint_t channels); |
---|
| 46 | void del_cvec(cvec_t *s); |
---|
| 47 | void cvec_write_norm(cvec_t *s, smpl_t data, uint_t channel, uint_t position); |
---|
| 48 | void cvec_write_phas(cvec_t *s, smpl_t data, uint_t channel, uint_t position); |
---|
| 49 | smpl_t cvec_read_norm(cvec_t *s, uint_t channel, uint_t position); |
---|
| 50 | smpl_t cvec_read_phas(cvec_t *s, uint_t channel, uint_t position); |
---|
| 51 | void cvec_put_norm_channel(cvec_t *s, smpl_t * data, uint_t channel); |
---|
| 52 | void cvec_put_phas_channel(cvec_t *s, smpl_t * data, uint_t channel); |
---|
| 53 | smpl_t * cvec_get_norm_channel(cvec_t *s, uint_t channel); |
---|
| 54 | smpl_t * cvec_get_phas_channel(cvec_t *s, uint_t channel); |
---|
| 55 | smpl_t ** cvec_get_norm(cvec_t *s); |
---|
| 56 | smpl_t ** cvec_get_phas(cvec_t *s); |
---|
[96fb8ad] | 57 | |
---|
| 58 | |
---|
| 59 | /* fft */ |
---|
[e5f49af] | 60 | aubio_fft_t * new_aubio_fft(uint_t size, uint_t channels); |
---|
| 61 | void del_aubio_fft(aubio_fft_t * s); |
---|
| 62 | void aubio_fft_do (aubio_fft_t *s, fvec_t * input, cvec_t * spectrum); |
---|
| 63 | void aubio_fft_rdo (aubio_fft_t *s, cvec_t * spectrum, fvec_t * output); |
---|
| 64 | void aubio_fft_do_complex (aubio_fft_t *s, fvec_t * input, fvec_t * compspec); |
---|
| 65 | void aubio_fft_rdo_complex (aubio_fft_t *s, fvec_t * compspec, fvec_t * output); |
---|
| 66 | void aubio_fft_get_spectrum(fvec_t * compspec, cvec_t * spectrum); |
---|
| 67 | void aubio_fft_get_realimag(cvec_t * spectrum, fvec_t * compspec); |
---|
| 68 | void aubio_fft_get_phas(fvec_t * compspec, cvec_t * spectrum); |
---|
| 69 | void aubio_fft_get_imag(cvec_t * spectrum, fvec_t * compspec); |
---|
| 70 | void aubio_fft_get_norm(fvec_t * compspec, cvec_t * spectrum); |
---|
| 71 | void aubio_fft_get_real(cvec_t * spectrum, fvec_t * compspec); |
---|
[ec10780] | 72 | |
---|
[96fb8ad] | 73 | /* filter */ |
---|
[59c046d] | 74 | aubio_filter_t * new_aubio_filter(uint_t order, uint_t channels); |
---|
[e5f49af] | 75 | void aubio_filter_do(aubio_filter_t * b, fvec_t * in); |
---|
| 76 | void aubio_filter_do_outplace(aubio_filter_t * b, fvec_t * in, fvec_t * out); |
---|
| 77 | void aubio_filter_do_filtfilt(aubio_filter_t * b, fvec_t * in, fvec_t * tmp); |
---|
| 78 | void del_aubio_filter(aubio_filter_t * b); |
---|
[4123f16] | 79 | |
---|
[59c046d] | 80 | aubio_filter_t * new_aubio_filter_a_weighting (uint_t channels, uint_t samplerate); |
---|
| 81 | uint_t aubio_filter_set_a_weighting (aubio_filter_t * b, uint_t samplerate); |
---|
[4123f16] | 82 | |
---|
[59c046d] | 83 | aubio_filter_t * new_aubio_filter_c_weighting (uint_t channels, uint_t samplerate); |
---|
| 84 | uint_t aubio_filter_set_c_weighting (aubio_filter_t * b, uint_t samplerate); |
---|
[96fb8ad] | 85 | |
---|
| 86 | /* biquad */ |
---|
[b01bd4a] | 87 | aubio_filter_t * new_aubio_filter_biquad(lsmp_t b1, lsmp_t b2, lsmp_t b3, lsmp_t a2, lsmp_t a3, uint_t channels); |
---|
| 88 | uint_t aubio_filter_set_biquad (aubio_filter_t * b, lsmp_t b1, lsmp_t b2, lsmp_t b3, lsmp_t a2, lsmp_t a3); |
---|
[96fb8ad] | 89 | |
---|
| 90 | /* hist */ |
---|
[e5f49af] | 91 | aubio_hist_t * new_aubio_hist(smpl_t flow, smpl_t fhig, uint_t nelems, uint_t channels); |
---|
| 92 | void del_aubio_hist(aubio_hist_t *s); |
---|
| 93 | void aubio_hist_do(aubio_hist_t *s, fvec_t * input); |
---|
| 94 | void aubio_hist_do_notnull(aubio_hist_t *s, fvec_t * input); |
---|
| 95 | void aubio_hist_dyn_notnull(aubio_hist_t *s, fvec_t *input); |
---|
| 96 | void aubio_hist_weight(aubio_hist_t *s); |
---|
| 97 | smpl_t aubio_hist_mean(aubio_hist_t *s); |
---|
[96fb8ad] | 98 | |
---|
| 99 | /* mathutils */ |
---|
[74516f7] | 100 | fvec_t * new_aubio_window(char * wintype, uint_t size); |
---|
[28d8c4a] | 101 | smpl_t aubio_unwrap2pi (smpl_t phase); |
---|
[8b28524] | 102 | smpl_t fvec_mean(fvec_t *s); |
---|
[1e2c82f] | 103 | smpl_t fvec_max(fvec_t *s); |
---|
[2f64b0e] | 104 | smpl_t fvec_min(fvec_t *s); |
---|
| 105 | uint_t fvec_min_elem(fvec_t *s); |
---|
[1e2c82f] | 106 | uint_t fvec_max_elem(fvec_t *s); |
---|
[5c4ec3c] | 107 | void fvec_shift(fvec_t *s); |
---|
| 108 | smpl_t fvec_sum(fvec_t *s); |
---|
| 109 | smpl_t fvec_local_energy(fvec_t * f); |
---|
| 110 | smpl_t fvec_local_hfc(fvec_t * f); |
---|
| 111 | smpl_t fvec_alpha_norm(fvec_t * DF, smpl_t alpha); |
---|
[c0b295c] | 112 | void fvec_min_removal(fvec_t * mag); |
---|
[5c4ec3c] | 113 | void fvec_alpha_normalise(fvec_t * mag, uint_t alpha); |
---|
| 114 | void fvec_add(fvec_t * mag, smpl_t threshold); |
---|
[e5f49af] | 115 | void fvec_adapt_thres(fvec_t * vec, fvec_t * tmp, uint_t post, uint_t pre, uint_t channel); |
---|
| 116 | smpl_t fvec_moving_thres(fvec_t * vec, fvec_t * tmp, uint_t post, uint_t pre, uint_t pos, uint_t channel); |
---|
| 117 | smpl_t fvec_median_channel (fvec_t * input, uint_t channel); |
---|
[5c4ec3c] | 118 | smpl_t fvec_quadint(fvec_t * x,uint_t pos, uint_t span); |
---|
[28d8c4a] | 119 | smpl_t aubio_quadfrac(smpl_t s0, smpl_t s1, smpl_t s2, smpl_t pf); |
---|
[5c4ec3c] | 120 | uint_t fvec_peakpick(fvec_t * input, uint_t pos); |
---|
[28d8c4a] | 121 | smpl_t aubio_bintomidi(smpl_t bin, smpl_t samplerate, smpl_t fftsize); |
---|
[79c2e52] | 122 | smpl_t aubio_miditobin(smpl_t midi, smpl_t samplerate, smpl_t fftsize); |
---|
[28d8c4a] | 123 | smpl_t aubio_bintofreq(smpl_t bin, smpl_t samplerate, smpl_t fftsize); |
---|
[79c2e52] | 124 | smpl_t aubio_freqtobin(smpl_t freq, smpl_t samplerate, smpl_t fftsize); |
---|
[28d8c4a] | 125 | smpl_t aubio_freqtomidi(smpl_t freq); |
---|
[79c2e52] | 126 | smpl_t aubio_miditofreq(smpl_t midi); |
---|
[96fb8ad] | 127 | uint_t aubio_silence_detection(fvec_t * ibuf, smpl_t threshold); |
---|
| 128 | smpl_t aubio_level_detection(fvec_t * ibuf, smpl_t threshold); |
---|
[fe4f78a] | 129 | void aubio_autocorr(fvec_t * in, fvec_t * acf); |
---|
[5507e9d] | 130 | smpl_t aubio_zero_crossing_rate(fvec_t * input); |
---|
[c8b80cd] | 131 | smpl_t aubio_spectral_centroid(cvec_t * spectrum, smpl_t samplerate); |
---|
[96fb8ad] | 132 | |
---|
[bc4ba75] | 133 | /* filterbank */ |
---|
[dc73a4d0] | 134 | aubio_filterbank_t * new_aubio_filterbank(uint_t win_s, uint_t channels); |
---|
[59c046d] | 135 | void aubio_filterbank_set_triangle_bands (aubio_filterbank_t *fb, fvec_t *freqs, uint_t samplerate); |
---|
[1e37ade] | 136 | void aubio_filterbank_set_mel_coeffs_slaney(aubio_filterbank_t *fb, uint_t samplerate); |
---|
[dc73a4d0] | 137 | void del_aubio_filterbank(aubio_filterbank_t * fb); |
---|
| 138 | void aubio_filterbank_do(aubio_filterbank_t * fb, cvec_t * in, fvec_t *out); |
---|
[06cae6c] | 139 | fvec_t * aubio_filterbank_get_coeffs(aubio_filterbank_t * fb); |
---|
[bc4ba75] | 140 | |
---|
| 141 | /* mfcc */ |
---|
[adcf405] | 142 | aubio_mfcc_t * new_aubio_mfcc (uint_t win_s, uint_t samplerate, uint_t n_filters, uint_t n_coefs); |
---|
[bc4ba75] | 143 | void del_aubio_mfcc(aubio_mfcc_t *mf); |
---|
| 144 | void aubio_mfcc_do(aubio_mfcc_t *mf, cvec_t *in, fvec_t *out); |
---|
| 145 | |
---|
[96fb8ad] | 146 | /* scale */ |
---|
[e5f49af] | 147 | aubio_scale_t * new_aubio_scale(smpl_t flow, smpl_t fhig, smpl_t ilow, smpl_t ihig); |
---|
| 148 | uint_t aubio_scale_set_limits (aubio_scale_t *s, smpl_t ilow, smpl_t ihig, smpl_t olow, smpl_t ohig); |
---|
| 149 | void aubio_scale_do(aubio_scale_t *s, fvec_t * input); |
---|
| 150 | void del_aubio_scale(aubio_scale_t *s); |
---|
[96fb8ad] | 151 | |
---|
| 152 | /* resampling */ |
---|
[740f06b] | 153 | #if HAVE_SAMPLERATE |
---|
[e5f49af] | 154 | aubio_resampler_t * new_aubio_resampler(float ratio, uint_t type); |
---|
| 155 | void aubio_resampler_do (aubio_resampler_t *s, fvec_t * input, fvec_t * output); |
---|
| 156 | void del_aubio_resampler(aubio_resampler_t *s); |
---|
[740f06b] | 157 | #endif /* HAVE_SAMPLERATE */ |
---|
[96fb8ad] | 158 | |
---|
| 159 | /* onset detection */ |
---|
[b4f5967] | 160 | aubio_onsetdetection_t * new_aubio_onsetdetection(char * onset_mode, uint_t size, uint_t channels); |
---|
[01b8fcc] | 161 | void aubio_onsetdetection_do (aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset); |
---|
[2a00568] | 162 | void del_aubio_onsetdetection(aubio_onsetdetection_t *o); |
---|
[96fb8ad] | 163 | |
---|
| 164 | /* pvoc */ |
---|
| 165 | aubio_pvoc_t * new_aubio_pvoc (uint_t win_s, uint_t hop_s, uint_t channels); |
---|
| 166 | void del_aubio_pvoc(aubio_pvoc_t *pv); |
---|
| 167 | void aubio_pvoc_do(aubio_pvoc_t *pv, fvec_t *in, cvec_t * fftgrain); |
---|
| 168 | void aubio_pvoc_rdo(aubio_pvoc_t *pv, cvec_t * fftgrain, fvec_t *out); |
---|
| 169 | |
---|
| 170 | /* pitch detection */ |
---|
[ca1abdd] | 171 | aubio_pitch_t *new_aubio_pitch (char *pitch_mode, |
---|
[fe163ad] | 172 | uint_t bufsize, uint_t hopsize, uint_t channels, uint_t samplerate); |
---|
[ca1abdd] | 173 | void aubio_pitch_do (aubio_pitch_t * p, fvec_t * ibuf, fvec_t * obuf); |
---|
| 174 | uint_t aubio_pitch_set_tolerance(aubio_pitch_t *p, smpl_t thres); |
---|
| 175 | uint_t aubio_pitch_set_unit(aubio_pitch_t *p, char * pitch_unit); |
---|
| 176 | void del_aubio_pitch(aubio_pitch_t * p); |
---|
[8e8bc50] | 177 | |
---|
[96fb8ad] | 178 | /* pitch mcomb */ |
---|
[05773a2c] | 179 | aubio_pitchmcomb_t * new_aubio_pitchmcomb(uint_t bufsize, uint_t hopsize, uint_t channels); |
---|
| 180 | void aubio_pitchmcomb_do (aubio_pitchmcomb_t * p, cvec_t * fftgrain, fvec_t * out); |
---|
[7a04950] | 181 | void del_aubio_pitchmcomb (aubio_pitchmcomb_t *p); |
---|
[96fb8ad] | 182 | |
---|
| 183 | /* pitch yin */ |
---|
[05773a2c] | 184 | aubio_pitchyin_t * new_aubio_pitchyin(uint_t bufsize); |
---|
| 185 | void aubio_pitchyin_do (aubio_pitchyin_t *o, fvec_t * in, fvec_t *out); |
---|
| 186 | void del_aubio_pitchyin (aubio_pitchyin_t *p); |
---|
[96fb8ad] | 187 | |
---|
[7a04950] | 188 | /* pitch schmitt */ |
---|
[05773a2c] | 189 | aubio_pitchschmitt_t * new_aubio_pitchschmitt (uint_t size); |
---|
| 190 | void aubio_pitchschmitt_do (aubio_pitchschmitt_t *p, fvec_t * input, fvec_t *out); |
---|
[7a04950] | 191 | void del_aubio_pitchschmitt (aubio_pitchschmitt_t *p); |
---|
| 192 | |
---|
| 193 | /* pitch fcomb */ |
---|
[4afa096d] | 194 | aubio_pitchfcomb_t * new_aubio_pitchfcomb (uint_t size, uint_t hopsize, uint_t samplerate); |
---|
[05773a2c] | 195 | void aubio_pitchfcomb_do (aubio_pitchfcomb_t *p, fvec_t * input, fvec_t *out); |
---|
[7a04950] | 196 | void del_aubio_pitchfcomb (aubio_pitchfcomb_t *p); |
---|
| 197 | |
---|
[96fb8ad] | 198 | /* peakpicker */ |
---|
[e5f49af] | 199 | aubio_peakpicker_t * new_aubio_peakpicker(uint_t channels); |
---|
| 200 | void aubio_peakpicker_do(aubio_peakpicker_t * p, fvec_t * df, fvec_t * out); |
---|
[8766cb6] | 201 | smpl_t aubio_peakpicker_get_thresholded_input(aubio_peakpicker_t* p); |
---|
| 202 | void del_aubio_peakpicker(aubio_peakpicker_t * p); |
---|
[740f06b] | 203 | uint_t aubio_peakpicker_set_threshold(aubio_peakpicker_t * p, smpl_t threshold); |
---|
[8766cb6] | 204 | smpl_t aubio_peakpicker_get_threshold(aubio_peakpicker_t * p); |
---|
[96fb8ad] | 205 | |
---|
| 206 | /* transient/steady state separation */ |
---|
[740f06b] | 207 | aubio_tss_t *new_aubio_tss (uint_t win_s, uint_t hop_s, uint_t channels); |
---|
| 208 | void del_aubio_tss (aubio_tss_t * s); |
---|
| 209 | void aubio_tss_do (aubio_tss_t * s, cvec_t * input, cvec_t * trans, |
---|
| 210 | cvec_t * stead); |
---|
| 211 | uint_t aubio_tss_set_threshold (aubio_tss_t * o, smpl_t thrs); |
---|
| 212 | uint_t aubio_tss_set_alpha (aubio_tss_t * o, smpl_t alpha); |
---|
| 213 | uint_t aubio_tss_set_beta (aubio_tss_t * o, smpl_t beta); |
---|
[96fb8ad] | 214 | |
---|
[de92b1c] | 215 | /* beattracking */ |
---|
| 216 | aubio_beattracking_t * new_aubio_beattracking(uint_t winlen, uint_t channels); |
---|
| 217 | void aubio_beattracking_do(aubio_beattracking_t * bt, fvec_t * dfframes, fvec_t * out); |
---|
| 218 | void del_aubio_beattracking(aubio_beattracking_t * p); |
---|
[e34b010] | 219 | smpl_t aubio_beattracking_get_bpm(aubio_beattracking_t * p); |
---|
| 220 | smpl_t aubio_beattracking_get_confidence(aubio_beattracking_t * p); |
---|
[de92b1c] | 221 | |
---|
[740f06b] | 222 | /* tempo */ |
---|
| 223 | typedef struct _aubio_tempo_t aubio_tempo_t; |
---|
| 224 | aubio_tempo_t * new_aubio_tempo (char_t * mode, |
---|
| 225 | uint_t buf_size, uint_t hop_size, uint_t channels, uint_t samplerate); |
---|
| 226 | void aubio_tempo_do (aubio_tempo_t *o, fvec_t * input, fvec_t * tempo); |
---|
| 227 | uint_t aubio_tempo_set_silence(aubio_tempo_t * o, smpl_t silence); |
---|
| 228 | uint_t aubio_tempo_set_threshold(aubio_tempo_t * o, smpl_t threshold); |
---|
| 229 | smpl_t aubio_tempo_get_bpm(aubio_tempo_t * bt); |
---|
| 230 | smpl_t aubio_tempo_get_confidence(aubio_tempo_t * bt); |
---|
| 231 | void del_aubio_tempo(aubio_tempo_t * o); |
---|
| 232 | |
---|
| 233 | /* sndfile */ |
---|
| 234 | %{ |
---|
| 235 | #if HAVE_SNDFILE |
---|
| 236 | #include "sndfileio.h" |
---|
| 237 | %} |
---|
[e5f49af] | 238 | aubio_sndfile_t * new_aubio_sndfile_ro (const char * inputfile); |
---|
| 239 | aubio_sndfile_t * new_aubio_sndfile_wo(aubio_sndfile_t * existingfile, const char * outputname); |
---|
| 240 | void aubio_sndfile_info(aubio_sndfile_t * file); |
---|
| 241 | int aubio_sndfile_write(aubio_sndfile_t * file, int frames, fvec_t * write); |
---|
| 242 | int aubio_sndfile_read(aubio_sndfile_t * file, int frames, fvec_t * read); |
---|
| 243 | int del_aubio_sndfile(aubio_sndfile_t * file); |
---|
| 244 | uint_t aubio_sndfile_channels(aubio_sndfile_t * file); |
---|
| 245 | uint_t aubio_sndfile_samplerate(aubio_sndfile_t * file); |
---|
[740f06b] | 246 | %{ |
---|
| 247 | #endif /* HAVE_SNDFILE */ |
---|
| 248 | %} |
---|