source: tests/src/test-resample.c @ 4621cd6

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

tests/src/test-resample.c: indent, no #ifdef here

  • Property mode set to 100644
File size: 580 bytes
Line 
1#include <stdio.h>
2#include <aubio.h>
3
4int
5main ()
6{
7  /* allocate some memory */
8  uint_t win_s = 1024;          /* window size */
9  uint_t channels = 1;          /* number of channel */
10  smpl_t ratio = 0.5;
11  fvec_t *in = new_fvec (win_s, channels);      /* input buffer */
12  fvec_t *out = new_fvec ((uint_t) (win_s * ratio), channels);  /* input buffer */
13  aubio_resampler_t *o = new_aubio_resampler (0.5, 0);
14  uint_t i = 0;
15
16  while (i < 10) {
17    aubio_resampler_do (o, in, out);
18    i++;
19  };
20
21  del_aubio_resampler (o);
22  del_fvec (in);
23  del_fvec (out);
24
25  return 0;
26}
Note: See TracBrowser for help on using the repository browser.