123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- namespace SharpCompress.Compressors.Rar.UnpackV1.Decode
- {
- internal static class PackDef
- {
-
-
- public const int MAXWINSIZE = 0x400000;
- public const int MAXWINMASK = MAXWINSIZE - 1;
- public const uint MAX_LZ_MATCH = 0x1001;
- public const uint MAX3_LZ_MATCH = 0x101;
- public const int LOW_DIST_REP_COUNT = 16;
- public const int NC = 299;
- public const int DC = 60;
- public const int LDC = 17;
- public const int RC = 28;
- public const int HUFF_TABLE_SIZE = NC + DC + RC + LDC;
- public const int BC = 20;
- public const uint NC30 = 299;
- public const uint DC30 = 60;
- public const uint LDC30 = 17;
- public const uint RC30 = 28;
- public const uint BC30 = 20;
- public const uint HUFF_TABLE_SIZE30 = NC30 + DC30 + RC30 + LDC30;
- public const int NC20 = 298;
- public const int DC20 = 48;
- public const int RC20 = 28;
- public const int BC20 = 19;
- public const int MC20 = 257;
-
- public const uint LARGEST_TABLE_SIZE = 306;
-
-
-
-
- }
- }
|