src/fvec.h: clean up old doc
authorPaul Brossier <piem@piem.org>
Tue, 17 Dec 2013 16:19:26 +0000 (11:19 -0500)
committerPaul Brossier <piem@piem.org>
Tue, 17 Dec 2013 16:19:26 +0000 (11:19 -0500)
src/fvec.h

index a2834dc..ee2f873 100644 (file)
@@ -85,10 +85,6 @@ void del_fvec(fvec_t *s);
 
 /** 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 @@ smpl_t fvec_get_sample(fvec_t *s, uint_t position);
 
 /** 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 
@@ -110,10 +102,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
 
 */