mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-15 22:11:39 -06:00
3.13
This commit is contained in:
31
7zip/Archive/Cab/LZXExtConst.h
Executable file
31
7zip/Archive/Cab/LZXExtConst.h
Executable file
@@ -0,0 +1,31 @@
|
||||
// Archive/Cab/LZXExtConst.h
|
||||
|
||||
#ifndef __ARCHIVE_CAB_LZXEXTCONST_H
|
||||
#define __ARCHIVE_CAB_LZXEXTCONST_H
|
||||
|
||||
namespace NArchive {
|
||||
namespace NCab {
|
||||
namespace NLZX {
|
||||
|
||||
const UINT32 kNumRepDistances = 3;
|
||||
|
||||
const UINT32 kNumLenSlots = 8;
|
||||
const UINT32 kMatchMinLen = 2;
|
||||
const UINT32 kNumLenSymbols = 249;
|
||||
const UINT32 kMatchMaxLen = kMatchMinLen + (kNumLenSlots - 1) + kNumLenSymbols - 1;
|
||||
|
||||
const BYTE kNumAlignBits = 3;
|
||||
const UINT32 kAlignTableSize = 1 << kNumAlignBits;
|
||||
|
||||
const UINT32 kNumHuffmanBits = 16;
|
||||
|
||||
const int kNumPosSlotSymbols = 50;
|
||||
const int kNumPosSlotLenSlotSymbols = kNumPosSlotSymbols * kNumLenSlots;
|
||||
|
||||
const int kMaxTableSize = 256 + kNumPosSlotLenSlotSymbols;
|
||||
|
||||
|
||||
|
||||
}}}
|
||||
|
||||
#endif;
|
||||
Reference in New Issue
Block a user