[tests] do not test dct with wrong sizes
authorPaul Brossier <piem@piem.org>
Mon, 26 Nov 2018 16:09:08 +0000 (17:09 +0100)
committerPaul Brossier <piem@piem.org>
Mon, 26 Nov 2018 16:09:08 +0000 (17:09 +0100)
tests/src/spectral/test-dct.c

index c896b93..8e388ef 100644 (file)
@@ -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) {