From 989bf7fb451b5b783e4949ebf527a33d34c97c11 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 23 Jul 2006 09:01:03 +0000 Subject: [PATCH] make comments doxygen compliant make comments doxygen compliant --- src/onset.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/onset.c b/src/onset.c index c15f00b9..172a9e50 100644 --- 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 */ -- 2.26.2