- Timestamp:
- Oct 7, 2009, 11:19:36 PM (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:
- 277918b
- Parents:
- 01b8fcc
- Location:
- src/utils
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/utils/hist.c
r01b8fcc r0ce97483 114 114 115 115 /* readapt */ 116 aubio_scale_set (s->scaler, ilow, ihig, 0, s->nelems);116 aubio_scale_set_limits (s->scaler, ilow, ihig, 0, s->nelems); 117 117 118 118 /* recalculate centers */ -
src/utils/scale.c
r01b8fcc r0ce97483 40 40 smpl_t olow, smpl_t ohig) { 41 41 aubio_scale_t * s = AUBIO_NEW(aubio_scale_t); 42 aubio_scale_set (s, ilow, ihig, olow, ohig);42 aubio_scale_set_limits (s, ilow, ihig, olow, ohig); 43 43 return s; 44 44 } … … 48 48 } 49 49 50 void aubio_scale_set (aubio_scale_t *s, smpl_t ilow, smpl_t ihig,50 void aubio_scale_set_limits (aubio_scale_t *s, smpl_t ilow, smpl_t ihig, 51 51 smpl_t olow, smpl_t ohig) { 52 52 smpl_t inputrange = ihig - ilow; -
src/utils/scale.h
r01b8fcc r0ce97483 69 69 70 70 */ 71 void aubio_scale_set (aubio_scale_t *s, smpl_t ilow, smpl_t ihig,71 void aubio_scale_set_limits (aubio_scale_t *s, smpl_t ilow, smpl_t ihig, 72 72 smpl_t olow, smpl_t ohig); 73 73
Note: See TracChangeset
for help on using the changeset viewer.