new_aubio_wavetable method

Pointer<_aubio_wavetable_t> new_aubio_wavetable(
  1. int samplerate,
  2. int hop_size
)

create new wavetable object

\param samplerate the sampling rate of the new wavetable \param hop_size the block size of the new wavetable

\return the newly created aubio_wavetable_t

Implementation

ffi.Pointer<_aubio_wavetable_t> new_aubio_wavetable(
  int samplerate,
  int hop_size,
) {
  return _new_aubio_wavetable(
    samplerate,
    hop_size,
  );
}