![]() |
LIBML
Version 3.2.4
LIBML DSP Software Library
|
Functions | |
tpt_status | tpt_rfft_f32 (f32_t *aOutData, f32_t *aInData, size_t aLogN, bool aIfftFlag) |
Processing function for the floating-point RFFT/RIFFT. More... | |
tpt_status | tpt_rfft_f64 (f64_t *aOutData, f64_t *aInData, size_t aLogN, bool aIfftFlag) |
Processing function for the floating-point RFFT/RIFFT. More... | |
tpt_status | tpt_rfft_q15 (q15_t *aOutData, q15_t *aInData, size_t aLogN, bool aIfftFlag) |
Processing function for the Q15 RFFT/RIFFT. More... | |
tpt_status | tpt_rfft_q31 (q31_t *aOutData, q31_t *aInData, size_t aLogN, bool aIfftFlag) |
Processing function for the Q31 RFFT/RIFFT. More... | |
aLogN
value is [5, 6, ..., 12]. tpt_status tpt_rfft_f32 | ( | f32_t * | aOutData, |
f32_t * | aInData, | ||
size_t | aLogN, | ||
bool | aIfftFlag | ||
) |
Processing function for the floating-point RFFT/RIFFT.
Source buffer is modified by this function.
[out] | aOutData | points to output buffer. |
[in] | aInData | points to input buffer (Source buffer is modified by this function.) |
[in] | aLogN | The fftLen is 2^aLogN. |
[in] | aIfftFlag | flag that selects transform direction
|
tpt_status tpt_rfft_f64 | ( | f64_t * | aOutData, |
f64_t * | aInData, | ||
size_t | aLogN, | ||
bool | aIfftFlag | ||
) |
Processing function for the floating-point RFFT/RIFFT.
Source buffer is modified by this function.
[out] | aOutData | points to output buffer. |
[in] | aInData | points to input buffer (Source buffer is modified by this function.) |
[in] | aLogN | The fftLen is 2^aLogN. |
[in] | aIfftFlag | flag that selects transform direction
|
tpt_status tpt_rfft_q15 | ( | q15_t * | aOutData, |
q15_t * | aInData, | ||
size_t | aLogN, | ||
bool | aIfftFlag | ||
) |
Processing function for the Q15 RFFT/RIFFT.
Source buffer is modified by this function.
[out] | aOutData | points to output buffer. |
[in] | aInData | points to input buffer (Source buffer is modified by this function.) |
[in] | aLogN | The fftLen is 2^aLogN. |
[in] | aIfftFlag | flag that selects transform direction
|
tpt_status tpt_rfft_q31 | ( | q31_t * | aOutData, |
q31_t * | aInData, | ||
size_t | aLogN, | ||
bool | aIfftFlag | ||
) |
Processing function for the Q31 RFFT/RIFFT.
Source buffer is modified by this function.
[out] | aOutData | points to output buffer. |
[in] | aInData | points to input buffer (Source buffer is modified by this function.) |
[in] | aLogN | The fftLen is 2^aLogN. |
[in] | aIfftFlag | flag that selects transform direction
|