source:
tests/src/pitch/test-pitchyinfft.c
@
f400ea1
Last change on this file since f400ea1 was 02418f6, checked in by , 12 years ago | |
---|---|
|
|
File size: 660 bytes |
Rev | Line | |
---|---|---|
[21f0655] | 1 | #define AUBIO_UNSTABLE 1 |
2 | ||
[4e9101e] | 3 | #include <aubio.h> |
4 | ||
5 | int main(){ | |
6 | /* allocate some memory */ | |
7 | uint_t win_s = 1024; /* window size */ | |
[aea235c] | 8 | fvec_t * in = new_fvec (win_s); /* input buffer */ |
9 | fvec_t * out = new_fvec (1); /* output pitch periods */ | |
[4e9101e] | 10 | aubio_pitchyinfft_t * o = new_aubio_pitchyinfft(win_s); |
[22d33e2] | 11 | aubio_pitchyinfft_set_tolerance (o, 0.2); |
[4e9101e] | 12 | uint_t i = 0; |
13 | ||
14 | while (i < 10) { | |
[22d33e2] | 15 | aubio_pitchyinfft_do (o,in,out); |
[4e9101e] | 16 | i++; |
17 | }; | |
18 | ||
19 | del_aubio_pitchyinfft(o); | |
20 | del_fvec(in); | |
[46ba93b] | 21 | del_fvec(out); |
[4e9101e] | 22 | aubio_cleanup(); |
23 | ||
24 | return 0; | |
25 | } | |
26 |
Note: See TracBrowser
for help on using the repository browser.