snd_pcm_areas_silence method

int snd_pcm_areas_silence(
  1. Pointer<snd_pcm_channel_area_t> dst_channels,
  2. int dst_offset,
  3. int channels,
  4. int frames,
  5. int format,
)

Implementation

int snd_pcm_areas_silence(
  ffi.Pointer<snd_pcm_channel_area_t> dst_channels,
  int dst_offset,
  int channels,
  int frames,
  int format,
) {
  return _snd_pcm_areas_silence(
    dst_channels,
    dst_offset,
    channels,
    frames,
    format,
  );
}