From: Paul Brossier Date: Sun, 12 Aug 2018 20:36:58 +0000 (+0200) Subject: src/spectral/dct.c: ooura supports any power of 2 X-Git-Tag: 0.4.7~20^2~10 X-Git-Url: https://git.aubio.org/?p=aubio.git;a=commitdiff_plain;h=e458af4c9c2d0c9cbe4b8d7b81cedf3e4b215388 src/spectral/dct.c: ooura supports any power of 2 --- diff --git a/src/spectral/dct.c b/src/spectral/dct.c index e700104c..85c0098e 100644 --- a/src/spectral/dct.c +++ b/src/spectral/dct.c @@ -124,8 +124,8 @@ aubio_dct_t* new_aubio_dct (uint_t size) { goto plain; } #else - // ooura does not support sizes < 16 or non-power of 2 - if (aubio_is_power_of_two(size) != 1 || size < 16) { + // ooura support sizes that are power of 2 + if (aubio_is_power_of_two(size) != 1) { goto plain; } s->dct = (void *)new_aubio_dct_ooura (size);