deflateextconst.h

来自「压缩软件源码」· C头文件 代码 · 共 26 行

H
26
字号
// DeflateExtConst.h

#ifndef __DEFLATE_EXTCONST_H
#define __DEFLATE_EXTCONST_H

#include "Common/Types.h"

namespace NCompress {
namespace NDeflate {

  // const UInt32 kDistTableSize = 30;
  const UInt32 kDistTableSize32 = 30;
  const UInt32 kDistTableSize64 = 32;

  const UInt32 kHistorySize32 = 0x8000;
  const UInt32 kHistorySize64 = 0x10000;
  const UInt32 kNumLenCombinations32 = 256;
  const UInt32 kNumLenCombinations64 = 255;
  // don't change kNumLenCombinations64. It must be less than 255.

  const UInt32 kNumHuffmanBits = 15;

}}

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?