Navigation
API > API/Runtime > API/Runtime/Core
Description
LZ4decompress*usingDict() : These decoding functions work the same as a combination of LZ4_setStreamDecode() followed by LZ4_decompress*_continue() They are stand-alone, and don't need an LZ4_streamDecode_t structure. Dictionary is presumed stable : it must remain accessible and unmodified during decompression. Performance tip : Decompression speed can be substantially increased when dst == dictStart + dictSize.
| Name | LZ4_decompress_safe_usingDict |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Compression/lz4.h |
| Include Path | #include "Compression/lz4.h" |
LZ4int LZ4_decompress_safe_usingDict
(
const char * src,
char * dst,
int srcSize,
int dstCapacity,
const char * dictStart,
int dictSize
)