Changeset 1f87c1b
- Timestamp:
- Apr 30, 2016, 6:34:06 AM (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:
- 7498e48
- Parents:
- 437ef07
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
.travis.yml
r437ef07 r1f87c1b 64 64 65 65 script: 66 - make create_test_sounds66 - echo make create_test_sounds disabled for now 67 67 - make build 68 68 - make build_python -
python/ext/py-fft.c
r437ef07 r1f87c1b 122 122 } 123 123 124 if (self->cvecin.length != self->win_s / 2 + 1) { 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); 128 return NULL; 129 } 130 124 131 fvec_t out; 125 132 Py_INCREF(self->rdoout);
Note: See TracChangeset
for help on using the changeset viewer.