Changeset 7c206df for swig


Ignore:
Timestamp:
Feb 28, 2006, 8:30:11 AM (18 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:
431e9d8
Parents:
d3efa4e
Message:

[src,swig] added cvec methods to sample
[src,swig] added cvec methods to sample

File:
1 edited

Legend:

Unmodified
Added
Removed
  • swig/aubio.i

    rd3efa4e r7c206df  
    4949extern cvec_t * new_cvec(uint_t length, uint_t channels);
    5050extern void del_cvec(cvec_t *s);
     51extern void cvec_write_norm(cvec_t *s, smpl_t data, uint_t channel, uint_t position);
     52extern void cvec_write_phas(cvec_t *s, smpl_t data, uint_t channel, uint_t position);
     53extern smpl_t cvec_read_norm(cvec_t *s, uint_t channel, uint_t position);
     54extern smpl_t cvec_read_phas(cvec_t *s, uint_t channel, uint_t position);
     55extern void cvec_put_norm_channel(cvec_t *s, smpl_t * data, uint_t channel);
     56extern void cvec_put_phas_channel(cvec_t *s, smpl_t * data, uint_t channel);
     57extern smpl_t * cvec_get_norm_channel(cvec_t *s, uint_t channel);
     58extern smpl_t * cvec_get_phas_channel(cvec_t *s, uint_t channel);
     59extern smpl_t ** cvec_get_norm(cvec_t *s);
     60extern smpl_t ** cvec_get_phas(cvec_t *s);
    5161
    5262
Note: See TracChangeset for help on using the changeset viewer.