From: Paul Brossier Date: Tue, 9 Feb 2016 14:35:00 +0000 (+0100) Subject: python/lib/gen_pyobject.py: add sint_t X-Git-Tag: 0.4.4~300^2~343 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=11758834ba430d299e33cc42b0d81257f139451b;p=aubio.git python/lib/gen_pyobject.py: add sint_t --- diff --git a/python/lib/gen_pyobject.py b/python/lib/gen_pyobject.py index ba8274e5..8c5e37f6 100644 --- a/python/lib/gen_pyobject.py +++ b/python/lib/gen_pyobject.py @@ -108,6 +108,7 @@ defaultsizes = { # default value for variables aubioinitvalue = { 'uint_t': 0, + 'sint_t': 0, 'smpl_t': 0, 'lsmp_t': 0., 'char_t*': 'NULL', @@ -137,6 +138,7 @@ aubiodefvalue = { # aubio to python aubio2pytypes = { 'uint_t': 'I', + 'sint_t': 'I', 'smpl_t': 'f', 'lsmp_t': 'd', 'fvec_t*': 'O',