Files
BinaryObjectScanner/BurnOutSharp.Models/Compression/MSZIP/DynamicHuffmanCompressedBlockHeader.cs

19 lines
572 B
C#
Raw Normal View History

2022-12-28 09:47:25 -08:00
namespace BurnOutSharp.Models.Compression.MSZIP
2022-12-15 23:51:12 -08:00
{
/// <summary>
/// Compression with dynamic Huffman codes (BTYPE=10)
/// </summary>
/// <see href="https://www.rfc-editor.org/rfc/rfc1951"/>
2023-01-02 15:01:24 -08:00
public class DynamicHuffmanCompressedBlockHeader
2022-12-15 23:51:12 -08:00
{
2023-01-02 15:01:24 -08:00
/// <summary>
/// Huffman code lengths for the literal / length alphabet
/// </summary>
public int[] LiteralLengths;
2022-12-15 23:51:12 -08:00
2023-01-02 15:01:24 -08:00
/// <summary>
/// Huffman distance codes for the literal / length alphabet
/// </summary>
public int[] DistanceCodes;
2022-12-15 23:51:12 -08:00
}
}