feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change
on this file since 3ac7cb0 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:
600 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 channels = 1; /* number of channel */ |
---|
| 9 | fvec_t * in = new_fvec (win_s, channels); /* input buffer */ |
---|
| 10 | aubio_scale_t * o = new_aubio_scale(0,1,2,3); |
---|
[0ce97483] | 11 | aubio_scale_set_limits (o,0,1,2,3); |
---|
[4e9101e] | 12 | uint_t i = 0; |
---|
| 13 | |
---|
| 14 | while (i < 1000) { |
---|
| 15 | aubio_scale_do(o,in); |
---|
| 16 | i++; |
---|
| 17 | }; |
---|
| 18 | |
---|
| 19 | del_aubio_scale(o); |
---|
| 20 | del_fvec(in); |
---|
| 21 | |
---|
| 22 | return 0; |
---|
| 23 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.