diff options
Diffstat (limited to 'common/rdft.h')
-rw-r--r-- | common/rdft.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/common/rdft.h b/common/rdft.h index 04582b1fec..4bbde45d35 100644 --- a/common/rdft.h +++ b/common/rdft.h @@ -31,10 +31,10 @@ #include "common/math.h" #include "common/fft.h" -namespace Common { +#include "common/cosinetables.h" +#include "common/sinetables.h" -class SineTable; -class CosineTable; +namespace Common { /** * (Inverse) Real Discrete Fourier Transform. @@ -62,8 +62,8 @@ private: int _inverse; int _signConvention; - SineTable *_sin; - CosineTable *_cos; + SineTable _sin; + CosineTable _cos; const float *_tSin; const float *_tCos; |