This function applies a 2N-sample inverse Fast Fourier Transform. Audio is first interleaved if it is multichannel.
void IFFTDeinterleaved(
XMVECTOR __restrict *pReal,
const XMVECTOR __restrict *pImaginary,
const XMVECTOR __restrict *pUnityTable,
const size_t uChannelCount,
const size_t uLog2Length
)
pReal
Type: XMVECTOR __restrict *
[in, out] Real components of the FFT. It must have at least (1 << uLog2Length × uChannelCount) ÷ 4 elements.
pImaginary
Type: XMVECTOR __restrict *
[in] Imaginary components of the FFT. It must have at least (1 << uLog2Length × uChannelCount) ÷ 4 elements.
pUnityTable
Type: XMVECTOR __restrict *
[in] Unity table the FFT should use. It must have at least (1 << uLog2Length) elements. See FFTInitializeUnityTable for more information.
uChannelCount
Type: size_t
[in] Number of channels in the FFT. uChannelCount must be greater than zero.
uLog2Length
Type: size_t
[in] Log (base 2) of FFT length in frames. uLog2Length must be within [2, 10].
Type: void
Header: Declared in XDSP.h.
Namespace: Use XDSP.