new_aubio_spectral_whitening method

Pointer<aubio_spectral_whitening_t> new_aubio_spectral_whitening(
  1. int buf_size,
  2. int hop_size,
  3. int samplerate
)

creation of a spectral whitening object

\param buf_size window size of input grains \param hop_size number of samples between two consecutive input grains \param samplerate sampling rate of the input signal

Implementation

ffi.Pointer<aubio_spectral_whitening_t> new_aubio_spectral_whitening(
  int buf_size,
  int hop_size,
  int samplerate,
) {
  return _new_aubio_spectral_whitening(
    buf_size,
    hop_size,
    samplerate,
  );
}