aubio_wavetable_stop method

int aubio_wavetable_stop(
  1. Pointer<aubio_wavetable_t> o
)

stop wavetable

\param o wavetable, created by new_aubio_wavetable()

\return 0 if successful, 1 otherwise

Implementation

int aubio_wavetable_stop(
  ffi.Pointer<aubio_wavetable_t> o,
) {
  return _aubio_wavetable_stop(
    o,
  );
}