shithub: aubio

Download patch

ref: 989bf7fb451b5b783e4949ebf527a33d34c97c11
parent: 895ad8cbe87d41aa4f6c4624f8ea95d94b024446
author: Paul Brossier <piem@altern.org>
date: Sun Jul 23 05:01:03 EDT 2006

make comments doxygen compliant
make comments doxygen compliant


--- a/src/onset.c
+++ b/src/onset.c
@@ -25,17 +25,17 @@
 #include "mathutils.h"
 #include "onset.h"
 
-/* structure to store object state */
+/** structure to store object state */
 struct _aubio_onset_t {
-  aubio_pvoc_t * pv;            /** phase vocoder */
-  aubio_onsetdetection_t * od;  /** onset detection */ 
-  aubio_pickpeak_t * pp;        /** peak picker */
-  cvec_t * fftgrain;            /** phase vocoder output */
-  fvec_t * of;                  /** onset detection function */
-  smpl_t threshold;             /** onset peak picking threshold */
-  smpl_t silence;               /** silence threhsold */
-  uint_t minioi;                /** minimum inter onset interval */
-  uint_t wasonset;              /** number of frames since last onset */
+  aubio_pvoc_t * pv;            /**< phase vocoder */
+  aubio_onsetdetection_t * od;  /**< onset detection */ 
+  aubio_pickpeak_t * pp;        /**< peak picker */
+  cvec_t * fftgrain;            /**< phase vocoder output */
+  fvec_t * of;                  /**< onset detection function */
+  smpl_t threshold;             /**< onset peak picking threshold */
+  smpl_t silence;               /**< silence threhsold */
+  uint_t minioi;                /**< minimum inter onset interval */
+  uint_t wasonset;              /**< number of frames since last onset */
 };
 
 /* execute onset detection function on iput buffer */