Show / Hide Table of Contents

Class DeflaterConstants

This class contains constants used for deflation.

Inheritance
System.Object
DeflaterConstants
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: ICSharpCode.SharpZipLib.Zip.Compression
Assembly: ICSharpCode.SharpZipLib.dll
Syntax
public static class DeflaterConstants

Fields

| Improve this Doc View Source

COMPR_FUNC

Internal compression engine constant

Declaration
public static int[] COMPR_FUNC
Field Value
Type Description
System.Int32[]
| Improve this Doc View Source

DEBUGGING

Set to true to enable debugging

Declaration
public const bool DEBUGGING = false
Field Value
Type Description
System.Boolean
| Improve this Doc View Source

DEFAULT_MEM_LEVEL

Sets internal buffer sizes for Huffman encoding

Declaration
public const int DEFAULT_MEM_LEVEL = 8
Field Value
Type Description
System.Int32
| Improve this Doc View Source

DEFLATE_FAST

Internal compression engine constant

Declaration
public const int DEFLATE_FAST = 1
Field Value
Type Description
System.Int32
| Improve this Doc View Source

DEFLATE_SLOW

Internal compression engine constant

Declaration
public const int DEFLATE_SLOW = 2
Field Value
Type Description
System.Int32
| Improve this Doc View Source

DEFLATE_STORED

Internal compression engine constant

Declaration
public const int DEFLATE_STORED = 0
Field Value
Type Description
System.Int32
| Improve this Doc View Source

DYN_TREES

Identifies dynamic tree in Zip file

Declaration
public const int DYN_TREES = 2
Field Value
Type Description
System.Int32
| Improve this Doc View Source

GOOD_LENGTH

Internal compression engine constant

Declaration
public static int[] GOOD_LENGTH
Field Value
Type Description
System.Int32[]
| Improve this Doc View Source

HASH_BITS

Internal compression engine constant

Declaration
public const int HASH_BITS = 15
Field Value
Type Description
System.Int32
| Improve this Doc View Source

HASH_MASK

Internal compression engine constant

Declaration
public const int HASH_MASK = 32767
Field Value
Type Description
System.Int32
| Improve this Doc View Source

HASH_SHIFT

Internal compression engine constant

Declaration
public const int HASH_SHIFT = 5
Field Value
Type Description
System.Int32
| Improve this Doc View Source

HASH_SIZE

Internal compression engine constant

Declaration
public const int HASH_SIZE = 32768
Field Value
Type Description
System.Int32
| Improve this Doc View Source

MAX_BLOCK_SIZE

Internal compression engine constant

Declaration
public static int MAX_BLOCK_SIZE
Field Value
Type Description
System.Int32
| Improve this Doc View Source

MAX_CHAIN

Internal compression engine constant

Declaration
public static int[] MAX_CHAIN
Field Value
Type Description
System.Int32[]
| Improve this Doc View Source

MAX_DIST

Internal compression engine constant

Declaration
public const int MAX_DIST = 32506
Field Value
Type Description
System.Int32
| Improve this Doc View Source

MAX_LAZY

Internal compression engine constant

Declaration
public static int[] MAX_LAZY
Field Value
Type Description
System.Int32[]
| Improve this Doc View Source

MAX_MATCH

Internal compression engine constant

Declaration
public const int MAX_MATCH = 258
Field Value
Type Description
System.Int32
| Improve this Doc View Source

MAX_WBITS

Internal compression engine constant

Declaration
public const int MAX_WBITS = 15
Field Value
Type Description
System.Int32
| Improve this Doc View Source

MIN_LOOKAHEAD

Internal compression engine constant

Declaration
public const int MIN_LOOKAHEAD = 262
Field Value
Type Description
System.Int32
| Improve this Doc View Source

MIN_MATCH

Internal compression engine constant

Declaration
public const int MIN_MATCH = 3
Field Value
Type Description
System.Int32
| Improve this Doc View Source

NICE_LENGTH

Internal compression engine constant

Declaration
public static int[] NICE_LENGTH
Field Value
Type Description
System.Int32[]
| Improve this Doc View Source

PENDING_BUF_SIZE

Internal compression engine constant

Declaration
public const int PENDING_BUF_SIZE = 65536
Field Value
Type Description
System.Int32
| Improve this Doc View Source

PRESET_DICT

Header flag indicating a preset dictionary for deflation

Declaration
public const int PRESET_DICT = 32
Field Value
Type Description
System.Int32
| Improve this Doc View Source

STATIC_TREES

Identifies static tree in Zip file

Declaration
public const int STATIC_TREES = 1
Field Value
Type Description
System.Int32
| Improve this Doc View Source

STORED_BLOCK

Written to Zip file to identify a stored block

Declaration
public const int STORED_BLOCK = 0
Field Value
Type Description
System.Int32
| Improve this Doc View Source

WMASK

Internal compression engine constant

Declaration
public const int WMASK = 32767
Field Value
Type Description
System.Int32
| Improve this Doc View Source

WSIZE

Internal compression engine constant

Declaration
public const int WSIZE = 32768
Field Value
Type Description
System.Int32
  • Improve this Doc
  • View Source
In This Article
Back to top Copyright © 2000-2022 SharpZipLib Contributors