opus_decoder_destroy method

void opus_decoder_destroy(
  1. Pointer<OpusDecoder> st
)

Frees an OpusDecoder allocated by opus_decoder_create(). @param in st OpusDecoder*: State to be freed.

Implementation

void opus_decoder_destroy(
  ffi.Pointer<OpusDecoder> st,
) {
  _opus_decoder_destroy(st);
}