aubio_sampler_do method

void aubio_sampler_do(
  1. Pointer<aubio_sampler_t> o,
  2. Pointer<fvec_t> input,
  3. Pointer<fvec_t> output
)

process sampler function

\param o sampler, created by new_aubio_sampler() \param input input of the sampler, to be added to the output \param output output of the sampler

This function adds the new samples from the playing source to the output.

If input is not NULL and different from output, then the samples from input are added to the output.

Implementation

void aubio_sampler_do(
  ffi.Pointer<aubio_sampler_t> o,
  ffi.Pointer<fvec_t> input,
  ffi.Pointer<fvec_t> output,
) {
  return _aubio_sampler_do(
    o,
    input,
    output,
  );
}