From: Paul Brossier Date: Wed, 16 Sep 2009 23:37:03 +0000 (+0200) Subject: test-filterbank.c: add trivial test for filterbank object X-Git-Tag: bzr2git~357 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=addc9ec3911bfdfdf3231242082406aa9f0e592b;p=aubio.git test-filterbank.c: add trivial test for filterbank object --- diff --git a/tests/src/Makefile.am b/tests/src/Makefile.am index b2bbf8a6..205af9e5 100644 --- a/tests/src/Makefile.am +++ b/tests/src/Makefile.am @@ -16,6 +16,7 @@ bin_PROGRAMS = \ test-resample \ test-peakpick \ test-phasevoc \ + test-filterbank \ test-phasevoc-jack \ test-onsetdetection \ test-pitchyin \ diff --git a/tests/src/test-filterbank.c b/tests/src/test-filterbank.c new file mode 100644 index 00000000..635d2fbe --- /dev/null +++ b/tests/src/test-filterbank.c @@ -0,0 +1,40 @@ +#include + +int +main (void) +{ + /* allocate some memory */ + uint_t win_s = 1024; /* window size */ + uint_t channels = 2; /* number of channel */ + uint_t n_filters = 13; /* number of filters */ + cvec_t *in = new_cvec (win_s, channels); /* input buffer */ + fvec_t *out = new_fvec (win_s, channels); /* input buffer */ + fvec_t *coeffs = NULL; + + /* allocate fft and other memory space */ + aubio_filterbank_t *o = new_aubio_filterbank (n_filters, win_s); + + coeffs = aubio_filterbank_get_coeffs (o); + if (coeffs == NULL) { + return -1; + } + + if (vec_max (coeffs) != 0.) { + return -1; + } + + if (vec_min (coeffs) != 0.) { + return -1; + } + + // fvec_print (coeffs); + + aubio_filterbank_do (o, in, out); + + del_aubio_filterbank (o); + del_cvec (in); + del_fvec (out); + aubio_cleanup (); + + return 0; +}