source: swig/aubio.i @ c7f32b1

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

aubio.i: add specflux

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