Changeset fdf39ba for src/filterbank.c
- Timestamp:
- Sep 7, 2007, 10:49:45 AM (17 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:
- 8708556
- Parents:
- 97886fa (diff), 7c6c806d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/filterbank.c
r97886fa rfdf39ba 21 21 */ 22 22 23 #include "aubio_priv.h" 23 24 #include "filterbank.h" 25 26 27 // Struct Declaration 28 29 /** \brief A structure to store a set of n_filters Mel filters */ 30 typedef struct aubio_mel_filter_ { 31 int n_filters; 32 smpl_t **filters; 33 }; 24 34 25 35 // Initialization
Note: See TracChangeset
for help on using the changeset viewer.