snd_pcm_area_silence method

int snd_pcm_area_silence(
  1. Pointer<snd_pcm_channel_area_t> dst_channel,
  2. int dst_offset,
  3. int samples,
  4. int format,
)

Implementation

int snd_pcm_area_silence(
  ffi.Pointer<snd_pcm_channel_area_t> dst_channel,
  int dst_offset,
  int samples,
  int format,
) {
  return _snd_pcm_area_silence(
    dst_channel,
    dst_offset,
    samples,
    format,
  );
}