aubio_onset_set_delay_ms method

int aubio_onset_set_delay_ms(
  1. Pointer<aubio_onset_t> o,
  2. double delay
)

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 (in milliseconds)

Implementation

int aubio_onset_set_delay_ms(
  ffi.Pointer<aubio_onset_t> o,
  double delay,
) {
  return _aubio_onset_set_delay_ms(
    o,
    delay,
  );
}