Changeset dba9b33 for src


Ignore:
Timestamp:
Mar 26, 2014, 3:40:08 AM (10 years ago)
Author:
Paul Brossier <piem@piem.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:
9209c79
Parents:
7f0fd1d
Message:

src/onset/onset.h: fix description of get/set_delay functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/onset/onset.h

    r7f0fd1d rdba9b33  
    177177uint_t aubio_onset_set_minioi_ms(aubio_onset_t * o, smpl_t minioi);
    178178
    179 /** set minimum inter onset interval in samples
     179/** set delay in samples
    180180
    181181  \param o onset detection object as returned by new_aubio_onset()
     
    186186uint_t aubio_onset_set_delay(aubio_onset_t * o, uint_t delay);
    187187
    188 /** set minimum inter onset interval in seconds
     188/** set delay in seconds
    189189
    190190  \param o onset detection object as returned by new_aubio_onset()
     
    195195uint_t aubio_onset_set_delay_s(aubio_onset_t * o, smpl_t delay);
    196196
    197 /** set minimum inter onset interval in milliseconds
     197/** set delay in milliseconds
    198198
    199199  \param o onset detection object as returned by new_aubio_onset()
     
    231231smpl_t aubio_onset_get_minioi_ms(aubio_onset_t * o);
    232232
    233 /** get minimum inter onset interval in samples
     233/** get delay in samples
    234234
    235235  \param o onset detection object as returned by new_aubio_onset()
     
    240240uint_t aubio_onset_get_delay(aubio_onset_t * o);
    241241
    242 /** get minimum inter onset interval in seconds
     242/** get delay in seconds
    243243
    244244  \param o onset detection object as returned by new_aubio_onset()
     
    249249smpl_t aubio_onset_get_delay_s(aubio_onset_t * o);
    250250
    251 /** get minimum inter onset interval in milliseconds
     251/** get delay in milliseconds
    252252
    253253  \param o onset detection object as returned by new_aubio_onset()
Note: See TracChangeset for help on using the changeset viewer.