- Timestamp:
- Jul 16, 2012, 12:44:01 AM (13 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:
- 6bfbcdc
- Parents:
- 55012c4 (diff), 3cd2434 (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/tempo/beattracking.c
r55012c4 r614963a 160 160 for (i = 1; i < laglen - 1; i++) { 161 161 for (a = 1; a <= numelem; a++) { 162 for (b = (1 - a); b < a; b++) {162 for (b = (1 - a); b < (sint_t)a; b++) { 163 163 bt->acfout->data[i] += bt->acf->data[a * (i + 1) + b - 1] 164 164 * 1. / (2. * a - 1.); … … 300 300 for (i = 1; i < laglen - 1; i++) { 301 301 for (a = 1; a <= bt->timesig; a++) { 302 for (b = (1 - a); b < a; b++) {302 for (b = (1 - a); b < (sint_t)a; b++) { 303 303 acfout->data[i] += acf->data[a * (i + 1) + b - 1]; 304 304 }
Note: See TracChangeset
for help on using the changeset viewer.