![]() |
STM32F769IDiscovery
1.00
uDANTE Audio Networking with STM32F7 DISCO board
|
#include "arm_math.h"
Go to the source code of this file.
Functions | |
void | arm_radix4_butterfly_q31 (q31_t *pSrc, uint32_t fftLen, q31_t *pCoef, uint32_t twidCoefModifier) |
Core function for the Q31 CFFT butterfly process. More... | |
void | arm_radix4_butterfly_inverse_q31 (q31_t *pSrc, uint32_t fftLen, q31_t *pCoef, uint32_t twidCoefModifier) |
Core function for the Q31 CIFFT butterfly process. More... | |
void | arm_bitreversal_32 (uint32_t *pSrc, const uint16_t bitRevLen, const uint16_t *pBitRevTable) |
void | arm_cfft_radix4by2_q31 (q31_t *pSrc, uint32_t fftLen, const q31_t *pCoef) |
void | arm_cfft_radix4by2_inverse_q31 (q31_t *pSrc, uint32_t fftLen, const q31_t *pCoef) |
void | arm_cfft_q31 (const arm_cfft_instance_q31 *S, q31_t *p1, uint8_t ifftFlag, uint8_t bitReverseFlag) |
Processing function for the fixed-point complex FFT in Q31 format. More... | |
void arm_bitreversal_32 | ( | uint32_t * | pSrc, |
const uint16_t | bitRevLen, | ||
const uint16_t * | pBitRevTable | ||
) |
Definition at line 206 of file arm_cfft_q31.c.
end of ComplexFFT group
Definition at line 146 of file arm_cfft_q31.c.
void arm_radix4_butterfly_inverse_q31 | ( | q31_t * | pSrc, |
uint32_t | fftLen, | ||
q31_t * | pCoef, | ||
uint32_t | twidCoefModifier | ||
) |
Core function for the Q31 CIFFT butterfly process.
[in,out] | *pSrc | points to the in-place buffer of Q31 data type. |
[in] | fftLen | length of the FFT. |
[in] | *pCoef | points to twiddle coefficient buffer. |
[in] | twidCoefModifier | twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. |
Definition at line 819 of file arm_cfft_radix4_q31.c.
void arm_radix4_butterfly_q31 | ( | q31_t * | pSrc, |
uint32_t | fftLen, | ||
q31_t * | pCoef, | ||
uint32_t | twidCoefModifier | ||
) |
Core function for the Q31 CFFT butterfly process.
end of ComplexFFT group
[in,out] | *pSrc | points to the in-place buffer of Q31 data type. |
[in] | fftLen | length of the FFT. |
[in] | *pCoef | points to twiddle coefficient buffer. |
[in] | twidCoefModifier | twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. |
Definition at line 163 of file arm_cfft_radix4_q31.c.