ref: dcc8d90beb1513384145a8f52ae3ea0d839da18f
parent: 431e9d85c3e00f631c905408ecb6e58c07c18cf2
author: Paul Brossier <piem@altern.org>
date: Tue Feb 28 22:15:06 EST 2006
fix norm in aubioclass fix norm in aubioclass
--- a/python/aubio/aubioclass.py
+++ b/python/aubio/aubioclass.py
@@ -24,7 +24,18 @@
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):