decompressVoice method

EVoiceResult decompressVoice(
  1. Pointer<Void> pCompressed,
  2. int cbCompressed,
  3. Pointer<Void> pDestBuffer,
  4. int cbDestBufferSize,
  5. Pointer<UnsignedInt> nBytesWritten,
  6. int nDesiredSampleRate,
)

Implementation

EVoiceResult decompressVoice(
  Pointer<Void> pCompressed,
  int cbCompressed,
  Pointer<Void> pDestBuffer,
  int cbDestBufferSize,
  Pointer<UnsignedInt> nBytesWritten,
  int nDesiredSampleRate,
) =>
    EVoiceResult.fromValue(
      _decompressVoice.call(
        this,
        pCompressed,
        cbCompressed,
        pDestBuffer,
        cbDestBufferSize,
        nBytesWritten,
        nDesiredSampleRate,
      ),
    );