opus_multistream_encoder_destroy method

void opus_multistream_encoder_destroy(
  1. Pointer<OpusMSEncoder> st
)

Frees an OpusMSEncoder allocated by opus_multistream_encoder_create(). @param st OpusMSEncoder*: Multistream encoder state to be freed.

Implementation

void opus_multistream_encoder_destroy(
  ffi.Pointer<OpusMSEncoder> st,
) {
  _opus_multistream_encoder_destroy(st);
}