snd_pcm_area_copy method
int
snd_pcm_area_copy(
- Pointer<
snd_pcm_channel_area_t> dst_channel, - int dst_offset,
- Pointer<
snd_pcm_channel_area_t> src_channel, - int src_offset,
- int samples,
- 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,
);
}