Skip to content

Commit

Permalink
common: fftlib - increase size limit for ffts
Browse files Browse the repository at this point in the history
a limit of 8192 seems to be too small for some use cases (ATK kernels)

Signed-off-by: Tim Blechmann <tim@klingt.org>
  • Loading branch information
timblechmann committed Nov 1, 2012
1 parent f2aedee commit ac1c548
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/common/SC_fftlib.h
Expand Up @@ -27,8 +27,8 @@ Copyright (c) 2008 Dan Stowell. All rights reserved.
// These specify the min & max FFT sizes expected (used when creating windows, also allocating some other arrays).
#define SC_FFT_MINSIZE 8
#define SC_FFT_LOG2_MINSIZE 3
#define SC_FFT_MAXSIZE 8192
#define SC_FFT_LOG2_MAXSIZE 13
#define SC_FFT_MAXSIZE 32768
#define SC_FFT_LOG2_MAXSIZE 15


// Note that things like *fftWindow actually allow for other sizes, to be created on user request.
Expand Down

0 comments on commit ac1c548

Please sign in to comment.