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.
14 lines
389 B
14 lines
389 B
// Copyright (c) Six Labors.
|
|
// Licensed under the Six Labors Split License.
|
|
|
|
namespace SixLabors.ImageSharp.Formats.Webp.Lossy;
|
|
|
|
internal class Vp8StatsArray
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="Vp8StatsArray"/> class.
|
|
/// </summary>
|
|
public Vp8StatsArray() => this.Stats = new uint[WebpConstants.NumProbas];
|
|
|
|
public uint[] Stats { get; }
|
|
}
|
|
|