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.
25 lines
469 B
25 lines
469 B
// Copyright (c) Six Labors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
|
|
namespace SixLabors.ImageSharp.Formats.Webp
|
|
{
|
|
/// <summary>
|
|
/// These five modes are evaluated and their respective entropy is computed.
|
|
/// </summary>
|
|
internal enum EntropyIx : byte
|
|
{
|
|
Direct = 0,
|
|
|
|
Spatial = 1,
|
|
|
|
SubGreen = 2,
|
|
|
|
SpatialSubGreen = 3,
|
|
|
|
Palette = 4,
|
|
|
|
PaletteAndSpatial = 5,
|
|
|
|
NumEntropyIx = 6
|
|
}
|
|
}
|
|
|