source: tests/src/pitch/test-pitchmcomb.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: 679 bytes
Line 
1#define AUBIO_UNSTABLE 1
2
3#include <aubio.h>
4
5int main(){
6        /* allocate some memory */
7        uint_t win_s      = 1024;                       /* window size */
8        uint_t hop_s      = win_s/4;                    /* hop size */
9        cvec_t * in       = new_cvec (win_s); /* input buffer */
10        fvec_t * out      = new_fvec (1); /* input buffer */
11
12        aubio_pitchmcomb_t * o  = new_aubio_pitchmcomb(win_s, hop_s);
13        uint_t i = 0;
14
15        while (i < 1000) {
16          aubio_pitchmcomb_do (o,in, out);
17          i++;
18        };
19
20        del_aubio_pitchmcomb(o);
21        del_cvec(in);
22        del_fvec(out);
23        aubio_cleanup();
24
25        return 0;
26}
Note: See TracBrowser for help on using the repository browser.