new_aubio_pitchschmitt method

Pointer<aubio_pitchschmitt_t> new_aubio_pitchschmitt(
  1. int buf_size
)

creation of the pitch detection object

\param buf_size size of the input buffer to analyse

Implementation

ffi.Pointer<aubio_pitchschmitt_t> new_aubio_pitchschmitt(
  int buf_size,
) {
  return _new_aubio_pitchschmitt(
    buf_size,
  );
}