ref: d050d027856aaf3d7758174da66504ae31eb6f31
parent: 63c501547cdeb85b66336d34c0f32995f5aad949
author: Paul Brossier <piem@piem.org>
date: Mon Nov 26 12:09:08 EST 2018
[tests] do not test dct with wrong sizes
--- a/tests/src/spectral/test-dct.c
+++ b/tests/src/spectral/test-dct.c
@@ -18,8 +18,8 @@
fvec_t * out = new_fvec (win_s); // input buffer
if ((tmp = new_aubio_dct(1)) == 0) return 1;
- aubio_dct_do(tmp, dctout, out);
- aubio_dct_rdo(tmp, dctout, out);
+ //aubio_dct_do(tmp, dctout, out);
+ //aubio_dct_rdo(tmp, dctout, out);
del_aubio_dct(tmp);
if (!dct || !in || !dctout) {