mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
750 B
32 lines
750 B
namespace ImageSharp.Formats.Jpg.Components
|
|
{
|
|
/// <summary>
|
|
/// Enumerates the Huffman tables
|
|
/// </summary>
|
|
internal enum HuffIndex
|
|
{
|
|
/// <summary>
|
|
/// The DC luminance huffman table index
|
|
/// </summary>
|
|
LuminanceDC = 0,
|
|
|
|
// ReSharper disable UnusedMember.Local
|
|
|
|
/// <summary>
|
|
/// The AC luminance huffman table index
|
|
/// </summary>
|
|
LuminanceAC = 1,
|
|
|
|
/// <summary>
|
|
/// The DC chrominance huffman table index
|
|
/// </summary>
|
|
ChrominanceDC = 2,
|
|
|
|
/// <summary>
|
|
/// The AC chrominance huffman table index
|
|
/// </summary>
|
|
ChrominanceAC = 3,
|
|
|
|
// ReSharper restore UnusedMember.Local
|
|
}
|
|
}
|