Changeset ffc1f79 for src/spectral
- Timestamp:
- Sep 20, 2014, 3:27:58 PM (10 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:
- 96a96d7
- Parents:
- ad1ba08
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/spectral/phasevoc.c
rad1ba08 rffc1f79 78 78 79 79 if ((sint_t)hop_s < 1) { 80 AUBIO_ERR(" got hop_size %d, but can not be < 1\n", hop_s);80 AUBIO_ERR("pvoc: got hop_size %d, but can not be < 1\n", hop_s); 81 81 goto beach; 82 82 } else if ((sint_t)win_s < 1) { 83 AUBIO_ERR(" got buffer_size %d, but can not be < 1\n", win_s);83 AUBIO_ERR("pvoc: got buffer_size %d, but can not be < 1\n", win_s); 84 84 goto beach; 85 85 } else if (win_s < hop_s) { 86 AUBIO_ERR(" hop size (%d) is larger than win size (%d)\n", win_s, hop_s);86 AUBIO_ERR("pvoc: hop size (%d) is larger than win size (%d)\n", win_s, hop_s); 87 87 goto beach; 88 88 }
Note: See TracChangeset
for help on using the changeset viewer.