diff options
Diffstat (limited to 'common/rdft.h')
-rw-r--r-- | common/rdft.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/rdft.h b/common/rdft.h index 3bdc4b0cbc..3386940404 100644 --- a/common/rdft.h +++ b/common/rdft.h @@ -31,6 +31,9 @@ #include "common/math.h" #include "common/fft.h" +#include "common/cosinetables.h" +#include "common/sinetables.h" + namespace Common { /** @@ -62,6 +65,8 @@ private: int _inverse; int _signConvention; + SineTable _sin; + CosineTable _cos; const float *_tSin; const float *_tCos; |