|
|
|
@ -968,11 +968,6 @@ namespace ImageSharp.Formats |
|
|
|
/// </summary>
|
|
|
|
private class HuffmanLut |
|
|
|
{ |
|
|
|
/// <summary>
|
|
|
|
/// The collection of huffman values.
|
|
|
|
/// </summary>
|
|
|
|
public readonly uint[] Values; |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="HuffmanLut"/> class.
|
|
|
|
/// </summary>
|
|
|
|
@ -1007,6 +1002,11 @@ namespace ImageSharp.Formats |
|
|
|
code <<= 1; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the collection of huffman values.
|
|
|
|
/// </summary>
|
|
|
|
public uint[] Values { get; } |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|