- Timestamp:
- Jan 24, 2014, 2:17:18 AM (11 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:
- 7b56229
- Parents:
- 9e58e78
- Location:
- python
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
python/ext/aubio-types.h
r9e58e78 rf1100a4 71 71 extern PyTypeObject Py_sourceType; 72 72 73 extern PyTypeObject Py_sinkType; -
python/ext/aubiomodule.c
r9e58e78 rf1100a4 200 200 || (PyType_Ready (&Py_pvocType) < 0) 201 201 || (PyType_Ready (&Py_sourceType) < 0) 202 || (PyType_Ready (&Py_sinkType) < 0) 202 203 // generated objects 203 204 || (generated_types_ready() < 0 ) … … 230 231 Py_INCREF (&Py_sourceType); 231 232 PyModule_AddObject (m, "source", (PyObject *) & Py_sourceType); 233 Py_INCREF (&Py_sinkType); 234 PyModule_AddObject (m, "sink", (PyObject *) & Py_sinkType); 232 235 233 236 // add generated objects -
python/lib/generator.py
r9e58e78 rf1100a4 55 55 'pitchyin', 56 56 'pitchyinfft', 57 'sink', 57 58 'sink_apple_audio', 58 59 'sink_sndfile', -
python/setup.py
r9e58e78 rf1100a4 55 55 "ext/py-phasevoc.c", 56 56 "ext/py-source.c", 57 "ext/py-sink.c", 57 58 # generated files 58 59 ] + generated_object_files,
Note: See TracChangeset
for help on using the changeset viewer.