snd_pcm_get_params method

int snd_pcm_get_params(
  1. Pointer<snd_pcm_> pcm,
  2. Pointer<Uint64> buffer_size,
  3. Pointer<Uint64> period_size
)

Implementation

int snd_pcm_get_params(
  ffi.Pointer<snd_pcm_> pcm,
  ffi.Pointer<ffi.Uint64> buffer_size,
  ffi.Pointer<ffi.Uint64> period_size,
) {
  return _snd_pcm_get_params(
    pcm,
    buffer_size,
    period_size,
  );
}