From 35f7e0597087fa0a196036925b0773fc39dd14ce Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Tue, 20 Nov 2018 22:34:26 +0100 Subject: [PATCH] [py] filterbank power and norm are floats --- python/ext/py-filterbank.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/python/ext/py-filterbank.c b/python/ext/py-filterbank.c index 01d4d3f1..99cf4668 100644 --- a/python/ext/py-filterbank.c +++ b/python/ext/py-filterbank.c @@ -268,9 +268,9 @@ Py_filterbank_get_coeffs (Py_filterbank * self, PyObject *unused) static PyObject * Py_filterbank_set_power(Py_filterbank *self, PyObject *args) { - uint_t power; + smpl_t power; - if (!PyArg_ParseTuple (args, "I", &power)) { + if (!PyArg_ParseTuple (args, "f", &power)) { return NULL; } if(aubio_filterbank_set_power (self->o, power)) { @@ -291,12 +291,12 @@ Py_filterbank_set_power(Py_filterbank *self, PyObject *args) static PyObject * Py_filterbank_set_norm(Py_filterbank *self, PyObject *args) { - uint_t playing; + smpl_t norm; - if (!PyArg_ParseTuple (args, "I", &playing)) { + if (!PyArg_ParseTuple (args, "f", &norm)) { return NULL; } - if(aubio_filterbank_set_norm (self->o, playing)) { + if(aubio_filterbank_set_norm (self->o, norm)) { if (PyErr_Occurred() == NULL) { PyErr_SetString (PyExc_ValueError, "error running filterbank.set_power"); -- 2.11.0