aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/common/Makefile.am (follow)
AgeCommit message (Collapse)AuthorFilesLines
2008-01-22Added lzma_easy_* functions. These should make usingLasse Collin1-0/+5
liblzma as easy as using zlib, because the easy API don't require developers to know any fancy LZMA options. Note that Multi-Block Stream encoding is currently broken. The easy API should be OK, the bug(s) are elsewhere.
2008-01-19Revised the Delta filter implementation. The initializationLasse Collin1-2/+12
function is still shared between encoder and decoder, but the actual coding is in separate files for encoder and decoder. There are now separate functions for the actual delta calculation depending on if Delta is the last filter in the chain or not. If it is the last, the new code copies the data from input to output buffer and does the delta calculation at the same time. The old code first copied the data, then did the delta in the target buffer, which required reading through the data twice. Support for LZMA_SYNC_FLUSH was added to the Delta encoder. This doesn't change anything in the file format.
2008-01-15Added bsr.h.Lasse Collin1-0/+1
2007-12-09Imported to git.Lasse Collin1-0/+94