|
CSI-DSP
Version 1.0.0
CSI DSP Software Library
|
Functions | |
| void | csky_radix4_butterfly_f32 (float32_t *pSrc, uint16_t fftLen, float32_t *pCoef, uint16_t twidCoefModifier) |
| void | csky_radix4_butterfly_inverse_f32 (float32_t *pSrc, uint16_t fftLen, float32_t *pCoef, uint16_t twidCoefModifier, float32_t onebyfftLen) |
| void | csky_bitreversal_f32 (float32_t *pSrc, uint16_t fftSize, uint16_t bitRevFactor, uint16_t *pBitRevTab) |
| void | csky_split_rfft_f32 (float32_t *pSrc, uint32_t fftLen, float32_t *pATable, float32_t *pBTable, float32_t *pDst, uint32_t modifier) |
| Core Real FFT process. More... | |
| void | csky_split_rifft_f32 (float32_t *pSrc, uint32_t fftLen, float32_t *pATable, float32_t *pBTable, float32_t *pDst, uint32_t modifier) |
| Core Real IFFT process. More... | |
| void | csky_rfft_f32 (const csky_rfft_instance_f32 *S, float32_t *pSrc, float32_t *pDst) |
| Processing function for the floating-point RFFT/RIFFT. More... | |
| void csky_bitreversal_f32 | ( | float32_t * | pSrc, |
| uint16_t | fftSize, | ||
| uint16_t | bitRevFactor, | ||
| uint16_t * | pBitRevTab | ||
| ) |
| void csky_radix4_butterfly_f32 | ( | float32_t * | pSrc, |
| uint16_t | fftLen, | ||
| float32_t * | pCoef, | ||
| uint16_t | twidCoefModifier | ||
| ) |
| void csky_radix4_butterfly_inverse_f32 | ( | float32_t * | pSrc, |
| uint16_t | fftLen, | ||
| float32_t * | pCoef, | ||
| uint16_t | twidCoefModifier, | ||
| float32_t | onebyfftLen | ||
| ) |
| void csky_rfft_f32 | ( | const csky_rfft_instance_f32 * | S, |
| float32_t * | pSrc, | ||
| float32_t * | pDst | ||
| ) |
| [in] | *S | points to an instance of the floating-point RFFT/RIFFT structure. |
| [in] | *pSrc | points to the input buffer. |
| [out] | *pDst | points to the output buffer. |
| void csky_split_rifft_f32 | ( | float32_t * | pSrc, |
| uint32_t | fftLen, | ||
| float32_t * | pATable, | ||
| float32_t * | pBTable, | ||
| float32_t * | pDst, | ||
| uint32_t | modifier | ||
| ) |
| [in] | *pSrc | points to the input buffer. |
| [in] | fftLen | length of FFT. |
| [in] | *pATable | points to the twiddle Coef A buffer. |
| [in] | *pBTable | points to the twiddle Coef B buffer. |
| [out] | *pDst | points to the output buffer. |
| [in] | modifier | twiddle coefficient modifier that supports different size FFTs with the same twiddle factor table. |