new_aubio_pitchyin method

Pointer<aubio_pitchyin_t> new_aubio_pitchyin(
  1. int buf_size
)

creation of the pitch detection object

\param buf_size size of the input buffer to analyse

Implementation

ffi.Pointer<aubio_pitchyin_t> new_aubio_pitchyin(
  int buf_size,
) {
  return _new_aubio_pitchyin(
    buf_size,
  );
}