- Timestamp:
- Sep 28, 2016, 3:16:45 PM (8 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:
- 80d0083
- Parents:
- 078dad8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/pitch/pitch.c
r078dad8 rafa21cdc 127 127 pitch_type = aubio_pitcht_default; 128 128 else { 129 AUBIO_ERR ("unknown pitch detection method %s, using default.\n", 130 pitch_mode); 131 pitch_type = aubio_pitcht_default; 129 AUBIO_ERR ("pitch: unknown pitch detection method ‘%s’\n", pitch_mode); 130 goto beach; 132 131 } 133 132 … … 284 283 pitch_mode = aubio_pitchm_default; 285 284 else { 286 AUBIO_ERR ("unknown pitch detection unit %s, using default\n", pitch_unit); 285 AUBIO_WRN("pitch: unknown pitch detection unit ‘%s’, using default\n", 286 pitch_unit); 287 287 pitch_mode = aubio_pitchm_default; 288 288 err = AUBIO_FAIL; … … 349 349 return AUBIO_OK; 350 350 } else { 351 AUBIO_ ERR("pitch: could not set silence to %.2f", silence);351 AUBIO_WRN("pitch: could not set silence to %.2f\n", silence); 352 352 return AUBIO_FAIL; 353 353 }
Note: See TracChangeset
for help on using the changeset viewer.