source: tests/src/pitch/test-pitchspecacf.c @ 986131d

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5
Last change on this file since 986131d was 986131d, checked in by Eduard Müller <mueller.eduard@googlemail.com>, 7 years ago

Intel IPP support for aubio

See emuell/aubio/ intel_ipp2 for details please

  • Property mode set to 100644
File size: 656 bytes
Line 
1#define AUBIO_UNSTABLE 1
2
3// this file uses the unstable aubio api, please use aubio_pitch instead
4// see src/pitch/pitch.h and tests/src/pitch/test-pitch.c
5
6#include <aubio.h>
7
8int main (void)
9{
10  aubio_init();
11 
12  uint_t n = 10; // compute n times
13  uint_t win_s = 1024; // window size
14  // create some vectors
15  fvec_t * in = new_fvec (win_s); // input buffer
16  fvec_t * out = new_fvec (1); // input buffer
17  // create pitch object
18  aubio_pitchspecacf_t * o = new_aubio_pitchspecacf(win_s);
19
20  while ( n-- ) {
21    aubio_pitchspecacf_do(o,in, out);
22  };
23
24  del_aubio_pitchspecacf(o);
25  del_fvec(in);
26  del_fvec(out);
27  aubio_cleanup();
28
29  return 0;
30}
31
Note: See TracBrowser for help on using the repository browser.