source: tests/src/test-pitchyin.c @ 7b485af

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 7b485af was 21f0655, checked in by Paul Brossier <piem@piem.org>, 14 years ago

tests/src: add AUBIO_UNSTABLE where needed

  • Property mode set to 100644
File size: 664 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 channels   = 1;                          /* number of channel */
9        fvec_t * in       = new_fvec (win_s, channels); /* input buffer */
10        fvec_t * out      = new_fvec (win_s/2, channels); /* input buffer */
11        aubio_pitchyin_t *p = new_aubio_pitchyin (win_s);
12        uint_t i = 0;
13
14        while (i < 10) {
15          aubio_pitchyin_do (p, in,out);
16          i++;
17        };
18
19        del_fvec(in);
20        del_fvec(out);
21        aubio_cleanup();
22
23        return 0;
24}
Note: See TracBrowser for help on using the repository browser.