source: tests/src/onset/test-onset.c @ 02418f6

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 02418f6 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
RevLine 
[4e9101e]1#include <aubio.h>
2
3int main(){
4        /* allocate some memory */
5        uint_t win_s      = 1024;                       /* window size */
[aea235c]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.);
[4e9101e]9        uint_t i = 0;
10
11        while (i < 10) {
[a72f3f1]12          aubio_onset_do (onset,in,out);
[4e9101e]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.