ZSTD_dParameter class abstract

The advanced API pushes parameters one by one into an existing DCtx context. Parameters are sticky, and remain valid for all following frames using the same DCtx context. It's possible to reset parameters to default values using ZSTD_DCtx_reset(). Note : This API is compatible with existing ZSTD_decompressDCtx() and ZSTD_decompressStream(). Therefore, no new decompression function is necessary.

Constructors

ZSTD_dParameter()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

ZSTD_d_experimentalParam1 → const int
note : additional experimental parameters are also available within the experimental section of the API. At the time of this writing, they include : ZSTD_d_format ZSTD_d_stableOutBuffer ZSTD_d_forceIgnoreChecksum ZSTD_d_refMultipleDDicts ZSTD_d_disableHuffmanAssembly ZSTD_d_maxBlockSize Because they are not stable, it's necessary to define ZSTD_STATIC_LINKING_ONLY to access them. note : never ever use experimentalParam? names directly
ZSTD_d_experimentalParam2 → const int
ZSTD_d_experimentalParam3 → const int
ZSTD_d_experimentalParam4 → const int
ZSTD_d_experimentalParam5 → const int
ZSTD_d_experimentalParam6 → const int
ZSTD_d_windowLogMax → const int
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".