source: swig/aubio.i @ 14aebce

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 14aebce was 914a8cc, checked in by Paul Brossier <piem@piem.org>, 17 years ago

aubio.i: add aubio_filterbank_get_channel function

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