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

1 /* ----------------------------------------------------------------------
4 * Description: MFCC initialization function for the f32 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
104 S->fftLen=fftLen; in arm_mfcc_init_f32()
105 S->nbMelFilters=nbMelFilters; in arm_mfcc_init_f32()
106 S->nbDctOutputs=nbDctOutputs; in arm_mfcc_init_f32()
107 S->dctCoefs=dctCoefs; in arm_mfcc_init_f32()
108 S->filterPos=filterPos; in arm_mfcc_init_f32()
109 S->filterLengths=filterLengths; in arm_mfcc_init_f32()
110 S->filterCoefs=filterCoefs; in arm_mfcc_init_f32()
111 S->windowCoefs=windowCoefs; in arm_mfcc_init_f32()
114 status=arm_cfft_init_f32(&(S->cfft),fftLen); in arm_mfcc_init_f32()
116 status=arm_rfft_fast_init_f32(&(S->rfft),fftLen); in arm_mfcc_init_f32()
137 S->fftLen=LEN; \
138 S->nbMelFilters=nbMelFilters; \
139 S->nbDctOutputs=nbDctOutputs; \
140 S->dctCoefs=dctCoefs; \
141 S->filterPos=filterPos; \
142 S->filterLengths=filterLengths; \
143 S->filterCoefs=filterCoefs; \
144 S->windowCoefs=windowCoefs; \
146 status=arm_cfft_init_##LEN##_f32(&(S->cfft));\
165 S->fftLen=LEN; \
166 S->nbMelFilters=nbMelFilters; \
167 S->nbDctOutputs=nbDctOutputs; \
168 S->dctCoefs=dctCoefs; \
169 S->filterPos=filterPos; \
170 S->filterLengths=filterLengths; \
171 S->filterCoefs=filterCoefs; \
172 S->windowCoefs=windowCoefs; \
174 status=arm_rfft_fast_init_##LEN##_f32(&(S->rfft));\
204 The folder Scripts is containing a Python script which can be used
233 The folder Scripts is containing a Python script which can be used
262 The folder Scripts is containing a Python script which can be used
291 The folder Scripts is containing a Python script which can be used
320 The folder Scripts is containing a Python script which can be used
349 The folder Scripts is containing a Python script which can be used
378 The folder Scripts is containing a Python script which can be used
407 The folder Scripts is containing a Python script which can be used