aubio_onset_get_last method

int aubio_onset_get_last(
  1. Pointer<aubio_onset_t> o
)

get the time of the latest onset detected, in samples

\param o onset detection object as returned by new_aubio_onset()

\return onset detection timestamps (in samples)

Implementation

int aubio_onset_get_last(
  ffi.Pointer<aubio_onset_t> o,
) {
  return _aubio_onset_get_last(
    o,
  );
}