aubio_timestretch_do method

void aubio_timestretch_do(
  1. Pointer<aubio_timestretch_t> o,
  2. Pointer<fvec_t> out,
  3. Pointer<uint_t> read
)

execute time stretching on an input signal frame

\param o time stretching object as returned by new_aubio_timestretch() \param out timestretched output of size hop_size \param read number of frames actually wrote out

Implementation

void aubio_timestretch_do(
  ffi.Pointer<aubio_timestretch_t> o,
  ffi.Pointer<fvec_t> out,
  ffi.Pointer<uint_t> read,
) {
  return _aubio_timestretch_do(
    o,
    out,
    read,
  );
}