ma_channel_converter_config_init function

ma_channel_converter_config ma_channel_converter_config_init(
  1. ma_format format,
  2. Dartma_uint32 channelsIn,
  3. Pointer<ma_uint8> pChannelMapIn,
  4. Dartma_uint32 channelsOut,
  5. Pointer<ma_uint8> pChannelMapOut,
  6. ma_channel_mix_mode mixingMode,
)

Implementation

ma_channel_converter_config ma_channel_converter_config_init(
  ma_format format,
  Dartma_uint32 channelsIn,
  ffi.Pointer<ma_channel> pChannelMapIn,
  Dartma_uint32 channelsOut,
  ffi.Pointer<ma_channel> pChannelMapOut,
  ma_channel_mix_mode mixingMode,
) => _ma_channel_converter_config_init(
  format.value,
  channelsIn,
  pChannelMapIn,
  channelsOut,
  pChannelMapOut,
  mixingMode.value,
);