aubio_timestretch_reset method

int aubio_timestretch_reset(
  1. Pointer<aubio_timestretch_t> o
)

reset the time stretching object

\param o time stretching object as returned by ::new_aubio_timestretch()

\return 0 on success, non-zero otherwise

Implementation

int aubio_timestretch_reset(
  ffi.Pointer<aubio_timestretch_t> o,
) {
  return _aubio_timestretch_reset(
    o,
  );
}