aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/common/Makefile.am (follow)
AgeCommit message (Collapse)AuthorFilesLines
2008-06-18Update the code to mostly match the new simpler file formatLasse Collin1-21/+10
specification. Simplify things by removing most of the support for known uncompressed size in most places. There are some miscellaneous changes here and there too. The API of liblzma has got many changes and still some more will be done soon. While most of the code has been updated, some things are not fixed (the command line tool will choke with invalid filter chain, if nothing else). Subblock filter is somewhat broken for now. It will be updated once the encoded format of the Subblock filter has been decided.
2008-04-28Fixed wrong spelling "limitter" to "limiter". This affectsLasse Collin1-1/+1
liblzma's API.
2008-04-25Removed src/liblzma/common/sysdefs.h symlink, which wasLasse Collin1-1/+0
annoying, because "make dist" put two copies of sysdefs.h into the tarball instead of the symlink.
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