feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change
on this file since e76842e 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:
510 bytes
|
Rev | Line | |
---|
[21f0655] | 1 | #define AUBIO_UNSTABLE 1 |
---|
| 2 | |
---|
[4e9101e] | 3 | #include <aubio.h> |
---|
| 4 | |
---|
[158e031] | 5 | int main (void) |
---|
[26775a3] | 6 | { |
---|
| 7 | uint_t win_s = 1024; // window size |
---|
| 8 | fvec_t * in = new_fvec (win_s); // input buffer |
---|
| 9 | fvec_t * out = new_fvec (1); // input buffer |
---|
| 10 | aubio_peakpicker_t * o = new_aubio_peakpicker(); |
---|
| 11 | aubio_peakpicker_set_threshold (o, 0.3); |
---|
[4e9101e] | 12 | |
---|
[26775a3] | 13 | aubio_peakpicker_do(o, in, out); |
---|
| 14 | aubio_peakpicker_do(o, in, out); |
---|
| 15 | aubio_peakpicker_do(o, in, out); |
---|
| 16 | aubio_peakpicker_do(o, in, out); |
---|
[4e9101e] | 17 | |
---|
[26775a3] | 18 | del_aubio_peakpicker(o); |
---|
| 19 | del_fvec(out); |
---|
| 20 | del_fvec(in); |
---|
| 21 | return 0; |
---|
[4e9101e] | 22 | } |
---|
| 23 | |
---|
Note: See
TracBrowser
for help on using the repository browser.