Artifact 7ba044d39c6262d71117f57a6e564871fe4fc52d:
- File src/codecs/scz_compress/scz.hpp — part of check-in [7a7138773e] at 2013-06-14 17:40:08 on branch trunk — Updated LZ4 added z3lib added a new type of iters meant to reduce benchmarking overhead updated dox fixes related to time-based number of small iters cleanum (user: m size: 525) [more...]
#ifndef _SCZ_HPP_Jp07BDFISjuay96H #define _SCZ_HPP_Jp07BDFISjuay96H #include "abstractCodecs.hpp" #include "codecs.hpp" struct Scz : CodecWithIntModes { Scz(): CodecWithIntModes("scz", _SCZ_VERSION, compress, decompress, 64, 16777214, "16777214") {} static size_t compress (char * in, size_t isize, char * out, size_t osize, void * mode); static size_t decompress(char * in, size_t isize, char * out, size_t osize, void * mode); virtual void cleanup(); }; #endif // _SCZ_HPP_Jp07BDFISjuay96H