src[srcOff:]
into dest[destOff:destOff+destLen]
and return the number of bytes read from src
. destLen
must be exactly the size of the decompressed data.
@param destLen the exact size of the original input
@return the number of bytes read to restore the original input
src[srcOff:srcLen]
into dest[destOff:destOff+maxDestLen]
and returns the number of decompressed bytes written into dest
.
@param srcLen the exact size of the compressed stream
@return the original input size
@throws LZ4Exception if maxDestLen is too small
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|