aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/compression/zlib
Commit message (Collapse)AuthorAgeFilesLines
* Ensure all files have copyright and license info.lloyd2015-01-102-2/+2
| | | | | Update license header line to specify the terms and refer to the file, neither of which it included before.
* Figure out which decompressor to use based on the input file extension.lloyd2014-12-092-20/+49
| | | | | | | | Rename Bzip to Bzip2, and split Zlib and Deflate compressors into two completely distinct types rather than using a bool flag to the Zlib constructor. Ignore null pointers to our free implementation (LZMA does this).
* Nullptr cleanuplloyd2014-12-061-1/+1
|
* Add gzip compression transform and compress command line prog.lloyd2014-11-192-8/+106
|
* Convert compression filters to in-place transforms and refactorlloyd2014-11-183-0/+174
to minimize the amount of logic needed in the files specific to each library.