- Timestamp:
- Oct 17, 2013, 12:59:19 PM (11 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:
- 22dd9dc
- Parents:
- 6b00c4a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tempo/beattracking.c
r6b00c4a r2823389 183 183 /* end of biased filterbank */ 184 184 185 if (bp == 0) { 186 output->data[0] = 0; 187 return; 188 } 185 189 186 190 /* deliberate integer operation, could be set to 3 max eventually */ … … 382 386 383 387 /* if tempo is > 206 bpm, half it */ 384 while ( bp < 25) {388 while (0 < bp && bp < 25) { 385 389 #if AUBIO_BEAT_WARNINGS 386 390 AUBIO_WRN ("doubling from %f (%f bpm) to %f (%f bpm)\n",
Note: See TracChangeset
for help on using the changeset viewer.