aubio_sampler_stop method

int aubio_sampler_stop(
  1. Pointer<aubio_sampler_t> o
)

stop sample

\param o sampler, created by new_aubio_sampler()

\return 0 if successful, 1 otherwise

Implementation

int aubio_sampler_stop(
  ffi.Pointer<aubio_sampler_t> o,
) {
  return _aubio_sampler_stop(
    o,
  );
}