CMSIS-DSP: MFCC F32
MFCC F32 implementation
MFCC F32 tests
MFCC F32 in Python wrapper
Python wrapper structure updated to support submodule like
cmsisdsp.mfcc and cmsisdsp.fixedpoint
PythonWrapper tests updated to use the new fixedpoint
cmsisdsp.mfcc is used to generate the mel filter, dct and window coefficients.
diff --git a/CMSIS/DSP/PythonWrapper/config.py b/CMSIS/DSP/PythonWrapper/config.py
index 0e75a71..a8f76bc 100644
--- a/CMSIS/DSP/PythonWrapper/config.py
+++ b/CMSIS/DSP/PythonWrapper/config.py
@@ -5,7 +5,7 @@
config = CMSISDSP
if config == CMSISDSP:
- extensionName = 'cmsisdsp'
+ extensionName = 'internal'
setupName = 'CMSISDSP'
setupDescription = 'CMSIS-DSP Python API'
cflags="-DCMSISDSP"