source: tests/src/onset/test-onset.c @ 248da64

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 248da64 was 02418f6, checked in by Paul Brossier <piem@piem.org>, 12 years ago

tests/: move file around to match src/

  • Property mode set to 100644
File size: 597 bytes
Line 
1#include <aubio.h>
2
3int main(){
4        /* allocate some memory */
5        uint_t win_s      = 1024;                       /* window size */
6        fvec_t * in       = new_fvec (win_s/4); /* input buffer */
7        fvec_t * out      = new_fvec (2);     /* input buffer */
8        aubio_onset_t * onset  = new_aubio_onset("complex", win_s, win_s/4, 44100.);
9        uint_t i = 0;
10
11        while (i < 10) {
12          aubio_onset_do (onset,in,out);
13          i++;
14        };
15
16        del_aubio_onset(onset);
17        del_fvec(in);
18        del_fvec(out);
19        aubio_cleanup();
20
21        return 0;
22}
Note: See TracBrowser for help on using the repository browser.