Changeset 59c046d for src/spectral
- Timestamp:
- Oct 19, 2009, 1:52:04 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:
- b01bd4a
- Parents:
- b14107f
- Location:
- src/spectral
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/spectral/filterbank_mel.c
rb14107f r59c046d 28 28 uint_t 29 29 aubio_filterbank_set_triangle_bands (aubio_filterbank_t * fb, 30 smpl_t samplerate, fvec_t * freqs)30 fvec_t * freqs, smpl_t samplerate) 31 31 { 32 32 … … 191 191 192 192 /* now compute the actual coefficients */ 193 retval = aubio_filterbank_set_triangle_bands (fb, samplerate, freqs);193 retval = aubio_filterbank_set_triangle_bands (fb, freqs, samplerate); 194 194 195 195 /* destroy vector used to store frequency limits */ -
src/spectral/filterbank_mel.h
rb14107f r59c046d 51 51 */ 52 52 uint_t aubio_filterbank_set_triangle_bands (aubio_filterbank_t * fb, 53 smpl_t samplerate, fvec_t * freqs);53 fvec_t * freqs, smpl_t samplerate); 54 54 55 55 /** filterbank initialization for Mel filters using Slaney's coefficients
Note: See TracChangeset
for help on using the changeset viewer.