aboutsummaryrefslogtreecommitdiff
path: root/src/xz/coder.h (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-02-03xz: Add missing comment for coder_set_compression_settings()Jia Tan1-1/+2
2022-11-09xz: Remove the commented-out FORMAT_GZIP, gzip, .gz, and .tgz.Lasse Collin1-1/+0
2022-11-09xz: Add .lz (lzip) decompression support.Lasse Collin1-0/+3
If configured with --disable-lzip-decoder then --long-help will still list `lzip' in --format but I left it like that since due to translations it would be messy to have two help strings. Features are disabled only in special situations so wrong help in such a situation shouldn't matter much. Thanks to Michał Górny for the original patch.
2012-07-03xz: Add incomplete support for --block-list.Lasse Collin1-0/+4
It's broken with threads and when also --block-size is used.
2011-04-08xz: Change size_t to uint32_t in a few places.Lasse Collin1-1/+1
2011-04-05xz: Call lzma_end(&strm) before exiting if debugging is enabled.Lasse Collin1-0/+5
2011-03-18xz: Add --block-size=SIZE.Lasse Collin1-0/+3
This uses LZMA_FULL_FLUSH every SIZE bytes of input. Man page wasn't updated yet.
2011-03-18xz: Add --single-stream.Lasse Collin1-0/+3
This can be useful when there is garbage after the compressed stream (.xz, .lzma, or raw stream). Man page wasn't updated yet.
2010-06-15Add --no-adjust.Lasse Collin1-0/+4
2009-06-26Updated comments to match renamed files.Lasse Collin1-1/+1
2009-06-26Rename process.[hc] to coder.[hc] and io.[hc] to file_io.[hc]Lasse Collin1-0/+57
to avoid problems on systems with system headers with those names.