snd_pcm_area_copy method

int snd_pcm_area_copy(
  1. Pointer<snd_pcm_channel_area_t> dst_channel,
  2. int dst_offset,
  3. Pointer<snd_pcm_channel_area_t> src_channel,
  4. int src_offset,
  5. int samples,
  6. int format,
)

Implementation

int snd_pcm_area_copy(
  ffi.Pointer<snd_pcm_channel_area_t> dst_channel,
  int dst_offset,
  ffi.Pointer<snd_pcm_channel_area_t> src_channel,
  int src_offset,
  int samples,
  int format,
) {
  return _snd_pcm_area_copy(
    dst_channel,
    dst_offset,
    src_channel,
    src_offset,
    samples,
    format,
  );
}