Changeset feb694b for src/spectral/filterbank.c
- Timestamp:
- Apr 21, 2016, 7:36:56 PM (9 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:
- 00819aa
- Parents:
- ce3ff2b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/spectral/filterbank.c
rce3ff2b rfeb694b 57 57 58 58 void 59 aubio_filterbank_do (aubio_filterbank_t * f, c vec_t * in, fvec_t * out)59 aubio_filterbank_do (aubio_filterbank_t * f, const cvec_t * in, fvec_t * out) 60 60 { 61 61 /* apply filter to all input channel, provided out has enough channels */ … … 74 74 75 75 fmat_t * 76 aubio_filterbank_get_coeffs ( aubio_filterbank_t * f)76 aubio_filterbank_get_coeffs (const aubio_filterbank_t * f) 77 77 { 78 78 return f->filters; … … 80 80 81 81 uint_t 82 aubio_filterbank_set_coeffs (aubio_filterbank_t * f, fmat_t * filter_coeffs)82 aubio_filterbank_set_coeffs (aubio_filterbank_t * f, const fmat_t * filter_coeffs) 83 83 { 84 84 fmat_copy(filter_coeffs, f->filters);
Note: See TracChangeset
for help on using the changeset viewer.