From: Paul Brossier Date: Mon, 26 Nov 2018 16:09:08 +0000 (+0100) Subject: [tests] do not test dct with wrong sizes X-Git-Tag: 0.4.9~151 X-Git-Url: https://git.aubio.org/?p=aubio.git;a=commitdiff_plain;h=d050d027856aaf3d7758174da66504ae31eb6f31 [tests] do not test dct with wrong sizes --- diff --git a/tests/src/spectral/test-dct.c b/tests/src/spectral/test-dct.c index c896b930..8e388efc 100644 --- a/tests/src/spectral/test-dct.c +++ b/tests/src/spectral/test-dct.c @@ -18,8 +18,8 @@ int main (void) 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) {