opus_custom_mode_destroy method

void opus_custom_mode_destroy(
  1. Pointer<OpusCustomMode> mode
)

Destroys a mode struct. Only call this after all encoders and decoders using this mode are destroyed as well. @param in mode OpusCustomMode*: Mode to be freed.

Implementation

void opus_custom_mode_destroy(
  ffi.Pointer<OpusCustomMode> mode,
) {
  _opus_custom_mode_destroy(mode);
}