new_aubio_pitchfcomb method

Pointer<aubio_pitchfcomb_t> new_aubio_pitchfcomb(
  1. int buf_size,
  2. int hop_size
)

creation of the pitch detection object

\param buf_size size of the input buffer to analyse \param hop_size step size between two consecutive analysis instant

Implementation

ffi.Pointer<aubio_pitchfcomb_t> new_aubio_pitchfcomb(
  int buf_size,
  int hop_size,
) {
  return _new_aubio_pitchfcomb(
    buf_size,
    hop_size,
  );
}