aubio_wavetable_play method

int aubio_wavetable_play(
  1. Pointer<_aubio_wavetable_t> o
)

play sample from start

\param o wavetable, created by new_aubio_wavetable()

\return 0 if successful, 1 otherwise

Implementation

int aubio_wavetable_play(
  ffi.Pointer<_aubio_wavetable_t> o,
) {
  return _aubio_wavetable_play(
    o,
  );
}