opus_multistream_surround_encoder_create method

Pointer<OpusMSEncoder> opus_multistream_surround_encoder_create(
  1. int Fs,
  2. int channels,
  3. int mapping_family,
  4. Pointer<Int32> streams,
  5. Pointer<Int32> coupled_streams,
  6. Pointer<Uint8> mapping,
  7. int application,
  8. Pointer<Int32> error,
)

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);
}