move python/tests to tests/python, examples/tests to tests/src, add .bzrignore
[aubio.git] / tests / src / test-peakpick.c
1 #include <aubio.h>
2
3 int main(){
4         /* allocate some memory */
5         uint_t win_s      = 1024;                       /* window size */
6         uint_t channels   = 1;                          /* number of channel */
7         fvec_t * in       = new_fvec (win_s, channels); /* input buffer */
8         aubio_pickpeak_t * o = new_aubio_peakpicker(0.3);
9
10         aubio_peakpick_pimrt(in,o);
11         aubio_peakpick_pimrt(in,o);
12         aubio_peakpick_pimrt(in,o);
13         aubio_peakpick_pimrt(in,o);
14
15         del_aubio_peakpicker(o);
16         del_fvec(in);
17         return 0;
18 }
19