aubio_pitchshift_get_latency method

int aubio_pitchshift_get_latency(
  1. Pointer<aubio_pitchshift_t> o
)

get the latency of the pitch shifting object, in samples

\param o pitch shifting object as returned by ::new_aubio_pitchshift()

\return latency of the pitch shifting object in samples

Implementation

int aubio_pitchshift_get_latency(
  ffi.Pointer<aubio_pitchshift_t> o,
) {
  return _aubio_pitchshift_get_latency(
    o,
  );
}