Lines Matching +full:python +full:- +full:version

1 /* ----------------------------------------------------------------------
4 * Description: MFCC initialization function for the q15 version
9 * Target Processor: Cortex-M and Cortex-A cores
10 * -------------------------------------------------------------------- */
12 * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved.
14 * SPDX-License-Identifier: Apache-2.0
16 * Licensed under the Apache License, Version 2.0 (the License); you may
20 * www.apache.org/licenses/LICENSE-2.0
73 The folder Scripts is containing a Python script which can be used
83 If you use CMSIS-DSP as a static library, and if you know the MFCC sizes
103 S->fftLen=fftLen; in arm_mfcc_init_q15()
104 S->nbMelFilters=nbMelFilters; in arm_mfcc_init_q15()
105 S->nbDctOutputs=nbDctOutputs; in arm_mfcc_init_q15()
106 S->dctCoefs=dctCoefs; in arm_mfcc_init_q15()
107 S->filterPos=filterPos; in arm_mfcc_init_q15()
108 S->filterLengths=filterLengths; in arm_mfcc_init_q15()
109 S->filterCoefs=filterCoefs; in arm_mfcc_init_q15()
110 S->windowCoefs=windowCoefs; in arm_mfcc_init_q15()
113 status=arm_cfft_init_q15(&(S->cfft),fftLen); in arm_mfcc_init_q15()
115 status=arm_rfft_init_q15(&(S->rfft),fftLen,0,1); in arm_mfcc_init_q15()
136 S->fftLen=LEN; \
137 S->nbMelFilters=nbMelFilters; \
138 S->nbDctOutputs=nbDctOutputs; \
139 S->dctCoefs=dctCoefs; \
140 S->filterPos=filterPos; \
141 S->filterLengths=filterLengths; \
142 S->filterCoefs=filterCoefs; \
143 S->windowCoefs=windowCoefs; \
145 status=arm_cfft_init_##LEN##_q15(&(S->cfft));\
164 S->fftLen=LEN; \
165 S->nbMelFilters=nbMelFilters; \
166 S->nbDctOutputs=nbDctOutputs; \
167 S->dctCoefs=dctCoefs; \
168 S->filterPos=filterPos; \
169 S->filterLengths=filterLengths; \
170 S->filterCoefs=filterCoefs; \
171 S->windowCoefs=windowCoefs; \
173 status=arm_rfft_init_##LEN##_q15(&(S->rfft),0,1);\
203 The folder Scripts is containing a Python script which can be used
232 The folder Scripts is containing a Python script which can be used
261 The folder Scripts is containing a Python script which can be used
290 The folder Scripts is containing a Python script which can be used
319 The folder Scripts is containing a Python script which can be used
348 The folder Scripts is containing a Python script which can be used
377 The folder Scripts is containing a Python script which can be used
406 The folder Scripts is containing a Python script which can be used