- Timestamp:
- Mar 3, 2013, 4:53:15 AM (12 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:
- 8f68dfb
- Parents:
- a64ef1d
- Location:
- src/spectral
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
src/spectral/fft.h
ra64ef1d rb8c0685 22 22 23 23 Fast Fourier Transform object 24 25 \example src/spectral/test-fft.c 24 26 25 27 */ -
src/spectral/filterbank.c
ra64ef1d rb8c0685 70 70 /* for each filter */ 71 71 for (fn = 0; fn < max_filters; fn++) { 72 73 72 /* for each sample */ 74 73 for (j = 0; j < max_length; j++) { -
src/spectral/filterbank.h
ra64ef1d rb8c0685 26 26 General-purpose spectral filterbank object. 27 27 28 \example spectral/test-filterbank.c 29 28 30 */ 29 31 … … 36 38 #endif 37 39 38 /** filterbank object */ 40 /** filterbank object 41 42 This object stores a matrix of spectral filter coefficients. 43 44 */ 39 45 typedef struct _aubio_filterbank_t aubio_filterbank_t; 40 46 -
src/spectral/filterbank_mel.h
ra64ef1d rb8c0685 27 27 - ::aubio_filterbank_set_triangle_bands: overlapping triangular bands, 28 28 - ::aubio_filterbank_set_mel_coeffs_slaney: Mel frequency bands. 29 30 \example spectral/test-filterbank_mel.c 29 31 30 32 */ -
src/spectral/mfcc.h
ra64ef1d rb8c0685 23 23 24 24 Mel-frequency cepstrum coefficients object 25 26 \example spectral/test-mfcc.h 25 27 26 28 */ -
src/spectral/phasevoc.h
ra64ef1d rb8c0685 27 27 phase relationships across frames. The window sizes and overlap are specified 28 28 at creation time. 29 30 \example spectral/test-phasevoc.c 29 31 30 32 */
Note: See TracChangeset
for help on using the changeset viewer.