ref: 11758834ba430d299e33cc42b0d81257f139451b
parent: 9590e81ca61f4443df166ad36a18ff793a11d998
author: Paul Brossier <piem@piem.org>
date: Tue Feb 9 10:35:00 EST 2016
python/lib/gen_pyobject.py: add sint_t
--- a/python/lib/gen_pyobject.py
+++ b/python/lib/gen_pyobject.py
@@ -108,6 +108,7 @@
# default value for variables
aubioinitvalue = {
'uint_t': 0,
+ 'sint_t': 0,
'smpl_t': 0,
'lsmp_t': 0.,
'char_t*': 'NULL',
@@ -137,6 +138,7 @@
# aubio to python
aubio2pytypes = {
'uint_t': 'I',
+ 'sint_t': 'I',
'smpl_t': 'f',
'lsmp_t': 'd',
'fvec_t*': 'O',