From: Paul Brossier Date: Wed, 1 Mar 2006 03:15:06 +0000 (+0000) Subject: fix norm in aubioclass X-Git-Tag: bzr2git~752 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=dcc8d90beb1513384145a8f52ae3ea0d839da18f;p=aubio.git fix norm in aubioclass fix norm in aubioclass --- diff --git a/python/aubio/aubioclass.py b/python/aubio/aubioclass.py index 6c518eab..dd4eef18 100644 --- a/python/aubio/aubioclass.py +++ b/python/aubio/aubioclass.py @@ -24,7 +24,18 @@ class cvec: def __del__(self): del_cvec(self()) def get(self,pos,chan): - return fvec_read_sample(self(),chan,pos) + return cvec_read_norm(self(),chan,pos) + + """ + cvec_write_norm(cvec_t *s, smpl_t data, uint_t channel, uint_t position); + cvec_write_phas(cvec_t *s, smpl_t data, uint_t channel, uint_t position); + cvec_read_norm (cvec_t *s, uint_t channel, uint_t position); + cvec_read_phas (cvec_t *s, uint_t channel, uint_t position); + cvec_put_norm_channel(cvec_t *s, smpl_t * data, uint_t channel); + cvec_put_phas_channel(cvec_t *s, smpl_t * data, uint_t channel); + cvec_get_norm_channel(cvec_t *s, uint_t channel); + cvec_get_phas_channel(cvec_t *s, uint_t channel); + """ class sndfile: def __init__(self,filename,model=None):