aubio_pitch_get_tolerance method

double aubio_pitch_get_tolerance(
  1. Pointer<_aubio_pitch_t> o
)

get yin or yinfft tolerance threshold

\param o pitch detection object as returned by new_aubio_pitch() \return tolerance (default is 0.15 for yin and 0.85 for yinfft)

Implementation

double aubio_pitch_get_tolerance(
  ffi.Pointer<_aubio_pitch_t> o,
) {
  return _aubio_pitch_get_tolerance(
    o,
  );
}