- Timestamp:
- Sep 16, 2007, 6:26:40 PM (17 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:
- aeb38cf
- Parents:
- e5f6a0b
- Location:
- src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mfcc.c
re5f6a0b r177f09a 88 88 } 89 89 90 91 /** intermediate dct involved in aubio_mfcc_do 92 93 \param mf mfcc object as returned by new_aubio_mfcc 94 \param in input spectrum (n_filters long) 95 \param out output mel coefficients buffer (n_filters/2 +1 long) 96 97 */ 98 void aubio_dct_do(aubio_mfcc_t * mf, fvec_t *in, fvec_t *out); 99 90 100 void aubio_mfcc_do(aubio_mfcc_t * mf, cvec_t *in, fvec_t *out){ 91 101 // compute filterbank … … 113 123 } 114 124 115 //a bit a kludge116 void dump_filterbank(aubio_mfcc_t * mf){117 aubio_dump_filterbank(mf->fb);118 119 }120 -
src/mfcc.h
re5f6a0b r177f09a 61 61 void aubio_mfcc_do(aubio_mfcc_t * mf, cvec_t *in, fvec_t *out); 62 62 63 /** intermediate dct involved in aubio_mfcc_do64 65 \param mf mfcc object as returned by new_aubio_mfcc66 \param in input spectrum (n_filters long)67 \param out output mel coefficients buffer (n_filters/2 +1 long)68 69 */70 void aubio_dct_do(aubio_mfcc_t * mf, fvec_t *in, fvec_t *out);71 72 /** dump filterbank to log file73 74 \param mf mfcc object as returned by new_aubio_mfcc75 76 */77 void dump_filterbank(aubio_mfcc_t * mf);78 79 63 #ifdef __cplusplus 80 64 }
Note: See TracChangeset
for help on using the changeset viewer.