Ignore:
Timestamp:
Mar 1, 2006, 4:15:06 AM (19 years ago)
Author:
Paul Brossier <piem@altern.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
0484dc1
Parents:
431e9d8
Message:

fix norm in aubioclass
fix norm in aubioclass

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/aubio/aubioclass.py

    r431e9d8 rdcc8d90  
    2525        del_cvec(self())
    2626    def get(self,pos,chan):
    27         return fvec_read_sample(self(),chan,pos)
     27        return cvec_read_norm(self(),chan,pos)
     28
     29    """
     30        cvec_write_norm(cvec_t *s, smpl_t data, uint_t channel, uint_t position);
     31        cvec_write_phas(cvec_t *s, smpl_t data, uint_t channel, uint_t position);
     32        cvec_read_norm (cvec_t *s, uint_t channel, uint_t position);
     33        cvec_read_phas (cvec_t *s, uint_t channel, uint_t position);
     34        cvec_put_norm_channel(cvec_t *s, smpl_t * data, uint_t channel);
     35        cvec_put_phas_channel(cvec_t *s, smpl_t * data, uint_t channel);
     36        cvec_get_norm_channel(cvec_t *s, uint_t channel);
     37        cvec_get_phas_channel(cvec_t *s, uint_t channel);
     38    """
    2839
    2940class sndfile:
Note: See TracChangeset for help on using the changeset viewer.