From ed037a527cae1c90baca7ed3bdfae755088395d7 Mon Sep 17 00:00:00 2001 From: Bastien Bouclet Date: Sun, 1 Feb 2015 10:35:23 +0100 Subject: COMMON: Add getRevTab to FFT --- common/fft.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'common/fft.cpp') 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; -- cgit v1.2.3