Changeset 3e882a8
- Timestamp:
- Dec 25, 2009, 4:56:24 AM (15 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:
- 84e0606
- Parents:
- 91ce8d5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
interfaces/python/py-filterbank.c
r91ce8d5 r3e882a8 54 54 { 55 55 PyObject *input; 56 Py_cvec*vec;56 cvec_t *vec; 57 57 fvec_t *out; 58 58 … … 61 61 } 62 62 63 vec = PyAubio_ArrayToC vec (input);63 vec = PyAubio_ArrayToCCvec (input); 64 64 65 65 if (vec == NULL) { … … 70 70 71 71 // compute the function 72 aubio_filterbank_do (self->o, vec ->o, out);72 aubio_filterbank_do (self->o, vec, out); 73 73 return (PyObject *)PyAubio_CFvecToArray(out); 74 74 }
Note: See TracChangeset
for help on using the changeset viewer.