opus_multistream_decoder_destroy method

void opus_multistream_decoder_destroy(
  1. Pointer<OpusMSDecoder> st
)

Frees an OpusMSDecoder allocated by opus_multistream_decoder_create(). @param st OpusMSDecoder: Multistream decoder state to be freed.

Implementation

void opus_multistream_decoder_destroy(
  ffi.Pointer<OpusMSDecoder> st,
) {
  _opus_multistream_decoder_destroy(st);
}