snd_pcm_get_params method

int snd_pcm_get_params(
  1. Pointer<snd_pcm_t> pcm,
  2. Pointer<snd_pcm_uframes_t> buffer_size,
  3. Pointer<snd_pcm_uframes_t> period_size
)

Implementation

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