ref: 18f316222e08e7a8136ee47b6de18a22afc8f904
parent: 98cc47571781ec63cb920acf8be9823f318d63e2
author: Paul Brossier <piem@piem.org>
date: Tue May 13 04:45:37 EDT 2008
tests/src/test-filter.c: add missing channels argument to new_aubio_cdsgn_filter
--- a/tests/src/test-filter.c
+++ b/tests/src/test-filter.c
@@ -8,7 +8,7 @@
fvec_t * out = new_fvec (win_s, channels); /* input buffer */
/* allocate fft and other memory space */
- aubio_filter_t * o = new_aubio_cdsgn_filter(44100);
+ aubio_filter_t * o = new_aubio_cdsgn_filter(44100, channels);
aubio_filter_do(o,in);
aubio_filter_do_outplace(o,in,out);