- Timestamp:
- Aug 8, 2015, 2:37:48 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, pitchshift, sampler, timestretch, yinfft+
- Children:
- a90e9d4
- Parents:
- deedc49
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/pitch/pitch.c
rdeedc49 r973eb75 318 318 aubio_pitch_set_silence (aubio_pitch_t * p, smpl_t silence) 319 319 { 320 if (silence < 0 && silence >-200) {320 if (silence <= 0 && silence >= -200) { 321 321 p->silence = silence; 322 322 return AUBIO_OK; 323 323 } else { 324 AUBIO_ERR("pitch: could doset silence to %.2f", silence);324 AUBIO_ERR("pitch: could not set silence to %.2f", silence); 325 325 return AUBIO_FAIL; 326 326 }
Note: See TracChangeset
for help on using the changeset viewer.