Changeset a138975 for python/ext/py-fft.c
- Timestamp:
- May 12, 2016, 1:28:35 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:
- 2ee90df
- Parents:
- 911c22f
- git-author:
- Paul Brossier <piem@piem.org> (05/11/16 15:10:02)
- git-committer:
- Paul Brossier <piem@piem.org> (05/12/16 01:28:35)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/ext/py-fft.c
r911c22f ra138975 81 81 { 82 82 PyObject *input; 83 cvec_t c_out; 83 84 84 85 if (!PyArg_ParseTuple (args, "O", &input)) { … … 97 98 } 98 99 99 cvec_t c_out;100 100 Py_INCREF(self->doout); 101 101 if (!PyAubio_PyCvecToCCvec(self->doout, &c_out)) { … … 117 117 { 118 118 PyObject *input; 119 fvec_t out; 119 120 120 121 if (!PyArg_ParseTuple (args, "O", &input)) { … … 133 134 } 134 135 135 fvec_t out;136 136 Py_INCREF(self->rdoout); 137 137 if (!PyAubio_ArrayToCFvec(self->rdoout, &out) ) {
Note: See TracChangeset
for help on using the changeset viewer.