feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change
on this file since 20ae690 was
aea235c,
checked in by Paul Brossier <piem@piem.org>, 15 years ago
|
tests/src: switch to mono
|
-
Property mode set to
100644
|
File size:
564 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 (win_s/2); /* input buffer */ |
---|
[2ba3440] | 10 | aubio_pitchyin_t *p = new_aubio_pitchyin (win_s); |
---|
[4e9101e] | 11 | uint_t i = 0; |
---|
| 12 | |
---|
| 13 | while (i < 10) { |
---|
[2ba3440] | 14 | aubio_pitchyin_do (p, in,out); |
---|
[4e9101e] | 15 | i++; |
---|
| 16 | }; |
---|
| 17 | |
---|
| 18 | del_fvec(in); |
---|
| 19 | del_fvec(out); |
---|
| 20 | aubio_cleanup(); |
---|
| 21 | |
---|
| 22 | return 0; |
---|
| 23 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.