source: interfaces/python/aubio-types.h @ 965ea78

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 965ea78 was 7db3477, checked in by Paul Brossier <piem@piem.org>, 15 years ago

aubio-types.h: python module has it all

  • Property mode set to 100644
File size: 1.2 KB
Line 
1#include <Python.h>
2#include <structmember.h>
3#define NO_IMPORT_ARRAY
4#include <numpy/arrayobject.h>
5#define AUBIO_UNSTABLE 1
6#include <aubio.h>
7
8#define Py_default_vector_length   1024
9#define Py_default_vector_channels 1
10
11#define Py_aubio_default_samplerate 44100
12
13#if HAVE_AUBIO_DOUBLE
14#error "Ouch! Python interface for aubio has not been much tested yet."
15#define AUBIO_NPY_SMPL NPY_DOUBLE
16#else
17#define AUBIO_NPY_SMPL NPY_FLOAT
18#endif
19
20/**
21
22Defining this constant to 1 will allow PyAubio_CastToFvec to convert from data
23types different than NPY_FLOAT to and fvec, and therefore creating a copy of
24it.
25
26*/
27#define AUBIO_DO_CASTING 0
28
29typedef struct
30{
31  PyObject_HEAD
32  fvec_t * o;
33  uint_t length;
34  uint_t channels;
35} Py_fvec;
36extern PyTypeObject Py_fvecType;
37extern PyObject *PyAubio_FvecToArray (Py_fvec * self);
38extern Py_fvec *PyAubio_ArrayToFvec (PyObject * self);
39
40typedef struct
41{
42  PyObject_HEAD
43  cvec_t * o;
44  uint_t length;
45  uint_t channels;
46} Py_cvec;
47extern PyTypeObject Py_cvecType;
48extern PyObject *PyAubio_CvecToArray (Py_cvec * self);
49extern Py_cvec *PyAubio_ArrayToCvec (PyObject * self);
50
51extern PyTypeObject Py_filterType;
52
53extern PyTypeObject Py_filterbankType;
54
55extern PyTypeObject Py_fftType;
56
57extern PyTypeObject Py_pvocType;
Note: See TracBrowser for help on using the repository browser.