32e144d6f2945f60f0c956955b8f47ed192e2725
[aubio.git] / tests / src / pitch / test-pitchyinfft.c
1 #define AUBIO_UNSTABLE 1
2
3 #include <aubio.h>
4
5 int main(){
6         /* allocate some memory */
7         uint_t win_s      = 1024;                       /* window size */
8         fvec_t * in       = new_fvec (win_s); /* input buffer */
9         fvec_t * out      = new_fvec (1); /* output pitch periods */
10         aubio_pitchyinfft_t * o  = new_aubio_pitchyinfft(win_s);
11         aubio_pitchyinfft_set_tolerance (o, 0.2);
12         uint_t i = 0;
13
14         while (i < 10) {
15           aubio_pitchyinfft_do (o,in,out);
16           i++;
17         };
18
19         del_aubio_pitchyinfft(o);
20         del_fvec(in);
21         del_fvec(out);
22         aubio_cleanup();
23
24         return 0;
25 }
26