feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change
on this file since 5525507 was
158e031,
checked in by Paul Brossier <piem@piem.org>, 11 years ago
|
tests/: add void to prototypes to build with -Wstrict-prototypes
|
-
Property mode set to
100644
|
File size:
637 bytes
|
Rev | Line | |
---|
[4219f8a] | 1 | #define AUBIO_UNSTABLE 1 |
---|
| 2 | |
---|
| 3 | // this file uses the unstable aubio api, please use aubio_pitch instead |
---|
| 4 | // see src/pitch/pitch.h and tests/src/pitch/test-pitch.c |
---|
| 5 | |
---|
| 6 | #include <aubio.h> |
---|
| 7 | |
---|
[158e031] | 8 | int main (void) |
---|
[4219f8a] | 9 | { |
---|
| 10 | uint_t n = 10; // compute n times |
---|
| 11 | uint_t win_s = 1024; // window size |
---|
| 12 | // create some vectors |
---|
| 13 | fvec_t * in = new_fvec (win_s); // input buffer |
---|
| 14 | fvec_t * out = new_fvec (1); // input buffer |
---|
| 15 | // create pitch object |
---|
| 16 | aubio_pitchspecacf_t * o = new_aubio_pitchspecacf(win_s); |
---|
| 17 | |
---|
| 18 | while ( n-- ) { |
---|
| 19 | aubio_pitchspecacf_do(o,in, out); |
---|
| 20 | }; |
---|
| 21 | |
---|
| 22 | del_aubio_pitchspecacf(o); |
---|
| 23 | del_fvec(in); |
---|
| 24 | del_fvec(out); |
---|
| 25 | aubio_cleanup(); |
---|
| 26 | |
---|
| 27 | return 0; |
---|
| 28 | } |
---|
| 29 | |
---|
Note: See
TracBrowser
for help on using the repository browser.