aubio_timestretch_get_latency method

int aubio_timestretch_get_latency(
  1. Pointer<aubio_timestretch_t> o
)

get the latency of the time stretching object, in samples

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

\return latency of the time stretching object in samples

Implementation

int aubio_timestretch_get_latency(
  ffi.Pointer<aubio_timestretch_t> o,
) {
  return _aubio_timestretch_get_latency(
    o,
  );
}