aboutsummaryrefslogtreecommitdiff
path: root/common/fft.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'common/fft.cpp')
-rw-r--r--common/fft.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/fft.cpp b/common/fft.cpp
index ac7386083f..477f7aca62 100644
--- a/common/fft.cpp
+++ b/common/fft.cpp
@@ -61,6 +61,10 @@ FFT::~FFT() {
delete[] _tmpBuf;
}
+const uint16 *FFT::getRevTab() const {
+ return _revTab;
+}
+
void FFT::permute(Complex *z) {
int np = 1 << _bits;