Changeset 989bf7f


Ignore:
Timestamp:
Jul 23, 2006, 11:01:03 AM (18 years ago)
Author:
Paul Brossier <piem@altern.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
6ba2f1c
Parents:
895ad8c
Message:

make comments doxygen compliant
make comments doxygen compliant

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/onset.c

    r895ad8c r989bf7f  
    2626#include "onset.h"
    2727
    28 /* structure to store object state */
     28/** structure to store object state */
    2929struct _aubio_onset_t {
    30   aubio_pvoc_t * pv;            /** phase vocoder */
    31   aubio_onsetdetection_t * od;  /** onset detection */
    32   aubio_pickpeak_t * pp;        /** peak picker */
    33   cvec_t * fftgrain;            /** phase vocoder output */
    34   fvec_t * of;                  /** onset detection function */
    35   smpl_t threshold;             /** onset peak picking threshold */
    36   smpl_t silence;               /** silence threhsold */
    37   uint_t minioi;                /** minimum inter onset interval */
    38   uint_t wasonset;              /** number of frames since last onset */
     30  aubio_pvoc_t * pv;            /**< phase vocoder */
     31  aubio_onsetdetection_t * od;  /**< onset detection */
     32  aubio_pickpeak_t * pp;        /**< peak picker */
     33  cvec_t * fftgrain;            /**< phase vocoder output */
     34  fvec_t * of;                  /**< onset detection function */
     35  smpl_t threshold;             /**< onset peak picking threshold */
     36  smpl_t silence;               /**< silence threhsold */
     37  uint_t minioi;                /**< minimum inter onset interval */
     38  uint_t wasonset;              /**< number of frames since last onset */
    3939};
    4040
Note: See TracChangeset for help on using the changeset viewer.