ref: 3c18f9ee1f7276f0557e2f2ca1255f9955a1268e
dir: /tests/src/test-peakpick.c/
#include <aubio.h>
int main(){
/* allocate some memory */
uint_t win_s = 1024; /* window size */
uint_t channels = 1; /* number of channel */
fvec_t * in = new_fvec (win_s, channels); /* input buffer */
aubio_peakpicker_t * o = new_aubio_peakpicker(0.3);
aubio_peakpicker_do(o, in);
aubio_peakpicker_do(o, in);
aubio_peakpicker_do(o, in);
aubio_peakpicker_do(o, in);
del_aubio_peakpicker(o);
del_fvec(in);
return 0;
}