- Timestamp:
- Feb 8, 2016, 2:33:56 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:
- 155cc10
- Parents:
- e9eaaf4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/onset/onset.c
re9eaaf4 r00d0275 260 260 /* method specific optimisations */ 261 261 if (strcmp (onset_mode, "energy") == 0) { 262 } else if (strcmp (onset_mode, "hfc") == 0 ) {262 } else if (strcmp (onset_mode, "hfc") == 0 || strcmp (onset_mode, "default") == 0) { 263 263 aubio_onset_set_adaptive_whitening (o, 0); 264 264 } else if (strcmp (onset_mode, "complexdomain") == 0 … … 275 275 aubio_onset_set_threshold (o, 0.4); 276 276 } else if (strcmp (onset_mode, "specdiff") == 0) { 277 } else if (strcmp (onset_mode, "default") == 0) {278 277 } else { 279 278 AUBIO_ERR ("onset: unknown spectral descriptor type %s, "
Note: See TracChangeset
for help on using the changeset viewer.