snd_pcm_areas_copy method

int snd_pcm_areas_copy(
  1. Pointer<snd_pcm_channel_area_t> dst_channels,
  2. int dst_offset,
  3. Pointer<snd_pcm_channel_area_t> src_channels,
  4. int src_offset,
  5. int channels,
  6. int frames,
  7. int format,
)

Implementation

int snd_pcm_areas_copy(
  ffi.Pointer<snd_pcm_channel_area_t> dst_channels,
  int dst_offset,
  ffi.Pointer<snd_pcm_channel_area_t> src_channels,
  int src_offset,
  int channels,
  int frames,
  int format,
) {
  return _snd_pcm_areas_copy(
    dst_channels,
    dst_offset,
    src_channels,
    src_offset,
    channels,
    frames,
    format,
  );
}