aubio_pvoc_set_window method

int aubio_pvoc_set_window(
  1. Pointer<aubio_pvoc_t> pv,
  2. Pointer<char_t> window_type
)

set window type

\param pv phase vocoder to set the window type \param window_type a string representing a window

\return 0 if successful, non-zero otherwise

Implementation

int aubio_pvoc_set_window(
  ffi.Pointer<aubio_pvoc_t> pv,
  ffi.Pointer<char_t> window_type,
) {
  return _aubio_pvoc_set_window(
    pv,
    window_type,
  );
}