NMSIS-DSP
Version 1.3.1
NMSIS DSP Software Library
|
Macros | |
#define | MFCC_INIT_F16(LEN) |
Functions | |
RISCV_DSP_ATTRIBUTE void | riscv_mfcc_f16 (const riscv_mfcc_instance_f16 *S, float16_t *pSrc, float16_t *pDst, float16_t *pTmp) |
MFCC F16. More... | |
RISCV_DSP_ATTRIBUTE riscv_status | riscv_mfcc_init_f16 (riscv_mfcc_instance_f16 *S, uint32_t fftLen, uint32_t nbMelFilters, uint32_t nbDctOutputs, const float16_t *dctCoefs, const uint32_t *filterPos, const uint32_t *filterLengths, const float16_t *filterCoefs, const float16_t *windowCoefs) |
Generic initialization of the MFCC F16 instance structure. More... | |
#define MFCC_INIT_F16 | ( | LEN | ) |
RISCV_DSP_ATTRIBUTE void riscv_mfcc_f16 | ( | const riscv_mfcc_instance_f16 * | S, |
float16_t * | pSrc, | ||
float16_t * | pDst, | ||
float16_t * | pTmp | ||
) |
MFCC F16.
[in] | S | points to the mfcc instance structure |
[in] | pSrc | points to the input samples |
[out] | pDst | points to the output MFCC values |
[in,out] | pTmp | points to a temporary buffer of complex |
The temporary buffer has a 2*fft length size when MFCC is implemented with CFFT. It has length FFT Length + 2 when implemented with RFFT (default implementation).
The source buffer is modified by this function.
RISCV_DSP_ATTRIBUTE riscv_status riscv_mfcc_init_f16 | ( | riscv_mfcc_instance_f16 * | S, |
uint32_t | fftLen, | ||
uint32_t | nbMelFilters, | ||
uint32_t | nbDctOutputs, | ||
const float16_t * | dctCoefs, | ||
const uint32_t * | filterPos, | ||
const uint32_t * | filterLengths, | ||
const float16_t * | filterCoefs, | ||
const float16_t * | windowCoefs | ||
) |
Generic initialization of the MFCC F16 instance structure.
[out] | S | points to the mfcc instance structure |
[in] | fftLen | fft length |
[in] | nbMelFilters | number of Mel filters |
[in] | nbDctOutputs | number of Dct outputs |
[in] | dctCoefs | points to an array of DCT coefficients |
[in] | filterPos | points of the array of filter positions |
[in] | filterLengths | points to the array of filter lengths |
[in] | filterCoefs | points to the array of filter coefficients |
[in] | windowCoefs | points to the array of window coefficients |
window coefficients can describe (for instance) a Hamming window. The array has the same size as the FFT length.
The folder Scripts is containing a Python script that can be used to generate the filter, dct and window arrays.