source: python/ext/aubiomodule.c @ f1100a4

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

ext/py-sink.c: do not generate

  • Property mode set to 100644
File size: 5.6 KB
Line 
1#define PY_AUBIO_MODULE_MAIN
2#include "aubio-types.h"
3#include "aubio-generated.h"
4
5extern void add_generated_objects ( PyObject *m );
6extern void add_ufuncs ( PyObject *m );
7extern int generated_types_ready(void);
8
9static char Py_alpha_norm_doc[] = "compute alpha normalisation factor";
10
11static PyObject *
12Py_alpha_norm (PyObject * self, PyObject * args)
13{
14  PyObject *input;
15  fvec_t *vec;
16  smpl_t alpha;
17  PyObject *result;
18
19  if (!PyArg_ParseTuple (args, "Of:alpha_norm", &input, &alpha)) {
20    return NULL;
21  }
22
23  if (input == NULL) {
24    return NULL;
25  }
26
27  vec = PyAubio_ArrayToCFvec (input);
28
29  if (vec == NULL) {
30    return NULL;
31  }
32
33  // compute the function
34  result = Py_BuildValue ("f", fvec_alpha_norm (vec, alpha));
35  if (result == NULL) {
36    return NULL;
37  }
38
39  return result;
40}
41
42static char Py_bintomidi_doc[] = "convert bin to midi";
43
44static PyObject *
45Py_bintomidi (PyObject * self, PyObject * args)
46{
47  smpl_t input, samplerate, fftsize;
48  smpl_t output;
49
50  if (!PyArg_ParseTuple (args, "|fff", &input, &samplerate, &fftsize)) {
51    return NULL;
52  }
53
54  output = aubio_bintomidi (input, samplerate, fftsize);
55
56  return (PyObject *)PyFloat_FromDouble (output);
57}
58
59static char Py_miditobin_doc[] = "convert midi to bin";
60
61static PyObject *
62Py_miditobin (PyObject * self, PyObject * args)
63{
64  smpl_t input, samplerate, fftsize;
65  smpl_t output;
66
67  if (!PyArg_ParseTuple (args, "|fff", &input, &samplerate, &fftsize)) {
68    return NULL;
69  }
70
71  output = aubio_miditobin (input, samplerate, fftsize);
72
73  return (PyObject *)PyFloat_FromDouble (output);
74}
75
76static char Py_bintofreq_doc[] = "convert bin to freq";
77
78static PyObject *
79Py_bintofreq (PyObject * self, PyObject * args)
80{
81  smpl_t input, samplerate, fftsize;
82  smpl_t output;
83
84  if (!PyArg_ParseTuple (args, "|fff", &input, &samplerate, &fftsize)) {
85    return NULL;
86  }
87
88  output = aubio_bintofreq (input, samplerate, fftsize);
89
90  return (PyObject *)PyFloat_FromDouble (output);
91}
92
93static char Py_freqtobin_doc[] = "convert freq to bin";
94
95static PyObject *
96Py_freqtobin (PyObject * self, PyObject * args)
97{
98  smpl_t input, samplerate, fftsize;
99  smpl_t output;
100
101  if (!PyArg_ParseTuple (args, "|fff", &input, &samplerate, &fftsize)) {
102    return NULL;
103  }
104
105  output = aubio_freqtobin (input, samplerate, fftsize);
106
107  return (PyObject *)PyFloat_FromDouble (output);
108}
109
110static char Py_zero_crossing_rate_doc[] = "compute zero crossing rate";
111
112static PyObject *
113Py_zero_crossing_rate (PyObject * self, PyObject * args)
114{
115  PyObject *input;
116  fvec_t *vec;
117  PyObject *result;
118
119  if (!PyArg_ParseTuple (args, "O:zero_crossing_rate", &input)) {
120    return NULL;
121  }
122
123  if (input == NULL) {
124    return NULL;
125  }
126
127  vec = PyAubio_ArrayToCFvec (input);
128
129  if (vec == NULL) {
130    return NULL;
131  }
132
133  // compute the function
134  result = Py_BuildValue ("f", aubio_zero_crossing_rate (vec));
135  if (result == NULL) {
136    return NULL;
137  }
138
139  return result;
140}
141
142static char Py_min_removal_doc[] = "compute zero crossing rate";
143
144static PyObject *
145Py_min_removal(PyObject * self, PyObject * args)
146{
147  PyObject *input;
148  fvec_t *vec;
149
150  if (!PyArg_ParseTuple (args, "O:min_removal", &input)) {
151    return NULL;
152  }
153
154  if (input == NULL) {
155    return NULL;
156  }
157
158  vec = PyAubio_ArrayToCFvec (input);
159
160  if (vec == NULL) {
161    return NULL;
162  }
163
164  // compute the function
165  fvec_min_removal (vec);
166
167  // since this function does not return, we could return None
168  //Py_RETURN_NONE;
169  // however it is convenient to return the modified vector
170  return (PyObject *) PyAubio_CFvecToArray(vec);
171  // or even without converting it back to an array
172  //Py_INCREF(vec);
173  //return (PyObject *)vec;
174}
175
176static PyMethodDef aubio_methods[] = {
177  {"bintomidi", Py_bintomidi, METH_VARARGS, Py_bintomidi_doc},
178  {"miditobin", Py_miditobin, METH_VARARGS, Py_miditobin_doc},
179  {"bintofreq", Py_bintofreq, METH_VARARGS, Py_bintofreq_doc},
180  {"freqtobin", Py_freqtobin, METH_VARARGS, Py_freqtobin_doc},
181  {"alpha_norm", Py_alpha_norm, METH_VARARGS, Py_alpha_norm_doc},
182  {"zero_crossing_rate", Py_zero_crossing_rate, METH_VARARGS, Py_zero_crossing_rate_doc},
183  {"min_removal", Py_min_removal, METH_VARARGS, Py_min_removal_doc},
184  {NULL, NULL} /* Sentinel */
185};
186
187static char aubio_module_doc[] = "Python module for the aubio library";
188
189PyMODINIT_FUNC
190init_aubio (void)
191{
192  PyObject *m;
193  int err;
194
195  // fvec is defined in __init__.py
196  if (   (PyType_Ready (&Py_cvecType) < 0)
197      || (PyType_Ready (&Py_filterType) < 0)
198      || (PyType_Ready (&Py_filterbankType) < 0)
199      || (PyType_Ready (&Py_fftType) < 0)
200      || (PyType_Ready (&Py_pvocType) < 0)
201      || (PyType_Ready (&Py_sourceType) < 0)
202      || (PyType_Ready (&Py_sinkType) < 0)
203      // generated objects
204      || (generated_types_ready() < 0 )
205  ) {
206    return;
207  }
208
209  m = Py_InitModule3 ("_aubio", aubio_methods, aubio_module_doc);
210
211  if (m == NULL) {
212    return;
213  }
214
215  err = _import_array ();
216  if (err != 0) {
217    fprintf (stderr,
218        "Unable to import Numpy array from aubio module (error %d)\n", err);
219  }
220
221  Py_INCREF (&Py_cvecType);
222  PyModule_AddObject (m, "cvec", (PyObject *) & Py_cvecType);
223  Py_INCREF (&Py_filterType);
224  PyModule_AddObject (m, "digital_filter", (PyObject *) & Py_filterType);
225  Py_INCREF (&Py_filterbankType);
226  PyModule_AddObject (m, "filterbank", (PyObject *) & Py_filterbankType);
227  Py_INCREF (&Py_fftType);
228  PyModule_AddObject (m, "fft", (PyObject *) & Py_fftType);
229  Py_INCREF (&Py_pvocType);
230  PyModule_AddObject (m, "pvoc", (PyObject *) & Py_pvocType);
231  Py_INCREF (&Py_sourceType);
232  PyModule_AddObject (m, "source", (PyObject *) & Py_sourceType);
233  Py_INCREF (&Py_sinkType);
234  PyModule_AddObject (m, "sink", (PyObject *) & Py_sinkType);
235
236  // add generated objects
237  add_generated_objects(m);
238
239  // add ufunc
240  add_ufuncs(m);
241}
Note: See TracBrowser for help on using the repository browser.