source: tests/src/test-filterbank.c @ 2f64b0e

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

rename vec_min and vec_min_elem to fvec_min and fvec_max_elem

  • Property mode set to 100644
File size: 873 bytes
Line 
1#include <stdio.h>
2#include <aubio.h>
3
4int
5main (void)
6{
7  /* allocate some memory */
8  uint_t win_s = 1024;          /* window size */
9  uint_t channels = 2;          /* number of channel */
10  uint_t n_filters = 13;        /* number of filters */
11  cvec_t *in = new_cvec (win_s, channels);      /* input buffer */
12  fvec_t *out = new_fvec (win_s, channels);     /* input buffer */
13  fvec_t *coeffs = NULL;
14
15  /* allocate fft and other memory space */
16  aubio_filterbank_t *o = new_aubio_filterbank (n_filters, win_s);
17
18  coeffs = aubio_filterbank_get_coeffs (o);
19  if (coeffs == NULL) {
20    return -1;
21  }
22
23  if (fvec_max (coeffs) != 0.) {
24    return -1;
25  }
26
27  if (fvec_min (coeffs) != 0.) {
28    return -1;
29  }
30
31  fvec_print (coeffs);
32
33  aubio_filterbank_do (o, in, out);
34
35  del_aubio_filterbank (o);
36  del_cvec (in);
37  del_fvec (out);
38  aubio_cleanup ();
39
40  return 0;
41}
Note: See TracBrowser for help on using the repository browser.