- sox
script:
- - make create_test_sounds
+ - echo make create_test_sounds disabled for now
- make build
- make build_python
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then make test_python; fi
return NULL;
}
+ if (self->cvecin.length != self->win_s / 2 + 1) {
+ PyErr_Format(PyExc_ValueError,
+ "input array has length %d, but fft input has size %d",
+ self->vecin.length, self->win_s / 2 + 1);
+ return NULL;
+ }
+
fvec_t out;
Py_INCREF(self->rdoout);
if (!PyAubio_ArrayToCFvec(self->rdoout, &out) ) {