aubio_wavetable_do_multi method

void aubio_wavetable_do_multi(
  1. Pointer<aubio_wavetable_t> o,
  2. Pointer<fmat_t> input,
  3. Pointer<fmat_t> output
)

process wavetable function, multiple channels

\param o wavetable, created by new_aubio_wavetable() \param input input of the wavetable, to be added to the output \param output output of the wavetable

This function adds the new samples from the playing wavetable 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_wavetable_do_multi(
  ffi.Pointer<aubio_wavetable_t> o,
  ffi.Pointer<fmat_t> input,
  ffi.Pointer<fmat_t> output,
) {
  return _aubio_wavetable_do_multi(
    o,
    input,
    output,
  );
}