Lines Matching +full:python +full:- +full:version
1 /* ----------------------------------------------------------------------
4 * Description: MFCC initialization function for the q31 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
74 The folder Scripts is containing a Python script which can be used
84 If you use CMSIS-DSP as a static library, and if you know the MFCC sizes
105 S->fftLen=fftLen; in arm_mfcc_init_q31()
106 S->nbMelFilters=nbMelFilters; in arm_mfcc_init_q31()
107 S->nbDctOutputs=nbDctOutputs; in arm_mfcc_init_q31()
108 S->dctCoefs=dctCoefs; in arm_mfcc_init_q31()
109 S->filterPos=filterPos; in arm_mfcc_init_q31()
110 S->filterLengths=filterLengths; in arm_mfcc_init_q31()
111 S->filterCoefs=filterCoefs; in arm_mfcc_init_q31()
112 S->windowCoefs=windowCoefs; in arm_mfcc_init_q31()
115 status=arm_cfft_init_q31(&(S->cfft),fftLen); in arm_mfcc_init_q31()
117 status=arm_rfft_init_q31(&(S->rfft),fftLen,0,1); in arm_mfcc_init_q31()
138 S->fftLen=LEN; \
139 S->nbMelFilters=nbMelFilters; \
140 S->nbDctOutputs=nbDctOutputs; \
141 S->dctCoefs=dctCoefs; \
142 S->filterPos=filterPos; \
143 S->filterLengths=filterLengths; \
144 S->filterCoefs=filterCoefs; \
145 S->windowCoefs=windowCoefs; \
147 status=arm_cfft_init_##LEN##_q31(&(S->cfft));\
166 S->fftLen=LEN; \
167 S->nbMelFilters=nbMelFilters; \
168 S->nbDctOutputs=nbDctOutputs; \
169 S->dctCoefs=dctCoefs; \
170 S->filterPos=filterPos; \
171 S->filterLengths=filterLengths; \
172 S->filterCoefs=filterCoefs; \
173 S->windowCoefs=windowCoefs; \
175 status=arm_rfft_init_##LEN##_q31(&(S->rfft),0,1);\
205 The folder Scripts is containing a Python script which can be used
234 The folder Scripts is containing a Python script which can be used
263 The folder Scripts is containing a Python script which can be used
292 The folder Scripts is containing a Python script which can be used
321 The folder Scripts is containing a Python script which can be used
350 The folder Scripts is containing a Python script which can be used
379 The folder Scripts is containing a Python script which can be used
408 The folder Scripts is containing a Python script which can be used