From: Paul Brossier Date: Tue, 17 Dec 2013 16:19:26 +0000 (-0500) Subject: src/fvec.h: clean up old doc X-Git-Tag: 0.4.0~10 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=941c9f9e9f62df16a7ad305ad3db33f362fbab5f;p=aubio.git src/fvec.h: clean up old doc --- diff --git a/src/fvec.h b/src/fvec.h index a2834dcc..ee2f8739 100644 --- a/src/fvec.h +++ b/src/fvec.h @@ -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 */