Changeset 449bff6
- Timestamp:
- Nov 15, 2009, 3:26:19 PM (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:
- 2b4d006
- Parents:
- 90077e4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
interfaces/python/aubiomodule.c
r90077e4 r449bff6 4 4 5 5 #include "aubio-types.h" 6 #include "generated/aubio-generated.h" 6 7 7 8 static char Py_alpha_norm_doc[] = "compute alpha normalisation factor"; … … 126 127 || (PyType_Ready (&Py_fftType) < 0) 127 128 || (PyType_Ready (&Py_pvocType) < 0) 129 // generated objects 130 || (generated_types_ready() < 0 ) 128 131 ) { 129 132 return; … … 155 158 Py_INCREF (&Py_pvocType); 156 159 PyModule_AddObject (m, "pvoc", (PyObject *) & Py_pvocType); 160 161 // generated objects 162 add_generated_objects(m); 157 163 }
Note: See TracChangeset
for help on using the changeset viewer.