From 6124059c77f482ad272b2ce9fc4a45d91edf4245 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 26 Nov 2018 16:27:58 +0100 Subject: [PATCH] [dct] remove size check to test each method --- src/spectral/dct.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/spectral/dct.c b/src/spectral/dct.c index 1a2e5109..debe4e7c 100644 --- a/src/spectral/dct.c +++ b/src/spectral/dct.c @@ -81,7 +81,6 @@ struct _aubio_dct_t { aubio_dct_t* new_aubio_dct (uint_t size) { aubio_dct_t * s = AUBIO_NEW(aubio_dct_t); - if ((sint_t)size <= 0) goto beach; #if defined(HAVE_ACCELERATE) // vDSP supports sizes = f * 2 ** n, where n >= 4 and f in [1, 3, 5, 15] // see https://developer.apple.com/documentation/accelerate/1449930-vdsp_dct_createsetup -- 2.11.0