aubio_onset_reset method

void aubio_onset_reset(
  1. Pointer<aubio_onset_t> o
)

reset onset detection

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

Reset current time and last onset to 0.

This function is called at the end of new_aubio_onset().

Implementation

void aubio_onset_reset(
  ffi.Pointer<aubio_onset_t> o,
) {
  return _aubio_onset_reset(
    o,
  );
}