aubio_tempo_set_delay method

int aubio_tempo_set_delay(
  1. Pointer<aubio_tempo_t> o,
  2. int 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(
  ffi.Pointer<aubio_tempo_t> o,
  int delay,
) {
  return _aubio_tempo_set_delay(
    o,
    delay,
  );
}