opus_custom_decoder_get_size method
Gets the size of an OpusCustomDecoder structure.
@param in mode OpusCustomMode *: Mode configuration
@param in channels int: Number of channels
@returns size
Implementation
int opus_custom_decoder_get_size(
  ffi.Pointer<OpusCustomMode> mode,
  int channels,
) {
  return _opus_custom_decoder_get_size(mode, channels);
}