commit e80e1015ae7cfd71be2bb858f5c99817f48aa7c3
parent e4954a08299bac7b16408b0ac03f2655baaf8894
Author: [email protected] <[email protected]>
Date: Tue, 19 Nov 2019 22:12:19 +0000
Fix real DFT bug
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/kfr/dft/fft.hpp b/include/kfr/dft/fft.hpp
@@ -389,7 +389,7 @@ struct dft_plan_real : dft_plan<T>
KFR_MEM_INTRINSIC void execute(T* out, const complex<T>* in, u8* temp) const
{
complex<T>* outdata = ptr_cast<complex<T>>(out);
- fmt_stage->execute(cfalse, outdata, in, nullptr);
+ fmt_stage->execute(ctrue, outdata, in, nullptr);
this->execute_dft(ctrue, outdata, outdata, temp);
}