feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change
on this file since 5f4fd2f was
9daf018,
checked in by Paul Brossier <piem@piem.org>, 15 years ago
|
tests/src/test-resample.c: run 10 times, update defines
|
-
Property mode set to
100644
|
File size:
837 bytes
|
Rev | Line | |
---|
[9daf018] | 1 | #include <stdio.h> |
---|
[4e9101e] | 2 | #include <aubio.h> |
---|
| 3 | |
---|
| 4 | int main(){ |
---|
[9daf018] | 5 | #if HAVE_SAMPLERATE |
---|
[4e9101e] | 6 | /* allocate some memory */ |
---|
| 7 | uint_t win_s = 1024; /* window size */ |
---|
| 8 | uint_t channels = 1; /* number of channel */ |
---|
| 9 | smpl_t ratio = 0.5; |
---|
| 10 | fvec_t * in = new_fvec (win_s, channels); /* input buffer */ |
---|
| 11 | fvec_t * out = new_fvec ((uint_t)(win_s*ratio), channels); /* input buffer */ |
---|
| 12 | aubio_resampler_t * o = new_aubio_resampler(0.5, 0); |
---|
| 13 | uint_t i = 0; |
---|
| 14 | |
---|
[9daf018] | 15 | while (i < 10) { |
---|
| 16 | aubio_resampler_do(o,in,out); |
---|
[4e9101e] | 17 | i++; |
---|
| 18 | }; |
---|
| 19 | |
---|
| 20 | del_aubio_resampler(o); |
---|
| 21 | del_fvec(in); |
---|
| 22 | del_fvec(out); |
---|
| 23 | |
---|
[9daf018] | 24 | #else |
---|
| 25 | fprintf(stderr, "aubio_resampler_t not compiled in\n"); |
---|
| 26 | #endif /* HAVE_SAMPLERATE */ |
---|
[4e9101e] | 27 | return 0; |
---|
| 28 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.