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
Can you add support of the lz4 legacy format, which is still used in linux kernel? Both compress/decompress are needed.
Test case:
cat file | lz4 -l -12 --favor-decSpeed > file.lz4
I want a java compressor to achieve this without the external lz4 command tool.
command
lz4 -t file.lz4 -vv
output shows
*** LZ4 command line interface 64-bits v1.9.3, by Yann Collet *** _POSIX_C_SOURCE defined: 200809L _POSIX_VERSION defined: 200809L PLATFORM_POSIX_VERSION defined: 200809L Detected : Legacy format file.lz4 : decoded 1048576 bytes Done in 0.00 sec
The "Legacy format" is what we need.
I want a java decompressor to achieve this without the external lz4(or lz4cat) command tool.
Will you consider supporting the legacy format?
Thanks
The text was updated successfully, but these errors were encountered:
Any comments on this topic?
Sorry, something went wrong.
No branches or pull requests
Can you add support of the lz4 legacy format, which is still used in linux kernel?
Both compress/decompress are needed.
Test case:
1. create the legacy lz4 file:
I want a java compressor to achieve this without the external lz4 command tool.
2. Testing the file
command
output shows
The "Legacy format" is what we need.
3. decompress etc.
I want a java decompressor to achieve this without the external lz4(or lz4cat) command tool.
Will you consider supporting the legacy format?
Thanks
The text was updated successfully, but these errors were encountered: