Changeset c34336e for src


Ignore:
Timestamp:
Dec 17, 2013, 5:13:28 PM (10 years ago)
Author:
Paul Brossier <piem@piem.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:
941c9f9
Parents:
5d10ac1
Message:

src/fvec.h: clean up fvec api

Location:
src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/fvec.c

    r5d10ac1 rc34336e  
    3737}
    3838
    39 void fvec_write_sample(fvec_t *s, smpl_t data, uint_t position) {
     39void fvec_set_sample(fvec_t *s, smpl_t data, uint_t position) {
    4040  s->data[position] = data;
    4141}
    4242
    43 smpl_t fvec_read_sample(fvec_t *s, uint_t position) {
     43smpl_t fvec_get_sample(fvec_t *s, uint_t position) {
    4444  return s->data[position];
    4545}
     
    5959}
    6060
    61 void fvec_set(fvec_t *s, smpl_t val) {
     61void fvec_set_all (fvec_t *s, smpl_t val) {
    6262  uint_t j;
    6363  for (j=0; j< s->length; j++) {
     
    7070  memset(s->data, 0, s->length * sizeof(smpl_t));
    7171#else
    72   fvec_set(s, 0.);
     72  fvec_set_all (s, 0.);
    7373#endif
    7474}
    7575
    7676void fvec_ones(fvec_t *s) {
    77   fvec_set(s, 1.);
     77  fvec_set_all (s, 1.);
    7878}
    7979
  • src/fvec.h

    r5d10ac1 rc34336e  
    7676*/
    7777fvec_t * new_fvec(uint_t length);
     78
    7879/** fvec_t buffer deletion function
    7980
     
    8283*/
    8384void del_fvec(fvec_t *s);
     85
    8486/** read sample value in a buffer
    8587
     
    9294
    9395*/
    94 smpl_t fvec_read_sample(fvec_t *s, uint_t position);
     96smpl_t fvec_get_sample(fvec_t *s, uint_t position);
     97
    9598/** write sample value in a buffer
    9699
     
    104107
    105108*/
    106 void  fvec_write_sample(fvec_t *s, smpl_t data, uint_t position);
     109void  fvec_set_sample(fvec_t *s, smpl_t data, uint_t position);
    107110
    108111/** read data from a buffer
     
    130133
    131134*/
    132 void fvec_set(fvec_t *s, smpl_t val);
     135void fvec_set_all (fvec_t *s, smpl_t val);
    133136
    134137/** set all elements to zero
Note: See TracChangeset for help on using the changeset viewer.