Changeset d99d819
- Timestamp:
- Sep 25, 2009, 11:00:44 PM (15 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 6f0b8a0
- Parents:
- 705aec8
- Location:
- src/spectral
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/spectral/mfcc.c
r705aec8 rd99d819 29 29 /** Internal structure for mfcc object */ 30 30 31 struct aubio_mfcc_t_31 struct _aubio_mfcc_t 32 32 { 33 33 uint_t win_s; /** grain length */ -
src/spectral/mfcc.h
r705aec8 rd99d819 20 20 */ 21 21 22 /** \file 23 24 Mel-frequency cepstrum coefficients object 25 26 */ 27 22 28 #ifndef MFCC_H 23 29 #define MFCC_H … … 28 34 #endif 29 35 30 typedef struct aubio_mfcc_t_ aubio_mfcc_t; 36 /** mfcc object */ 37 typedef struct _aubio_mfcc_t aubio_mfcc_t; 31 38 32 39 /** create mfcc object … … 34 41 \param win_s size of analysis buffer (and length the FFT transform) 35 42 \param samplerate audio sampling rate 36 \param n_coefs number of desired coefficientss 43 \param n_coefs number of desired coefficients 44 \param n_filters number of desired filters 37 45 38 46 */
Note: See TracChangeset
for help on using the changeset viewer.