Changeset ad9f999 for python/ext
- Timestamp:
- May 10, 2016, 11:20:52 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:
- 8cf51c4
- Parents:
- 168a154
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/ext/py-phasevoc.c
r168a154 rad9f999 67 67 self->o = new_aubio_pvoc ( self->win_s, self->hop_s); 68 68 if (self->o == NULL) { 69 char_t errstr[30];70 sprintf(errstr, "error creating pvoc with %d, %d", self->win_s, self->hop_s);71 PyErr_SetString (PyExc_RuntimeError, errstr);69 PyErr_Format(PyExc_RuntimeError, 70 "failed creating pvoc with win_s=%d, hop_s=%d", 71 self->win_s, self->hop_s); 72 72 return -1; 73 73 }
Note: See TracChangeset
for help on using the changeset viewer.