ebiggers / libdeflate

Heavily optimized library for DEFLATE/zlib/gzip compression and decompression

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

how to change sliding window size at runtime?

sxstd001 opened this issue · comments

how to change sliding window size at runtime?

libdeflate's compressor always uses a sliding window size of 32 KiB. There's been very little demand for smaller sizes because 32 KiB is already small by modern standards. More modern compression formats typically use megabytes.

Note, the decompressor supports all DEFLATE compressed data, regardless of which sliding window size the compressor used.