new_aubio_pitchyinfft method

Pointer<aubio_pitchyinfft_t> new_aubio_pitchyinfft(
  1. int samplerate,
  2. int buf_size
)

creation of the pitch detection object

\param samplerate samplerate of the input signal \param buf_size size of the input buffer to analyse

Implementation

ffi.Pointer<aubio_pitchyinfft_t> new_aubio_pitchyinfft(
  int samplerate,
  int buf_size,
) {
  return _new_aubio_pitchyinfft(
    samplerate,
    buf_size,
  );
}