- Timestamp:
- Dec 10, 2013, 10:13:49 PM (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:
- 2f9af5d
- Parents:
- d7019c4
- Location:
- python
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
python/ext/aubio-types.h
rd7019c4 rd27634d 31 31 #define Py_default_vector_length 1024 32 32 33 #define Py_aubio_default_samplerate 4410033 #define Py_aubio_default_samplerate 0 34 34 35 35 #if HAVE_AUBIO_DOUBLE … … 69 69 extern PyTypeObject Py_pvocType; 70 70 71 extern PyTypeObject Py_sourceType; 72 -
python/ext/aubiomodule.c
rd7019c4 rd27634d 199 199 || (PyType_Ready (&Py_fftType) < 0) 200 200 || (PyType_Ready (&Py_pvocType) < 0) 201 || (PyType_Ready (&Py_sourceType) < 0) 201 202 // generated objects 202 203 || (generated_types_ready() < 0 ) … … 227 228 Py_INCREF (&Py_pvocType); 228 229 PyModule_AddObject (m, "pvoc", (PyObject *) & Py_pvocType); 230 Py_INCREF (&Py_sourceType); 231 PyModule_AddObject (m, "source", (PyObject *) & Py_sourceType); 229 232 230 233 // add generated objects -
python/lib/generator.py
rd7019c4 rd27634d 57 57 'sink_apple_audio', 58 58 'sink_sndfile', 59 'source', 59 60 'source_apple_audio', 60 61 'source_sndfile', -
python/setup.py
rd7019c4 rd27634d 54 54 "ext/py-fft.c", 55 55 "ext/py-phasevoc.c", 56 "ext/py-source.c", 56 57 # generated files 57 58 ] + generated_object_files,
Note: See TracChangeset
for help on using the changeset viewer.