CSI-DSP  Version 1.0.0
CSI DSP Software Library
Functions
csky_rfft_f32.c File Reference

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...
 

Function Documentation

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 
)
Deprecated:
Do not use this function. It has been superceded by csky_rfft_fast_f32 and will be removed in the future.
Parameters
[in]*Spoints to an instance of the floating-point RFFT/RIFFT structure.
[in]*pSrcpoints to the input buffer.
[out]*pDstpoints to the output buffer.
Returns
none.
void csky_split_rifft_f32 ( float32_t pSrc,
uint32_t  fftLen,
float32_t pATable,
float32_t pBTable,
float32_t pDst,
uint32_t  modifier 
)
Parameters
[in]*pSrcpoints to the input buffer.
[in]fftLenlength of FFT.
[in]*pATablepoints to the twiddle Coef A buffer.
[in]*pBTablepoints to the twiddle Coef B buffer.
[out]*pDstpoints to the output buffer.
[in]modifiertwiddle coefficient modifier that supports different size FFTs with the same twiddle factor table.
Returns
none.