make comments doxygen compliant
authorPaul Brossier <piem@altern.org>
Sun, 23 Jul 2006 09:01:03 +0000 (09:01 +0000)
committerPaul Brossier <piem@altern.org>
Sun, 23 Jul 2006 09:01:03 +0000 (09:01 +0000)
make comments doxygen compliant

src/onset.c

index c15f00b929925018841fdebb808ccc9326e13697..172a9e50c4b249847ddacad8c7eab753d73f491d 100644 (file)
 #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 */