Changeset ab59067 for interfaces
- Timestamp:
- Jul 15, 2012, 11:08:19 PM (12 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:
- d81cae3
- Parents:
- c997036
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
interfaces/python/aubiowraphell.h
rc997036 rab59067 8 8 } Py_## NAME; 9 9 10 #define AUBIO_NEW(NAME) \11 static PyObject * \12 Py_ ## NAME ## _new (PyTypeObject * type, PyObject * args, PyObject * kwds) \13 { \14 Py_ ## NAME * self; \15 self = (Py_ ## NAME *) type->tp_alloc (type, 0); \16 return (PyObject *)self; \17 }18 19 10 #define AUBIO_INIT(NAME, PARAMS... ) \ 20 11 static int \ … … 23 14 self->o = new_aubio_## NAME ( PARAMS ); \ 24 15 if (self->o == NULL) { \ 16 PyErr_SetString (PyExc_StandardError, "error creating object"); \ 25 17 return -1; \ 26 18 } \
Note: See TracChangeset
for help on using the changeset viewer.