aubio_sampler_do_multi method

void aubio_sampler_do_multi(
  1. Pointer<aubio_sampler_t> o,
  2. Pointer<fmat_t> input,
  3. Pointer<fmat_t> output
)

process sampler function, multiple channels

\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_multi(
  ffi.Pointer<aubio_sampler_t> o,
  ffi.Pointer<fmat_t> input,
  ffi.Pointer<fmat_t> output,
) {
  return _aubio_sampler_do_multi(
    o,
    input,
    output,
  );
}