aboutsummaryrefslogtreecommitdiff
path: root/src/lzmadec (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2008-11-19Renamed lzma to xz and lzmadec to xzdec. We create symlinksLasse Collin2-521/+0
lzma, unlzma, and lzcat in "make install" for backwards compatibility with LZMA Utils 4.32.x; I'm not sure if this should be the default though.
2008-11-19Oh well, big messy commit again. Some highlights:Lasse Collin1-22/+14
- Updated to the latest, probably final file format version. - Command line tool reworked to not use threads anymore. Threading will probably go into liblzma anyway. - Memory usage limit is now about 30 % for uncompression and about 90 % for compression. - Progress indicator with --verbose - Simplified --help and full --long-help - Upgraded to the last LGPLv2.1+ getopt_long from gnulib. - Some bug fixes
2008-09-13Renamed constants:Lasse Collin1-1/+1
- LZMA_VLI_VALUE_MAX -> LZMA_VLI_MAX - LZMA_VLI_VALUE_UNKNOWN -> LZMA_VLI_UNKNOWN - LZMA_HEADER_ERRRO -> LZMA_OPTIONS_ERROR
2008-09-06Some API cleanupsLasse Collin1-4/+2
2008-08-28Sort of garbage collection commit. :-| Many things are stillLasse Collin1-97/+60
broken. API has changed a lot and it will still change a little more here and there. The command line tool doesn't have all the required changes to reflect the API changes, so it's easy to get "internal error" or trigger assertions.
2008-06-18Update the code to mostly match the new simpler file formatLasse Collin1-5/+3
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-06-11Improve command line integer parsing a little in lzma andLasse Collin1-13/+18
lzmadec to make them accept also KiB in addition Ki etc. Fix also memory usage information in lzmadec --help.
2008-04-28Fixed wrong spelling "limitter" to "limiter". This affectsLasse Collin1-6/+6
liblzma's API.
2008-01-18Set stdin and stdout to binary mode on Windows. This patch isLasse Collin1-0/+9
a forward port of b7b22fcb979a16d3a47c8001f058c9f7d4416068 from lzma-utils-legacy.git. I don't know if the new code base builds on Windows, but this is a start.
2008-01-16Added memory leak detection to lzmadec.c.Lasse Collin1-0/+3
2008-01-15Free the allocated memory in lzmadec if debugging isLasse Collin1-0/+7
enabled. This should make it possible to detect possible memory leaks with Valgrind.
2008-01-06With printf(), use PRIu64 with a cast to uint64_t insteadLasse Collin1-2/+4
of %zu, because some pre-C99 libc versions don't support %zu.
2007-12-11Get rid of no-NLS gnulib. I don't know how to get itLasse Collin1-1/+3
working with Automake. People who want smaller lzmadec should use --disable-nls on non-GNU systems.