[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 */ |
---|
[5e9c68a] | 64 | extern aubio_sndfile_t * new_aubio_sndfile_ro (const char * inputfile); |
---|
| 65 | extern aubio_sndfile_t * new_aubio_sndfile_wo(aubio_sndfile_t * existingfile, const char * outputname); |
---|
| 66 | extern void aubio_sndfile_info(aubio_sndfile_t * file); |
---|
| 67 | extern int aubio_sndfile_write(aubio_sndfile_t * file, int frames, fvec_t * write); |
---|
| 68 | extern int aubio_sndfile_read(aubio_sndfile_t * file, int frames, fvec_t * read); |
---|
| 69 | extern int del_aubio_sndfile(aubio_sndfile_t * file); |
---|
| 70 | extern uint_t aubio_sndfile_channels(aubio_sndfile_t * file); |
---|
| 71 | extern uint_t aubio_sndfile_samplerate(aubio_sndfile_t * file); |
---|
[96fb8ad] | 72 | |
---|
| 73 | /* fft */ |
---|
| 74 | extern void aubio_fft_getnorm(smpl_t * norm, fft_data_t * spectrum, uint_t size); |
---|
| 75 | extern void aubio_fft_getphas(smpl_t * phase, fft_data_t * spectrum, uint_t size); |
---|
| 76 | |
---|
[ec10780] | 77 | extern aubio_mfft_t * new_aubio_mfft(uint_t winsize, uint_t channels); |
---|
| 78 | extern void aubio_mfft_do (aubio_mfft_t * fft,fvec_t * in,cvec_t * fftgrain); |
---|
| 79 | extern void aubio_mfft_rdo(aubio_mfft_t * fft,cvec_t * fftgrain, fvec_t * out); |
---|
| 80 | extern void del_aubio_mfft(aubio_mfft_t * fft); |
---|
| 81 | |
---|
| 82 | |
---|
[96fb8ad] | 83 | /* filter */ |
---|
| 84 | extern aubio_filter_t * new_aubio_filter(uint_t samplerate, uint_t order); |
---|
| 85 | extern aubio_filter_t * new_aubio_adsgn_filter(uint_t samplerate); |
---|
| 86 | extern aubio_filter_t * new_aubio_cdsgn_filter(uint_t samplerate); |
---|
| 87 | extern void aubio_filter_do(aubio_filter_t * b, fvec_t * in); |
---|
| 88 | extern void aubio_filter_do_outplace(aubio_filter_t * b, fvec_t * in, fvec_t * out); |
---|
| 89 | extern void aubio_filter_do_filtfilt(aubio_filter_t * b, fvec_t * in, fvec_t * tmp); |
---|
| 90 | /*extern int del_aubio_filter(aubio_filter_t * b);*/ |
---|
| 91 | |
---|
| 92 | /* biquad */ |
---|
| 93 | extern aubio_biquad_t * new_aubio_biquad(lsmp_t b1, lsmp_t b2, lsmp_t b3, lsmp_t a2, lsmp_t a3); |
---|
| 94 | extern void aubio_biquad_do(aubio_biquad_t * b, fvec_t * in); |
---|
| 95 | extern void aubio_biquad_do_filtfilt(aubio_biquad_t * b, fvec_t * in, fvec_t * tmp); |
---|
| 96 | /*extern int del_aubio_biquad(aubio_biquad_t * b);*/ |
---|
| 97 | |
---|
| 98 | /* hist */ |
---|
| 99 | extern aubio_hist_t * new_aubio_hist(smpl_t flow, smpl_t fhig, uint_t nelems, uint_t channels); |
---|
| 100 | extern void del_aubio_hist(aubio_hist_t *s); |
---|
| 101 | extern void aubio_hist_do(aubio_hist_t *s, fvec_t * input); |
---|
| 102 | extern void aubio_hist_do_notnull(aubio_hist_t *s, fvec_t * input); |
---|
| 103 | extern void aubio_hist_dyn_notnull (aubio_hist_t *s, fvec_t *input); |
---|
| 104 | |
---|
| 105 | /* mathutils */ |
---|
| 106 | typedef enum { |
---|
[b4b0324] | 107 | aubio_win_rectangle, |
---|
| 108 | aubio_win_hamming, |
---|
| 109 | aubio_win_hanning, |
---|
| 110 | aubio_win_hanningz, |
---|
| 111 | aubio_win_blackman, |
---|
| 112 | aubio_win_blackman_harris, |
---|
| 113 | aubio_win_gaussian, |
---|
| 114 | aubio_win_welch, |
---|
| 115 | aubio_win_parzen |
---|
[28d8c4a] | 116 | } aubio_window_type; |
---|
[96fb8ad] | 117 | |
---|
[28d8c4a] | 118 | void aubio_window(smpl_t *w, uint_t size, aubio_window_type wintype); |
---|
| 119 | smpl_t aubio_unwrap2pi (smpl_t phase); |
---|
[96fb8ad] | 120 | smpl_t vec_mean(fvec_t *s); |
---|
| 121 | smpl_t vec_max(fvec_t *s); |
---|
| 122 | smpl_t vec_min(fvec_t *s); |
---|
| 123 | uint_t vec_min_elem(fvec_t *s); |
---|
| 124 | uint_t vec_max_elem(fvec_t *s); |
---|
| 125 | void vec_shift(fvec_t *s); |
---|
| 126 | smpl_t vec_sum(fvec_t *s); |
---|
| 127 | smpl_t vec_local_energy(fvec_t * f); |
---|
| 128 | smpl_t vec_local_hfc(fvec_t * f); |
---|
| 129 | smpl_t vec_alpha_norm(fvec_t * DF, smpl_t alpha); |
---|
| 130 | void vec_dc_removal(fvec_t * mag); |
---|
| 131 | void vec_alpha_normalise(fvec_t * mag, uint_t alpha); |
---|
| 132 | void vec_add(fvec_t * mag, smpl_t threshold); |
---|
| 133 | void vec_adapt_thres(fvec_t * vec, fvec_t * tmp, uint_t post, uint_t pre); |
---|
| 134 | smpl_t vec_moving_thres(fvec_t * vec, fvec_t * tmp, uint_t post, uint_t pre, uint_t pos); |
---|
| 135 | smpl_t vec_median(fvec_t * input); |
---|
| 136 | smpl_t vec_quadint(fvec_t * x,uint_t pos); |
---|
[28d8c4a] | 137 | smpl_t aubio_quadfrac(smpl_t s0, smpl_t s1, smpl_t s2, smpl_t pf); |
---|
[96fb8ad] | 138 | uint_t vec_peakpick(fvec_t * input, uint_t pos); |
---|
[28d8c4a] | 139 | smpl_t aubio_bintomidi(smpl_t bin, smpl_t samplerate, smpl_t fftsize); |
---|
[79c2e52] | 140 | smpl_t aubio_miditobin(smpl_t midi, smpl_t samplerate, smpl_t fftsize); |
---|
[28d8c4a] | 141 | smpl_t aubio_bintofreq(smpl_t bin, smpl_t samplerate, smpl_t fftsize); |
---|
[79c2e52] | 142 | smpl_t aubio_freqtobin(smpl_t freq, smpl_t samplerate, smpl_t fftsize); |
---|
[28d8c4a] | 143 | smpl_t aubio_freqtomidi(smpl_t freq); |
---|
[79c2e52] | 144 | smpl_t aubio_miditofreq(smpl_t midi); |
---|
[96fb8ad] | 145 | uint_t aubio_silence_detection(fvec_t * ibuf, smpl_t threshold); |
---|
| 146 | smpl_t aubio_level_detection(fvec_t * ibuf, smpl_t threshold); |
---|
[fe4f78a] | 147 | void aubio_autocorr(fvec_t * in, fvec_t * acf); |
---|
[96fb8ad] | 148 | |
---|
| 149 | /* scale */ |
---|
| 150 | extern aubio_scale_t * new_aubio_scale(smpl_t flow, smpl_t fhig, smpl_t ilow, smpl_t ihig ); |
---|
| 151 | extern void aubio_scale_set (aubio_scale_t *s, smpl_t ilow, smpl_t ihig, smpl_t olow, smpl_t ohig); |
---|
| 152 | extern void aubio_scale_do(aubio_scale_t *s, fvec_t * input); |
---|
| 153 | extern void del_aubio_scale(aubio_scale_t *s); |
---|
| 154 | |
---|
| 155 | /* resampling */ |
---|
| 156 | extern aubio_resampler_t * new_aubio_resampler(float ratio, uint_t type); |
---|
| 157 | extern uint_t aubio_resampler_process(aubio_resampler_t *s, fvec_t * input, fvec_t * output); |
---|
| 158 | extern void del_aubio_resampler(aubio_resampler_t *s); |
---|
| 159 | |
---|
| 160 | /* onset detection */ |
---|
[5cf415f] | 161 | typedef enum { |
---|
| 162 | aubio_onset_energy, |
---|
| 163 | aubio_onset_specdiff, |
---|
| 164 | aubio_onset_hfc, |
---|
| 165 | aubio_onset_complex, |
---|
| 166 | aubio_onset_phase, |
---|
| 167 | aubio_onset_kl, |
---|
| 168 | aubio_onset_mkl |
---|
| 169 | } aubio_onsetdetection_type; |
---|
[96fb8ad] | 170 | aubio_onsetdetection_t * new_aubio_onsetdetection(aubio_onsetdetection_type type, uint_t size, uint_t channels); |
---|
| 171 | void aubio_onsetdetection(aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset); |
---|
| 172 | void aubio_onsetdetection_free(aubio_onsetdetection_t *o); |
---|
| 173 | |
---|
| 174 | /* should these still be exposed ? */ |
---|
| 175 | void aubio_onsetdetection_energy (aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset); |
---|
[5cf415f] | 176 | void aubio_onsetdetection_hfc (aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset); |
---|
[96fb8ad] | 177 | void aubio_onsetdetection_complex (aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset); |
---|
| 178 | void aubio_onsetdetection_phase (aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset); |
---|
| 179 | void aubio_onsetdetection_specdiff(aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset); |
---|
[5cf415f] | 180 | void aubio_onsetdetection_kl (aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset); |
---|
| 181 | void aubio_onsetdetection_mkl (aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset); |
---|
[96fb8ad] | 182 | |
---|
| 183 | /* pvoc */ |
---|
| 184 | aubio_pvoc_t * new_aubio_pvoc (uint_t win_s, uint_t hop_s, uint_t channels); |
---|
| 185 | void del_aubio_pvoc(aubio_pvoc_t *pv); |
---|
| 186 | void aubio_pvoc_do(aubio_pvoc_t *pv, fvec_t *in, cvec_t * fftgrain); |
---|
| 187 | void aubio_pvoc_rdo(aubio_pvoc_t *pv, cvec_t * fftgrain, fvec_t *out); |
---|
| 188 | |
---|
| 189 | /* pitch detection */ |
---|
[8e8bc50] | 190 | typedef enum { |
---|
[5e9c68a] | 191 | aubio_pitch_yin, |
---|
| 192 | aubio_pitch_mcomb, |
---|
| 193 | aubio_pitch_schmitt, |
---|
[650e39b] | 194 | aubio_pitch_fcomb, |
---|
| 195 | aubio_pitch_yinfft |
---|
[8e8bc50] | 196 | } aubio_pitchdetection_type; |
---|
| 197 | |
---|
| 198 | typedef enum { |
---|
[5e9c68a] | 199 | aubio_pitchm_freq, |
---|
| 200 | aubio_pitchm_midi, |
---|
| 201 | aubio_pitchm_cent, |
---|
| 202 | aubio_pitchm_bin |
---|
[8e8bc50] | 203 | } aubio_pitchdetection_mode; |
---|
| 204 | |
---|
| 205 | smpl_t aubio_pitchdetection(aubio_pitchdetection_t * p, fvec_t * ibuf); |
---|
| 206 | smpl_t aubio_pitchdetection_mcomb(aubio_pitchdetection_t *p, fvec_t * ibuf); |
---|
| 207 | smpl_t aubio_pitchdetection_yin(aubio_pitchdetection_t *p, fvec_t *ibuf); |
---|
| 208 | |
---|
[4afa096d] | 209 | void aubio_pitchdetection_set_yinthresh(aubio_pitchdetection_t *p, smpl_t thres); |
---|
| 210 | |
---|
[8e8bc50] | 211 | void del_aubio_pitchdetection(aubio_pitchdetection_t * p); |
---|
| 212 | |
---|
| 213 | aubio_pitchdetection_t * new_aubio_pitchdetection(uint_t bufsize, |
---|
| 214 | uint_t hopsize, |
---|
| 215 | uint_t channels, |
---|
| 216 | uint_t samplerate, |
---|
| 217 | aubio_pitchdetection_type type, |
---|
| 218 | aubio_pitchdetection_mode mode); |
---|
| 219 | |
---|
[96fb8ad] | 220 | |
---|
| 221 | /* pitch mcomb */ |
---|
[650e39b] | 222 | aubio_pitchmcomb_t * new_aubio_pitchmcomb(uint_t bufsize, uint_t hopsize, uint_t channels, uint_t samplerate); |
---|
[96fb8ad] | 223 | smpl_t aubio_pitchmcomb_detect(aubio_pitchmcomb_t * p, cvec_t * fftgrain); |
---|
| 224 | uint_t aubio_pitch_cands(aubio_pitchmcomb_t * p, cvec_t * fftgrain, smpl_t * cands); |
---|
[7a04950] | 225 | void del_aubio_pitchmcomb (aubio_pitchmcomb_t *p); |
---|
[96fb8ad] | 226 | |
---|
| 227 | /* pitch yin */ |
---|
| 228 | void aubio_pitchyin_diff(fvec_t *input, fvec_t *yin); |
---|
| 229 | void aubio_pitchyin_getcum(fvec_t *yin); |
---|
| 230 | uint_t aubio_pitchyin_getpitch(fvec_t *yin); |
---|
[650e39b] | 231 | smpl_t aubio_pitchyin_getpitchfast(fvec_t * input, fvec_t *yin, smpl_t tol); |
---|
[96fb8ad] | 232 | |
---|
[7a04950] | 233 | /* pitch schmitt */ |
---|
| 234 | aubio_pitchschmitt_t * new_aubio_pitchschmitt (uint_t size, uint_t samplerate); |
---|
| 235 | smpl_t aubio_pitchschmitt_detect (aubio_pitchschmitt_t *p, fvec_t * input); |
---|
| 236 | void del_aubio_pitchschmitt (aubio_pitchschmitt_t *p); |
---|
| 237 | |
---|
| 238 | /* pitch fcomb */ |
---|
[4afa096d] | 239 | aubio_pitchfcomb_t * new_aubio_pitchfcomb (uint_t size, uint_t hopsize, uint_t samplerate); |
---|
[7a04950] | 240 | smpl_t aubio_pitchfcomb_detect (aubio_pitchfcomb_t *p, fvec_t * input); |
---|
| 241 | void del_aubio_pitchfcomb (aubio_pitchfcomb_t *p); |
---|
| 242 | |
---|
[96fb8ad] | 243 | /* peakpicker */ |
---|
| 244 | aubio_pickpeak_t * new_aubio_peakpicker(smpl_t threshold); |
---|
| 245 | uint_t aubio_peakpick_pimrt(fvec_t * DF, aubio_pickpeak_t * p); |
---|
[de92b1c] | 246 | smpl_t aubio_peakpick_pimrt_getval(aubio_pickpeak_t* p); |
---|
[96fb8ad] | 247 | uint_t aubio_peakpick_pimrt_wt( fvec_t* DF, aubio_pickpeak_t* p, smpl_t* peakval ); |
---|
| 248 | void del_aubio_peakpicker(aubio_pickpeak_t * p); |
---|
| 249 | |
---|
| 250 | /* transient/steady state separation */ |
---|
| 251 | aubio_tss_t * new_aubio_tss(smpl_t thrs, smpl_t alfa, smpl_t beta, |
---|
| 252 | uint_t size, uint_t overlap,uint_t channels); |
---|
| 253 | void del_aubio_tss(aubio_tss_t *s); |
---|
| 254 | void aubio_tss_do(aubio_tss_t *s, cvec_t * input, cvec_t * trans, cvec_t * stead); |
---|
| 255 | |
---|
[de92b1c] | 256 | /* beattracking */ |
---|
| 257 | aubio_beattracking_t * new_aubio_beattracking(uint_t winlen, uint_t channels); |
---|
| 258 | void aubio_beattracking_do(aubio_beattracking_t * bt, fvec_t * dfframes, fvec_t * out); |
---|
| 259 | void del_aubio_beattracking(aubio_beattracking_t * p); |
---|
| 260 | |
---|
| 261 | |
---|
[96fb8ad] | 262 | |
---|
| 263 | /* jack */ |
---|
| 264 | #ifdef JACK_SUPPORT |
---|
| 265 | extern aubio_jack_t * new_aubio_jack (uint_t inchannels, uint_t outchannels, aubio_process_func_t callback); |
---|
| 266 | typedef int (*aubio_process_func_t)(smpl_t **input, smpl_t **output, int nframes); |
---|
| 267 | extern uint_t aubio_jack_activate(aubio_jack_t *jack_setup); |
---|
| 268 | extern void aubio_jack_close(aubio_jack_t *jack_setup); |
---|
| 269 | #endif |
---|
| 270 | |
---|
| 271 | /* midi */ |
---|
| 272 | enum aubio_midi_event_type { |
---|
| 273 | /* channel messages */ |
---|
| 274 | NOTE_OFF = 0x80, |
---|
| 275 | NOTE_ON = 0x90, |
---|
| 276 | KEY_PRESSURE = 0xa0, |
---|
| 277 | CONTROL_CHANGE = 0xb0, |
---|
| 278 | PROGRAM_CHANGE = 0xc0, |
---|
| 279 | CHANNEL_PRESSURE = 0xd0, |
---|
| 280 | PITCH_BEND = 0xe0, |
---|
| 281 | /* system exclusive */ |
---|
| 282 | MIDI_SYSEX = 0xf0, |
---|
| 283 | /* system common - never in midi files */ |
---|
| 284 | MIDI_TIME_CODE = 0xf1, |
---|
| 285 | MIDI_SONG_POSITION = 0xf2, |
---|
| 286 | MIDI_SONG_SELECT = 0xf3, |
---|
| 287 | MIDI_TUNE_REQUEST = 0xf6, |
---|
| 288 | MIDI_EOX = 0xf7, |
---|
| 289 | /* system real-time - never in midi files */ |
---|
| 290 | MIDI_SYNC = 0xf8, |
---|
| 291 | MIDI_TICK = 0xf9, |
---|
| 292 | MIDI_START = 0xfa, |
---|
| 293 | MIDI_CONTINUE = 0xfb, |
---|
| 294 | MIDI_STOP = 0xfc, |
---|
| 295 | MIDI_ACTIVE_SENSING = 0xfe, |
---|
| 296 | MIDI_SYSTEM_RESET = 0xff, |
---|
| 297 | /* meta event - for midi files only */ |
---|
| 298 | MIDI_META_EVENT = 0xff |
---|
| 299 | }; |
---|
| 300 | |
---|
| 301 | enum aubio_midi_control_change { |
---|
| 302 | BANK_SELECT_MSB = 0x00, |
---|
| 303 | MODULATION_MSB = 0x01, |
---|
| 304 | BREATH_MSB = 0x02, |
---|
| 305 | FOOT_MSB = 0x04, |
---|
| 306 | PORTAMENTO_TIME_MSB = 0x05, |
---|
| 307 | DATA_ENTRY_MSB = 0x06, |
---|
| 308 | VOLUME_MSB = 0x07, |
---|
| 309 | BALANCE_MSB = 0x08, |
---|
| 310 | PAN_MSB = 0x0A, |
---|
| 311 | EXPRESSION_MSB = 0x0B, |
---|
| 312 | EFFECTS1_MSB = 0x0C, |
---|
| 313 | EFFECTS2_MSB = 0x0D, |
---|
| 314 | GPC1_MSB = 0x10, /* general purpose controller */ |
---|
| 315 | GPC2_MSB = 0x11, |
---|
| 316 | GPC3_MSB = 0x12, |
---|
| 317 | GPC4_MSB = 0x13, |
---|
| 318 | BANK_SELECT_LSB = 0x20, |
---|
| 319 | MODULATION_WHEEL_LSB = 0x21, |
---|
| 320 | BREATH_LSB = 0x22, |
---|
| 321 | FOOT_LSB = 0x24, |
---|
| 322 | PORTAMENTO_TIME_LSB = 0x25, |
---|
| 323 | DATA_ENTRY_LSB = 0x26, |
---|
| 324 | VOLUME_LSB = 0x27, |
---|
| 325 | BALANCE_LSB = 0x28, |
---|
| 326 | PAN_LSB = 0x2A, |
---|
| 327 | EXPRESSION_LSB = 0x2B, |
---|
| 328 | EFFECTS1_LSB = 0x2C, |
---|
| 329 | EFFECTS2_LSB = 0x2D, |
---|
| 330 | GPC1_LSB = 0x30, |
---|
| 331 | GPC2_LSB = 0x31, |
---|
| 332 | GPC3_LSB = 0x32, |
---|
| 333 | GPC4_LSB = 0x33, |
---|
| 334 | SUSTAIN_SWITCH = 0x40, |
---|
| 335 | PORTAMENTO_SWITCH = 0x41, |
---|
| 336 | SOSTENUTO_SWITCH = 0x42, |
---|
| 337 | SOFT_PEDAL_SWITCH = 0x43, |
---|
| 338 | LEGATO_SWITCH = 0x45, |
---|
| 339 | HOLD2_SWITCH = 0x45, |
---|
| 340 | SOUND_CTRL1 = 0x46, |
---|
| 341 | SOUND_CTRL2 = 0x47, |
---|
| 342 | SOUND_CTRL3 = 0x48, |
---|
| 343 | SOUND_CTRL4 = 0x49, |
---|
| 344 | SOUND_CTRL5 = 0x4A, |
---|
| 345 | SOUND_CTRL6 = 0x4B, |
---|
| 346 | SOUND_CTRL7 = 0x4C, |
---|
| 347 | SOUND_CTRL8 = 0x4D, |
---|
| 348 | SOUND_CTRL9 = 0x4E, |
---|
| 349 | SOUND_CTRL10 = 0x4F, |
---|
| 350 | GPC5 = 0x50, |
---|
| 351 | GPC6 = 0x51, |
---|
| 352 | GPC7 = 0x52, |
---|
| 353 | GPC8 = 0x53, |
---|
| 354 | PORTAMENTO_CTRL = 0x54, |
---|
| 355 | EFFECTS_DEPTH1 = 0x5B, |
---|
| 356 | EFFECTS_DEPTH2 = 0x5C, |
---|
| 357 | EFFECTS_DEPTH3 = 0x5D, |
---|
| 358 | EFFECTS_DEPTH4 = 0x5E, |
---|
| 359 | EFFECTS_DEPTH5 = 0x5F, |
---|
| 360 | DATA_ENTRY_INCR = 0x60, |
---|
| 361 | DATA_ENTRY_DECR = 0x61, |
---|
| 362 | NRPN_LSB = 0x62, |
---|
| 363 | NRPN_MSB = 0x63, |
---|
| 364 | RPN_LSB = 0x64, |
---|
| 365 | RPN_MSB = 0x65, |
---|
| 366 | ALL_SOUND_OFF = 0x78, |
---|
| 367 | ALL_CTRL_OFF = 0x79, |
---|
| 368 | LOCAL_CONTROL = 0x7A, |
---|
| 369 | ALL_NOTES_OFF = 0x7B, |
---|
| 370 | OMNI_OFF = 0x7C, |
---|
| 371 | OMNI_ON = 0x7D, |
---|
| 372 | POLY_OFF = 0x7E, |
---|
| 373 | POLY_ON = 0x7F |
---|
| 374 | }; |
---|
| 375 | |
---|
| 376 | enum midi_meta_event { |
---|
| 377 | MIDI_COPYRIGHT = 0x02, |
---|
| 378 | MIDI_TRACK_NAME = 0x03, |
---|
| 379 | MIDI_INST_NAME = 0x04, |
---|
| 380 | MIDI_LYRIC = 0x05, |
---|
| 381 | MIDI_MARKER = 0x06, |
---|
| 382 | MIDI_CUE_POINT = 0x07, |
---|
| 383 | MIDI_EOT = 0x2f, |
---|
| 384 | MIDI_SET_TEMPO = 0x51, |
---|
| 385 | MIDI_SMPTE_OFFSET = 0x54, |
---|
| 386 | MIDI_TIME_SIGNATURE = 0x58, |
---|
| 387 | MIDI_KEY_SIGNATURE = 0x59, |
---|
| 388 | MIDI_SEQUENCER_EVENT = 0x7f |
---|
| 389 | }; |
---|
| 390 | |
---|
| 391 | enum aubio_player_status |
---|
| 392 | { |
---|
| 393 | AUBIO_MIDI_PLAYER_READY, |
---|
| 394 | AUBIO_MIDI_PLAYER_PLAYING, |
---|
| 395 | AUBIO_MIDI_PLAYER_DONE |
---|
| 396 | }; |
---|
| 397 | |
---|
| 398 | enum aubio_driver_status |
---|
| 399 | { |
---|
| 400 | AUBIO_MIDI_READY, |
---|
| 401 | AUBIO_MIDI_LISTENING, |
---|
| 402 | AUBIO_MIDI_DONE |
---|
| 403 | }; |
---|
| 404 | |
---|
| 405 | /* midi event */ |
---|
| 406 | aubio_midi_event_t* new_aubio_midi_event(void); |
---|
| 407 | int del_aubio_midi_event(aubio_midi_event_t* event); |
---|
| 408 | int aubio_midi_event_set_type(aubio_midi_event_t* evt, int type); |
---|
| 409 | int aubio_midi_event_get_type(aubio_midi_event_t* evt); |
---|
| 410 | int aubio_midi_event_set_channel(aubio_midi_event_t* evt, int chan); |
---|
| 411 | int aubio_midi_event_get_channel(aubio_midi_event_t* evt); |
---|
| 412 | int aubio_midi_event_get_key(aubio_midi_event_t* evt); |
---|
| 413 | int aubio_midi_event_set_key(aubio_midi_event_t* evt, int key); |
---|
| 414 | int aubio_midi_event_get_velocity(aubio_midi_event_t* evt); |
---|
| 415 | int aubio_midi_event_set_velocity(aubio_midi_event_t* evt, int vel); |
---|
| 416 | int aubio_midi_event_get_control(aubio_midi_event_t* evt); |
---|
| 417 | int aubio_midi_event_set_control(aubio_midi_event_t* evt, int ctrl); |
---|
| 418 | int aubio_midi_event_get_value(aubio_midi_event_t* evt); |
---|
| 419 | int aubio_midi_event_set_value(aubio_midi_event_t* evt, int val); |
---|
| 420 | int aubio_midi_event_get_program(aubio_midi_event_t* evt); |
---|
| 421 | int aubio_midi_event_set_program(aubio_midi_event_t* evt, int val); |
---|
| 422 | int aubio_midi_event_get_pitch(aubio_midi_event_t* evt); |
---|
| 423 | int aubio_midi_event_set_pitch(aubio_midi_event_t* evt, int val); |
---|
| 424 | int aubio_midi_event_length(unsigned char status); |
---|
| 425 | |
---|
| 426 | /* midi track */ |
---|
| 427 | aubio_track_t* new_aubio_track(int num); |
---|
| 428 | int del_aubio_track(aubio_track_t* track); |
---|
| 429 | int aubio_track_set_name(aubio_track_t* track, char* name); |
---|
| 430 | char* aubio_track_get_name(aubio_track_t* track); |
---|
| 431 | int aubio_track_add_event(aubio_track_t* track, aubio_midi_event_t* evt); |
---|
| 432 | aubio_midi_event_t* aubio_track_first_event(aubio_track_t* track); |
---|
| 433 | aubio_midi_event_t* aubio_track_next_event(aubio_track_t* track); |
---|
| 434 | int aubio_track_get_duration(aubio_track_t* track); |
---|
| 435 | int aubio_track_reset(aubio_track_t* track); |
---|
| 436 | int aubio_track_count_events(aubio_track_t* track, int* on, int* off); |
---|
| 437 | |
---|
| 438 | /* midi player */ |
---|
| 439 | aubio_midi_player_t* new_aubio_midi_player(void); |
---|
| 440 | sint_t del_aubio_midi_player(aubio_midi_player_t* player); |
---|
| 441 | sint_t aubio_midi_player_reset(aubio_midi_player_t* player); |
---|
| 442 | sint_t aubio_midi_player_add_track(aubio_midi_player_t* player, aubio_track_t* track); |
---|
| 443 | sint_t aubio_midi_player_count_tracks(aubio_midi_player_t* player); |
---|
| 444 | aubio_track_t* aubio_midi_player_get_track(aubio_midi_player_t* player, sint_t i); |
---|
| 445 | sint_t aubio_midi_player_add(aubio_midi_player_t* player, char* midifile); |
---|
| 446 | sint_t aubio_midi_player_load(aubio_midi_player_t* player, char *filename); |
---|
| 447 | sint_t aubio_midi_player_callback(void* data, uint_t msec); |
---|
| 448 | sint_t aubio_midi_player_play(aubio_midi_player_t* player); |
---|
| 449 | sint_t aubio_midi_player_play_offline(aubio_midi_player_t* player); |
---|
| 450 | sint_t aubio_midi_player_stop(aubio_midi_player_t* player); |
---|
| 451 | sint_t aubio_midi_player_set_loop(aubio_midi_player_t* player, sint_t loop); |
---|
| 452 | sint_t aubio_midi_player_set_midi_tempo(aubio_midi_player_t* player, sint_t tempo); |
---|
| 453 | sint_t aubio_midi_player_set_bpm(aubio_midi_player_t* player, sint_t bpm); |
---|
| 454 | sint_t aubio_midi_player_join(aubio_midi_player_t* player); |
---|
| 455 | sint_t aubio_track_send_events(aubio_track_t* track, |
---|
| 456 | /* aubio_synth_t* synth, */ |
---|
| 457 | aubio_midi_player_t* player, |
---|
| 458 | uint_t ticks); |
---|
| 459 | sint_t aubio_midi_send_event(aubio_midi_player_t* player, aubio_midi_event_t* event); |
---|
| 460 | |
---|
| 461 | /* midi parser */ |
---|
| 462 | aubio_midi_parser_t* new_aubio_midi_parser(void); |
---|
| 463 | int del_aubio_midi_parser(aubio_midi_parser_t* parser); |
---|
| 464 | aubio_midi_event_t* aubio_midi_parser_parse(aubio_midi_parser_t* parser, unsigned char c); |
---|
| 465 | |
---|
| 466 | /* midi file */ |
---|
| 467 | aubio_midi_file_t* new_aubio_midi_file(char* filename); |
---|
| 468 | void del_aubio_midi_file(aubio_midi_file_t* mf); |
---|
| 469 | int aubio_midi_file_read_mthd(aubio_midi_file_t* midifile); |
---|
| 470 | int aubio_midi_file_load_tracks(aubio_midi_file_t* midifile, aubio_midi_player_t* player); |
---|
| 471 | int aubio_midi_file_read_track(aubio_midi_file_t* mf, aubio_midi_player_t* player, int num); |
---|
| 472 | int aubio_midi_file_read_event(aubio_midi_file_t* mf, aubio_track_t* track); |
---|
| 473 | int aubio_midi_file_read_varlen(aubio_midi_file_t* mf); |
---|
| 474 | int aubio_midi_file_getc(aubio_midi_file_t* mf); |
---|
| 475 | int aubio_midi_file_push(aubio_midi_file_t* mf, int c); |
---|
| 476 | int aubio_midi_file_read(aubio_midi_file_t* mf, void* buf, int len); |
---|
| 477 | int aubio_midi_file_skip(aubio_midi_file_t* mf, int len); |
---|
| 478 | int aubio_midi_file_read_tracklen(aubio_midi_file_t* mf); |
---|
| 479 | int aubio_midi_file_eot(aubio_midi_file_t* mf); |
---|
| 480 | int aubio_midi_file_get_division(aubio_midi_file_t* midifile); |
---|
| 481 | |
---|
| 482 | |
---|
| 483 | /* midi driver */ |
---|
| 484 | aubio_midi_driver_t* new_aubio_midi_driver(char * name, |
---|
| 485 | handle_midi_event_func_t handler, void* event_handler_data); |
---|
| 486 | typedef int* (handle_midi_event_func_t) (void* data, aubio_midi_event_t* event); |
---|
| 487 | void del_aubio_midi_driver(aubio_midi_driver_t* driver); |
---|
| 488 | void aubio_midi_driver_settings(aubio_settings_t* settings); |
---|
| 489 | |
---|
| 490 | /* timer */ |
---|
| 491 | /* |
---|
| 492 | extern aubio_timer_t* new_aubio_timer(int msec, int * callback, |
---|
| 493 | void* data, int new_thread, int auto_destroy); |
---|
| 494 | extern int aubio_timer_join(aubio_timer_t* timer); |
---|
| 495 | extern int aubio_timer_stop(aubio_timer_t* timer); |
---|
| 496 | extern int delete_aubio_timer(aubio_timer_t* timer); |
---|
| 497 | extern void * aubio_timer_start(void * data); |
---|
| 498 | extern void aubio_time_config(void); |
---|
| 499 | */ |
---|
| 500 | |
---|
| 501 | /* list */ |
---|
| 502 | /* |
---|
| 503 | extern struct aubio_list_t* new_aubio_list(void); |
---|
| 504 | extern void del_aubio_list(struct aubio_list_t *list); |
---|
| 505 | extern void del_aubio_list1(struct aubio_list_t *list); |
---|
| 506 | #extern struct aubio_list_t* aubio_list_sort(struct aubio_list_t *list, aubio_compare_func_t compare_func); |
---|
| 507 | extern struct aubio_list_t* aubio_list_append(struct aubio_list_t *list, void* data); |
---|
| 508 | extern struct aubio_list_t* aubio_list_prepend(struct aubio_list_t *list, void* data); |
---|
| 509 | extern struct aubio_list_t* aubio_list_remove(struct aubio_list_t *list, void* data); |
---|
| 510 | extern struct aubio_list_t* aubio_list_remove_link(struct aubio_list_t *list, struct aubio_list_t *llink); |
---|
| 511 | extern struct aubio_list_t* aubio_list_nth(struct aubio_list_t *list, int n); |
---|
| 512 | extern struct aubio_list_t* aubio_list_last(struct aubio_list_t *list); |
---|
| 513 | extern struct aubio_list_t* aubio_list_insert_at(struct aubio_list_t *list, int n, void* data); |
---|
| 514 | */ |
---|