Changeset 202697a
- Timestamp:
- Apr 18, 2016, 8:32:07 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:
- de81d2b
- Parents:
- 59cb451
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/ext/py-phasevoc.c
r59cb451 r202697a 3 3 static char Py_pvoc_doc[] = "pvoc object"; 4 4 5 AUBIO_DECLARE(pvoc, uint_t win_s; uint_t hop_s) 5 typedef struct 6 { 7 PyObject_HEAD 8 aubio_pvoc_t * o; 9 uint_t win_s; 10 uint_t hop_s; 11 cvec_t *output; 12 fvec_t *routput; 13 } Py_pvoc; 14 6 15 7 16 //AUBIO_NEW(pvoc) … … 47 56 } 48 57 58 self->output = new_cvec(self->win_s); 59 self->routput = new_fvec(self->hop_s); 60 49 61 return (PyObject *) self; 50 62 } … … 53 65 AUBIO_INIT(pvoc, self->win_s, self->hop_s) 54 66 55 AUBIO_DEL(pvoc) 67 static void 68 Py_pvoc_del (Py_pvoc *self, PyObject *unused) 69 { 70 del_aubio_pvoc(self->o); 71 del_cvec(self->output); 72 del_fvec(self->routput); 73 self->ob_type->tp_free((PyObject *) self); 74 } 75 56 76 57 77 static PyObject * … … 60 80 PyObject *input; 61 81 fvec_t *vec; 62 cvec_t *output;63 82 64 83 if (!PyArg_ParseTuple (args, "O", &input)) { … … 72 91 } 73 92 74 output = new_cvec(self->win_s);75 76 93 // compute the function 77 aubio_pvoc_do (self->o, vec, output);78 return (PyObject *)PyAubio_CCvecToPyCvec( output);94 aubio_pvoc_do (self->o, vec, self->output); 95 return (PyObject *)PyAubio_CCvecToPyCvec(self->output); 79 96 } 80 97 … … 91 108 PyObject *input; 92 109 cvec_t *vec; 93 fvec_t *output;94 95 110 if (!PyArg_ParseTuple (args, "O", &input)) { 96 111 return NULL; … … 103 118 } 104 119 105 output = new_fvec(self->hop_s);106 107 120 // compute the function 108 aubio_pvoc_rdo (self->o, vec, output);109 return (PyObject *)PyAubio_CFvecToArray( output);121 aubio_pvoc_rdo (self->o, vec, self->routput); 122 return (PyObject *)PyAubio_CFvecToArray(self->routput); 110 123 } 111 124
Note: See TracChangeset
for help on using the changeset viewer.