aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/compression/comp_util.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Ensure all files have copyright and license info.lloyd2015-01-101-1/+1
| | | | | 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-091-6/+10
| | | | | | | | 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).
* Convert compression filters to in-place transforms and refactorlloyd2014-11-181-0/+34
to minimize the amount of logic needed in the files specific to each library.