Changeset 3ac7cb0 for src/spectral
- Timestamp:
- Nov 6, 2009, 1:08:44 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:
- 8b8336b
- Parents:
- b8ee46c
- Location:
- src/spectral
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/spectral/mfcc.h
rb8ee46c r3ac7cb0 39 39 /** create mfcc object 40 40 41 \param win_ssize of analysis buffer (and length the FFT transform)41 \param buf_size size of analysis buffer (and length the FFT transform) 42 42 \param samplerate audio sampling rate 43 43 \param n_coeffs number of desired coefficients … … 45 45 46 46 */ 47 aubio_mfcc_t *new_aubio_mfcc (uint_t win_s,47 aubio_mfcc_t *new_aubio_mfcc (uint_t buf_size, 48 48 uint_t n_filters, uint_t n_coeffs, uint_t samplerate); 49 49 … … 58 58 59 59 \param mf mfcc object as returned by new_aubio_mfcc 60 \param in input spectrum ( win_slong)60 \param in input spectrum (buf_size long) 61 61 \param out output mel coefficients buffer (n_coeffs long) 62 62 -
src/spectral/tss.h
rb8ee46c r3ac7cb0 47 47 /** create tss object 48 48 49 \param win_sbuffer size50 \param hop_s step size49 \param buf_size buffer size 50 \param hop_size step size 51 51 \param channels number of input channels 52 52 53 53 */ 54 aubio_tss_t *new_aubio_tss (uint_t win_s, uint_t hop_s, uint_t channels);54 aubio_tss_t *new_aubio_tss (uint_t buf_size, uint_t hop_size, uint_t channels); 55 55 56 56 /** delete tss object
Note: See TracChangeset
for help on using the changeset viewer.