source: tests/src/test-pitchdetection.c @ f1b6aad

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

src/pitch: use a string to set pitch method, add a new function to set pitch unit, keep pitch enums private, update pitch methods where they are used

  • Property mode set to 100644
File size: 679 bytes
Line 
1#include <aubio.h>
2
3int
4main ()
5{
6  /* allocate some memory */
7  uint_t win_s = 1024;          /* window size */
8  uint_t hop_s = win_s / 4;     /* hop size */
9  uint_t samplerate = 44100;    /* samplerate */
10  uint_t channels = 1;          /* number of channel */
11  fvec_t *in = new_fvec (hop_s, channels);      /* input buffer */
12  fvec_t *out = new_fvec (1, channels); /* input buffer */
13  aubio_pitchdetection_t *o =
14      new_aubio_pitchdetection ("default", win_s, hop_s, channels, samplerate);
15  uint_t i = 0;
16
17  while (i < 100) {
18    aubio_pitchdetection_do (o, in, out);
19    i++;
20  };
21
22  del_aubio_pitchdetection (o);
23  del_fvec (in);
24  aubio_cleanup ();
25
26  return 0;
27}
Note: See TracBrowser for help on using the repository browser.