source:
tests/src/test-pitchschmitt.c
@
3ac7cb0
Last change on this file since 3ac7cb0 was 21f0655, checked in by , 15 years ago | |
---|---|
|
|
File size: 610 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 */ | |
8 | fvec_t * in = new_fvec (win_s, 1); /* input buffer */ | |
[f162cf9] | 9 | fvec_t * out = new_fvec (1, 1); /* input buffer */ |
10 | aubio_pitchschmitt_t * o = new_aubio_pitchschmitt(win_s); | |
[4e9101e] | 11 | uint_t i = 0; |
12 | ||
13 | while (i < 1000) { | |
[f162cf9] | 14 | aubio_pitchschmitt_do (o,in, out); |
[4e9101e] | 15 | i++; |
16 | }; | |
17 | ||
18 | del_aubio_pitchschmitt(o); | |
19 | del_fvec(in); | |
[f162cf9] | 20 | del_fvec(out); |
[4e9101e] | 21 | aubio_cleanup(); |
22 | ||
23 | return 0; | |
24 | } | |
25 |
Note: See TracBrowser
for help on using the repository browser.