shithub: aubio

Download patch

ref: dba9b331884f175429fc65227d7e0600e999e5dc
parent: 7f0fd1d8ae701132c8f11d2ae1809b815121cdae
author: Paul Brossier <[email protected]>
date: Tue Mar 25 19:40:08 EDT 2014

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

--- a/src/onset/onset.h
+++ b/src/onset/onset.h
@@ -176,7 +176,7 @@
 */
 uint_t aubio_onset_set_minioi_ms(aubio_onset_t * o, smpl_t minioi);
 
-/** set minimum inter onset interval in samples
+/** set delay in samples
 
   \param o onset detection object as returned by new_aubio_onset()
   \param delay constant system delay to take back from detection time
@@ -185,7 +185,7 @@
 */
 uint_t aubio_onset_set_delay(aubio_onset_t * o, uint_t delay);
 
-/** set minimum inter onset interval in seconds
+/** set delay in seconds
 
   \param o onset detection object as returned by new_aubio_onset()
   \param delay constant system delay to take back from detection time
@@ -194,7 +194,7 @@
 */
 uint_t aubio_onset_set_delay_s(aubio_onset_t * o, smpl_t delay);
 
-/** set minimum inter onset interval in milliseconds
+/** set delay in milliseconds
 
   \param o onset detection object as returned by new_aubio_onset()
   \param delay constant system delay to take back from detection time
@@ -230,7 +230,7 @@
 */
 smpl_t aubio_onset_get_minioi_ms(aubio_onset_t * o);
 
-/** get minimum inter onset interval in samples
+/** get delay in samples
 
   \param o onset detection object as returned by new_aubio_onset()
   \return constant system delay to take back from detection time
@@ -239,7 +239,7 @@
 */
 uint_t aubio_onset_get_delay(aubio_onset_t * o);
 
-/** get minimum inter onset interval in seconds
+/** get delay in seconds
 
   \param o onset detection object as returned by new_aubio_onset()
   \return constant system delay to take back from detection time
@@ -248,7 +248,7 @@
 */
 smpl_t aubio_onset_get_delay_s(aubio_onset_t * o);
 
-/** get minimum inter onset interval in milliseconds
+/** get delay in milliseconds
 
   \param o onset detection object as returned by new_aubio_onset()
   \return constant system delay to take back from detection time