ma_channel_map_copy function

  1. @Native<Void Function(Pointer<ma_uint8>, Pointer<ma_uint8>, ma_uint32)>(ffi.Pointer<ma_channel>, ffi.Pointer<ma_channel>, ma_uint32)>()
void ma_channel_map_copy(
  1. Pointer<ma_uint8> pOut,
  2. Pointer<ma_uint8> pIn,
  3. int channels
)

Copies a channel map.

Both input and output channel map buffers must have a capacity of at least channels.

Implementation

@ffi.Native<
  ffi.Void Function(ffi.Pointer<ma_channel>, ffi.Pointer<ma_channel>, ma_uint32)
>()
external void ma_channel_map_copy(
  ffi.Pointer<ma_channel> pOut,
  ffi.Pointer<ma_channel> pIn,
  int channels,
);