Changeset 8147e03
- Timestamp:
- May 2, 2016, 12:03:27 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:
- 99aa353
- Parents:
- dfada33
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/ext/py-fft.c
rdfada33 r8147e03 88 88 if (self->vecin.length != self->win_s) { 89 89 PyErr_Format(PyExc_ValueError, 90 "input array has length %d, but fft has size%d",90 "input array has length %d, but fft expects length %d", 91 91 self->vecin.length, self->win_s); 92 92 return NULL; … … 124 124 if (self->cvecin.length != self->win_s / 2 + 1) { 125 125 PyErr_Format(PyExc_ValueError, 126 "input array has length %d, but fft input has size%d",127 self-> vecin.length, self->win_s / 2 + 1);126 "input cvec has length %d, but fft expects length %d", 127 self->cvecin.length, self->win_s / 2 + 1); 128 128 return NULL; 129 129 }
Note: See TracChangeset
for help on using the changeset viewer.