Changeset 3aa60b2
- Timestamp:
- Sep 15, 2018, 6:01:51 PM (6 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
- Children:
- 8c4918a
- Parents:
- c9ca2608
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/spectral/mfcc.c
rc9ca2608 r3aa60b2 123 123 aubio_mfcc_do (aubio_mfcc_t * mf, const cvec_t * in, fvec_t * out) 124 124 { 125 #ifndef HAVE_SLOW_DCT 126 fvec_t tmp; 127 #endif 125 128 /* compute filterbank */ 126 129 aubio_filterbank_do (mf->fb, in, mf->in_dct); … … 139 142 // copy only first n_coeffs elements 140 143 // TODO assert mf->output->length == n_coeffs 141 fvec_t tmp;142 144 tmp.data = mf->output->data; 143 145 tmp.length = out->length;
Note: See TracChangeset
for help on using the changeset viewer.