// // Copyright (c) James Jackson-South and contributors. // Licensed under the Apache License, Version 2.0. // namespace ImageSharp.Formats.Jpg { /// /// Enumerates the Huffman tables /// internal enum HuffIndex { /// /// The DC luminance huffman table index /// LuminanceDC = 0, // ReSharper disable UnusedMember.Local /// /// The AC luminance huffman table index /// LuminanceAC = 1, /// /// The DC chrominance huffman table index /// ChrominanceDC = 2, /// /// The AC chrominance huffman table index /// ChrominanceAC = 3, // ReSharper restore UnusedMember.Local } }