source: swig/aubio.i @ 98ef4df

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 98ef4df was 5cf415f, checked in by Paul Brossier <piem@altern.org>, 19 years ago

protected onset enumerators, factorise python check_modes

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