shithub: aubio

Download patch

ref: 941c9f9e9f62df16a7ad305ad3db33f362fbab5f
parent: c34336ecfd4d5bd0740d7cddf0a76eeb7910f3ba
author: Paul Brossier <[email protected]>
date: Tue Dec 17 06:19:26 EST 2013

src/fvec.h: clean up old doc

--- a/src/fvec.h
+++ b/src/fvec.h
@@ -85,10 +85,6 @@
 
 /** read sample value in a buffer
 
-  Note that this function is not used in the aubio library, since the same
-  result can be obtained using vec->data[position]. Its purpose is to
-  access these values from wrappers, as created by swig.
-
   \param s vector to read from
   \param position sample position to read from 
 
@@ -97,10 +93,6 @@
 
 /** write sample value in a buffer
 
-  Note that this function is not used in the aubio library, since the same
-  result can be obtained by assigning vec->data[position]. Its purpose
-  is to access these values from wrappers, as created by swig.
-
   \param s vector to write to 
   \param data value to write in s->data[position]
   \param position sample position to write to 
@@ -109,10 +101,6 @@
 void  fvec_set_sample(fvec_t *s, smpl_t data, uint_t position);
 
 /** read data from a buffer
-
-  Note that this function is not used in the aubio library, since the same
-  result can be obtained with vec->data. Its purpose is to access these values
-  from wrappers, as created by swig.
 
   \param s vector to read from