Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/onsetdetection.h

    rbd24069 rfabb7cd  
    4747        aubio_onset_phase,          /**< phase fast */           
    4848        aubio_onset_kl,             /**< Kullback Liebler */
    49         aubio_onset_mkl             /**< modified Kullback Liebler */
     49        aubio_onset_mkl,            /**< modified Kullback Liebler */
     50        aubio_onset_specflux,       /**< spectral flux */
    5051} aubio_onsetdetection_type;
    5152
     
    137138*/
    138139void aubio_onsetdetection_mkl(aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset);
     140/** Spectral Flux
     141
     142  Simon Dixon, Onset Detection Revisited, in ``Proceedings of the 9th
     143  International Conference on Digital Audio Effects'' (DAFx-06), Montreal,
     144  Canada, 2006.
     145
     146  \param o onset detection object as returned by new_aubio_onsetdetection()
     147  \param fftgrain input spectral frame
     148  \param onset output onset detection function
     149
     150*/
     151void aubio_onsetdetection_specflux(aubio_onsetdetection_t *o, cvec_t * fftgrain, fvec_t * onset);
    139152/** execute onset detection function on a spectral frame
    140153
     
    161174*/
    162175void del_aubio_onsetdetection(aubio_onsetdetection_t *o);
    163 /** deletion of an onset detection object (obsolete)
    164 
    165   \param o onset detection object as returned by new_aubio_onsetdetection()
    166 
    167 */
    168 void aubio_onsetdetection_free(aubio_onsetdetection_t *o);
    169 
    170176
    171177#ifdef __cplusplus
Note: See TracChangeset for help on using the changeset viewer.