opus_custom_decoder_get_size method

int opus_custom_decoder_get_size(
  1. Pointer<OpusCustomMode> mode,
  2. int channels
)

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);
}