source: tests/src/utils/test-scale.c @ 8470144

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

tests/: add void to prototypes to build with -Wstrict-prototypes

  • Property mode set to 100644
File size: 370 bytes
RevLine 
[21f0655]1#define AUBIO_UNSTABLE 1
2
[4e9101e]3#include <aubio.h>
4
[158e031]5int main (void)
[abd326c]6{
7  uint_t n = 0;
8  uint_t win_s = 1024; // window size
9  fvec_t * in = new_fvec (win_s); // input buffer
10  aubio_scale_t * o = new_aubio_scale(0,1,2,3);
11  aubio_scale_set_limits (o,0,1,2,3);
[4e9101e]12
[abd326c]13  while (n < 1000) {
14    aubio_scale_do(o,in);
15    n++;
16  };
[4e9101e]17
[abd326c]18  del_aubio_scale(o);
19  del_fvec(in);
[4e9101e]20
[abd326c]21  return 0;
[4e9101e]22}
Note: See TracBrowser for help on using the repository browser.