- Timestamp:
- Nov 24, 2007, 7:05:54 PM (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:
- 2d8cffa
- Parents:
- 7873363
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/filterbank.c
r7873363 r5dd22a9 24 24 #include "filterbank.h" 25 25 #include "mathutils.h" 26 27 #include "stdio.h"28 26 29 27 #define VERY_SMALL_NUMBER 2e-42 … … 216 214 217 215 fvec_t * aubio_filterbank_getchannel(aubio_filterbank_t * f, uint_t channel) { 218 if ( (channel >= 0) && (channel< f->n_filters) ) { return f->filters[channel]; }216 if ( (channel < f->n_filters) ) { return f->filters[channel]; } 219 217 else { return NULL; } 220 218 }
Note: See TracChangeset
for help on using the changeset viewer.