- Timestamp:
- Mar 1, 2006, 4:15:06 AM (19 years ago)
- 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/aubio/aubioclass.py
r431e9d8 rdcc8d90 25 25 del_cvec(self()) 26 26 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 """ 28 39 29 40 class sndfile:
Note: See TracChangeset
for help on using the changeset viewer.