Changeset d897aae for src/spectral/phasevoc.c
- Timestamp:
- Feb 16, 2016, 3:43:14 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:
- fb5838a
- Parents:
- d7f3c88
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/spectral/phasevoc.c
rd7f3c88 rd897aae 80 80 AUBIO_ERR("pvoc: got hop_size %d, but can not be < 1\n", hop_s); 81 81 goto beach; 82 } else if ((sint_t)win_s < 1) {83 AUBIO_ERR("pvoc: got buffer_size %d, but can not be < 1\n", win_s);82 } else if ((sint_t)win_s < 2) { 83 AUBIO_ERR("pvoc: got buffer_size %d, but can not be < 2\n", win_s); 84 84 goto beach; 85 85 } else if (win_s < hop_s) {
Note: See TracChangeset
for help on using the changeset viewer.