source: tests/src/test-scale.c @ 5f9df77

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

tests/src: switch to mono

  • Property mode set to 100644
File size: 510 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        fvec_t * in       = new_fvec (win_s); /* input buffer */
9        aubio_scale_t * o = new_aubio_scale(0,1,2,3);
10        aubio_scale_set_limits (o,0,1,2,3);
11        uint_t i = 0;
12
13        while (i < 1000) {
14          aubio_scale_do(o,in);
15          i++;
16        };
17
18        del_aubio_scale(o);
19        del_fvec(in);
20
21        return 0;
22}
Note: See TracBrowser for help on using the repository browser.