#define AUBIO_UNSTABLE 1 #include int main(){ /* allocate some memory */ uint_t win_s = 1024; /* window size */ uint_t hop_s = win_s/4; /* hop size */ uint_t channels = 1; /* number of channel */ cvec_t * in = new_cvec (win_s, channels); /* input buffer */ fvec_t * out = new_fvec (1, channels); /* input buffer */ aubio_pitchmcomb_t * o = new_aubio_pitchmcomb(win_s, hop_s, channels); uint_t i = 0; while (i < 1000) { aubio_pitchmcomb_do (o,in, out); i++; }; del_aubio_pitchmcomb(o); del_cvec(in); del_fvec(out); aubio_cleanup(); return 0; }