aubio_tempo_set_delay_ms method

int aubio_tempo_set_delay_ms(
  1. Pointer<aubio_tempo_t> o,
  2. double delay
)

set current delay

\param o beat tracking object \param delay delay to set tempo to, in samples

\return 0 if successful, non-zero otherwise

Implementation

int aubio_tempo_set_delay_ms(
  ffi.Pointer<aubio_tempo_t> o,
  double delay,
) {
  return _aubio_tempo_set_delay_ms(
    o,
    delay,
  );
}