We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In com.jcraft.jzlib.JZlib:
// compression strategy static final public int Z_FILTERED=1; static final public int Z_HUFFMAN_ONLY=2; static final public int Z_DEFAULT_STRATEGY=0;
zlib defines more strategies:
Is it possible to add the missing ones?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In com.jcraft.jzlib.JZlib:
// compression strategy
static final public int Z_FILTERED=1;
static final public int Z_HUFFMAN_ONLY=2;
static final public int Z_DEFAULT_STRATEGY=0;
zlib defines more strategies:
define Z_FILTERED 1
define Z_HUFFMAN_ONLY 2
define Z_RLE 3
define Z_FIXED 4
define Z_DEFAULT_STRATEGY 0
Is it possible to add the missing ones?
The text was updated successfully, but these errors were encountered: