Changeset 8605361 for src/pitch/pitchmcomb.c
- Timestamp:
- Nov 2, 2015, 11:16:24 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, sampler
- Children:
- e9eaaf4
- Parents:
- 34e505f (diff), 95748a6 (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/pitch/pitchmcomb.c
r34e505f r8605361 336 336 uint_t run = 0; 337 337 for (cur = 0; cur < nbins; cur++) { 338 run = cur + 1; 339 for (run = cur; run < nbins; run++) { 338 for (run = cur + 1; run < nbins; run++) { 340 339 if (candidates[run]->ene > candidates[cur]->ene) 341 340 CAND_SWAP (candidates[run], candidates[cur]); … … 352 351 uint_t run = 0; 353 352 for (cur = 0; cur < nbins; cur++) { 354 run = cur + 1; 355 for (run = cur; run < nbins; run++) { 353 for (run = cur + 1; run < nbins; run++) { 356 354 if (candidates[run]->ebin < candidates[cur]->ebin) 357 355 CAND_SWAP (candidates[run], candidates[cur]);
Note: See TracChangeset
for help on using the changeset viewer.