ZSTD_d_windowLogMax constant

int const ZSTD_d_windowLogMax

Select a size limit (in power of 2) beyond which the streaming API will refuse to allocate memory buffer in order to protect the host from unreasonable memory requirements. This parameter is only useful in streaming mode, since no internal buffer is allocated in single-pass mode. By default, a decompression context accepts window sizes <= (1 << ZSTD_WINDOWLOG_LIMIT_DEFAULT). Special: value 0 means "use default maximum windowLog".

Implementation

static const int ZSTD_d_windowLogMax = 100;