snd_pcm_areas_copy method
int
snd_pcm_areas_copy(
- Pointer<
snd_pcm_channel_area_t> dst_channels, - int dst_offset,
- Pointer<
snd_pcm_channel_area_t> src_channels, - int src_offset,
- int channels,
- int frames,
- 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,
);
}