Changeset 5c4ec3c for src/spectral
- Timestamp:
- Oct 2, 2009, 1:19:10 AM (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:
- 38e9732
- Parents:
- 2f64b0e
- Location:
- src/spectral
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/spectral/mfcc.c
r2f64b0e r5c4ec3c 108 108 109 109 /* raise power */ 110 // vec_pow (mf->in_dct, 3.);110 //fvec_pow (mf->in_dct, 3.); 111 111 112 112 /* zeros output */ -
src/spectral/phasevoc.c
r2f64b0e r5c4ec3c 57 57 fvec_weight(pv->data, pv->w); 58 58 /* shift */ 59 vec_shift(pv->data);59 fvec_shift(pv->data); 60 60 /* calculate fft */ 61 61 aubio_fft_do (pv->fft,pv->data,fftgrain); … … 67 67 aubio_fft_rdo(pv->fft,fftgrain,pv->synth); 68 68 /* unshift */ 69 vec_shift(pv->synth);69 fvec_shift(pv->synth); 70 70 for (i=0; i<pv->channels; i++) { 71 71 aubio_pvoc_addsynth(pv->synth->data[i],pv->synthold->data[i],
Note: See TracChangeset
for help on using the changeset viewer.