snd_pcm_hw_params_set_periods method

int snd_pcm_hw_params_set_periods(
  1. Pointer<snd_pcm_t> pcm,
  2. Pointer<snd_pcm_hw_params_t> params,
  3. int val,
  4. int dir
)

Implementation

int snd_pcm_hw_params_set_periods(
  ffi.Pointer<snd_pcm_t> pcm,
  ffi.Pointer<snd_pcm_hw_params_t> params,
  int val,
  int dir,
) {
  return _snd_pcm_hw_params_set_periods(
    pcm,
    params,
    val,
    dir,
  );
}