aubio_timestretch_push method

int aubio_timestretch_push(
  1. Pointer<aubio_timestretch_t> o,
  2. Pointer<fvec_t> in1,
  3. int length
)

push length samples from in to time stretching object

\param o time stretching object as returned by ::new_aubio_timestretch() \param in input vector of new samples to push to time stretching object \param length number of new samples to push from input vector

\return number of currently available samples

Implementation

int aubio_timestretch_push(
  ffi.Pointer<aubio_timestretch_t> o,
  ffi.Pointer<fvec_t> in1,
  int length,
) {
  return _aubio_timestretch_push(
    o,
    in1,
    length,
  );
}