opus_decoder_get_size method
Gets the size of an OpusDecoder
structure.
@param in
channels int: Number of channels.
This must be 1 or 2.
@returns The size in bytes.
Implementation
int opus_decoder_get_size(
int channels,
) {
return _opus_decoder_get_size(channels);
}