2018-10-07 03:37:09 +00:00
|
|
|
#pragma once
|
2014-09-09 16:36:29 +00:00
|
|
|
|
2019-08-26 11:06:18 +00:00
|
|
|
#include "LZ77/LZBase.hpp"
|
2014-09-09 16:36:29 +00:00
|
|
|
|
2018-12-08 05:18:17 +00:00
|
|
|
class LZType10 : public LZBase {
|
2014-09-09 16:36:29 +00:00
|
|
|
public:
|
2018-12-08 05:18:17 +00:00
|
|
|
explicit LZType10(atInt32 minimumOffset = 1, atInt32 SlidingWindow = 4096, atInt32 MinimumMatch = 3,
|
|
|
|
atInt32 BlockSize = 8);
|
2019-08-15 14:46:30 +00:00
|
|
|
atUint32 compress(const atUint8* src, atUint8** dstBuf, atUint32 srcLength) override;
|
|
|
|
atUint32 decompress(const atUint8* src, atUint8** dst, atUint32 srcLen) override;
|
2014-09-09 16:36:29 +00:00
|
|
|
};
|