mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 05:35:24 +00:00
29 lines
628 B
C#
29 lines
628 B
C#
namespace BurnOutSharp.Compression.MSZIP
|
|
{
|
|
public class HuffmanNode
|
|
{
|
|
/// <summary>
|
|
/// Number of extra bits or operation
|
|
/// </summary>
|
|
public byte ExtraBits;
|
|
|
|
/// <summary>
|
|
/// Number of bits in this code or subcode
|
|
/// </summary>
|
|
public byte BitLength;
|
|
|
|
#region v
|
|
|
|
/// <summary>
|
|
/// Literal, length base, or distance base
|
|
/// </summary>
|
|
public ushort Base;
|
|
|
|
/// <summary>
|
|
/// Pointer to next level of table
|
|
/// </summary>
|
|
public HuffmanNode[] NextLevel;
|
|
|
|
#endregion
|
|
}
|
|
} |