feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change
on this file since 1342c2f was
21f0655,
checked in by Paul Brossier <piem@piem.org>, 15 years ago
|
tests/src: add AUBIO_UNSTABLE where needed
|
-
Property mode set to
100644
|
File size:
789 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 | uint_t hop_s = win_s/4; /* hop size */ |
---|
| 9 | uint_t channels = 1; /* number of channel */ |
---|
| 10 | cvec_t * in = new_cvec (win_s, channels); /* input buffer */ |
---|
[e5757cf] | 11 | fvec_t * out = new_fvec (1, channels); /* input buffer */ |
---|
| 12 | |
---|
| 13 | aubio_pitchmcomb_t * o = new_aubio_pitchmcomb(win_s, hop_s, channels); |
---|
[4e9101e] | 14 | uint_t i = 0; |
---|
| 15 | |
---|
| 16 | while (i < 1000) { |
---|
[e5757cf] | 17 | aubio_pitchmcomb_do (o,in, out); |
---|
[4e9101e] | 18 | i++; |
---|
| 19 | }; |
---|
| 20 | |
---|
| 21 | del_aubio_pitchmcomb(o); |
---|
| 22 | del_cvec(in); |
---|
[e5757cf] | 23 | del_fvec(out); |
---|
[4e9101e] | 24 | aubio_cleanup(); |
---|
| 25 | |
---|
| 26 | return 0; |
---|
| 27 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.