opus_multistream_surround_encoder_create method
Allocates and initializes a multistream encoder state.
Implementation
ffi.Pointer<OpusMSEncoder> opus_multistream_surround_encoder_create(
  int Fs,
  int channels,
  int mapping_family,
  ffi.Pointer<ffi.Int32> streams,
  ffi.Pointer<ffi.Int32> coupled_streams,
  ffi.Pointer<ffi.Uint8> mapping,
  int application,
  ffi.Pointer<ffi.Int32> error,
) {
  return _opus_multistream_surround_encoder_create(Fs, channels,
      mapping_family, streams, coupled_streams, mapping, application, error);
}