- Timestamp:
- Dec 6, 2018, 1:51:35 PM (6 years ago)
- Branches:
- feature/cnn, feature/crepe, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master
- Children:
- 78a564b
- Parents:
- 3a96d3d (diff), dd47431 (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. - Location:
- src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/pitch/pitchspecacf.c
r3a96d3d rdec789b 93 93 del_fvec (p->sqrmag); 94 94 del_fvec (p->fftout); 95 del_fvec (p->acf); 95 96 AUBIO_FREE (p); 96 97 } -
src/spectral/awhitening.c
r3a96d3d rdec789b 44 44 { 45 45 uint_t i = 0; 46 for (i = 0; i < o->peak_values->length; i++) { 46 uint_t length = MIN(fftgrain->length, o->peak_values->length); 47 for (i = 0; i < length; i++) { 47 48 smpl_t tmp = MAX(o->r_decay * o->peak_values->data[i], o->floor); 48 49 o->peak_values->data[i] = MAX(fftgrain->norm[i], tmp); -
src/utils/hist.c
r3a96d3d rdec789b 45 45 uint_t i; 46 46 if ((sint_t)nelems <= 0) { 47 AUBIO_FREE(s); 47 48 return NULL; 48 49 }
Note: See TracChangeset
for help on using the changeset viewer.