mirror of https://github.com/SixLabors/ImageSharp
35 changed files with 46 additions and 34 deletions
@ -1,7 +1,7 @@ |
|||||
// Copyright (c) Six Labors and contributors.
|
// Copyright (c) Six Labors and contributors.
|
||||
// Licensed under the Apache License, Version 2.0.
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
namespace SixLabors.ImageSharp.Formats.WebP |
namespace SixLabors.ImageSharp.Formats.WebP.Lossless |
||||
{ |
{ |
||||
/// <summary>
|
/// <summary>
|
||||
/// A small hash-addressed array to store recently used colors, to be able to recall them with shorter codes.
|
/// A small hash-addressed array to store recently used colors, to be able to recall them with shorter codes.
|
||||
@ -1,7 +1,7 @@ |
|||||
// Copyright (c) Six Labors and contributors.
|
// Copyright (c) Six Labors and contributors.
|
||||
// Licensed under the Apache License, Version 2.0.
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
namespace SixLabors.ImageSharp.Formats.WebP |
namespace SixLabors.ImageSharp.Formats.WebP.Lossless |
||||
{ |
{ |
||||
/// <summary>
|
/// <summary>
|
||||
/// Five Huffman codes are used at each meta code.
|
/// Five Huffman codes are used at each meta code.
|
||||
@ -1,7 +1,7 @@ |
|||||
// Copyright (c) Six Labors and contributors.
|
// Copyright (c) Six Labors and contributors.
|
||||
// Licensed under the Apache License, Version 2.0.
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
namespace SixLabors.ImageSharp.Formats.WebP |
namespace SixLabors.ImageSharp.Formats.WebP.Lossless |
||||
{ |
{ |
||||
/// <summary>
|
/// <summary>
|
||||
/// Enum for the different transform types. Transformations are reversible manipulations of the image data
|
/// Enum for the different transform types. Transformations are reversible manipulations of the image data
|
||||
@ -1,7 +1,7 @@ |
|||||
// Copyright (c) Six Labors and contributors.
|
// Copyright (c) Six Labors and contributors.
|
||||
// Licensed under the Apache License, Version 2.0.
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
namespace SixLabors.ImageSharp.Formats.WebP |
namespace SixLabors.ImageSharp.Formats.WebP.Lossy |
||||
{ |
{ |
||||
internal enum IntraPredictionMode |
internal enum IntraPredictionMode |
||||
{ |
{ |
||||
@ -1,7 +1,7 @@ |
|||||
// Copyright (c) Six Labors and contributors.
|
// Copyright (c) Six Labors and contributors.
|
||||
// Licensed under the Apache License, Version 2.0.
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
namespace SixLabors.ImageSharp.Formats.WebP |
namespace SixLabors.ImageSharp.Formats.WebP.Lossy |
||||
{ |
{ |
||||
/// <summary>
|
/// <summary>
|
||||
/// Enum for the different loop filters used. VP8 supports two types of loop filters.
|
/// Enum for the different loop filters used. VP8 supports two types of loop filters.
|
||||
@ -1,7 +1,7 @@ |
|||||
// Copyright (c) Six Labors and contributors.
|
// Copyright (c) Six Labors and contributors.
|
||||
// Licensed under the Apache License, Version 2.0.
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
namespace SixLabors.ImageSharp.Formats.WebP |
namespace SixLabors.ImageSharp.Formats.WebP.Lossy |
||||
{ |
{ |
||||
/// <summary>
|
/// <summary>
|
||||
/// All the probabilities associated to one band.
|
/// All the probabilities associated to one band.
|
||||
@ -1,7 +1,7 @@ |
|||||
// Copyright (c) Six Labors and contributors.
|
// Copyright (c) Six Labors and contributors.
|
||||
// Licensed under the Apache License, Version 2.0.
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
namespace SixLabors.ImageSharp.Formats.WebP |
namespace SixLabors.ImageSharp.Formats.WebP.Lossy |
||||
{ |
{ |
||||
internal class Vp8FilterHeader |
internal class Vp8FilterHeader |
||||
{ |
{ |
||||
@ -1,7 +1,7 @@ |
|||||
// Copyright (c) Six Labors and contributors.
|
// Copyright (c) Six Labors and contributors.
|
||||
// Licensed under the Apache License, Version 2.0.
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
namespace SixLabors.ImageSharp.Formats.WebP |
namespace SixLabors.ImageSharp.Formats.WebP.Lossy |
||||
{ |
{ |
||||
/// <summary>
|
/// <summary>
|
||||
/// Filter information.
|
/// Filter information.
|
||||
@ -1,7 +1,7 @@ |
|||||
// Copyright (c) Six Labors and contributors.
|
// Copyright (c) Six Labors and contributors.
|
||||
// Licensed under the Apache License, Version 2.0.
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
namespace SixLabors.ImageSharp.Formats.WebP |
namespace SixLabors.ImageSharp.Formats.WebP.Lossy |
||||
{ |
{ |
||||
/// <summary>
|
/// <summary>
|
||||
/// Vp8 frame header information.
|
/// Vp8 frame header information.
|
||||
@ -1,7 +1,7 @@ |
|||||
// Copyright (c) Six Labors and contributors.
|
// Copyright (c) Six Labors and contributors.
|
||||
// Licensed under the Apache License, Version 2.0.
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
namespace SixLabors.ImageSharp.Formats.WebP |
namespace SixLabors.ImageSharp.Formats.WebP.Lossy |
||||
{ |
{ |
||||
/// <summary>
|
/// <summary>
|
||||
/// Contextual macroblock information.
|
/// Contextual macroblock information.
|
||||
@ -1,7 +1,7 @@ |
|||||
// Copyright (c) Six Labors and contributors.
|
// Copyright (c) Six Labors and contributors.
|
||||
// Licensed under the Apache License, Version 2.0.
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
namespace SixLabors.ImageSharp.Formats.WebP |
namespace SixLabors.ImageSharp.Formats.WebP.Lossy |
||||
{ |
{ |
||||
/// <summary>
|
/// <summary>
|
||||
/// Data needed to reconstruct a macroblock.
|
/// Data needed to reconstruct a macroblock.
|
||||
@ -1,7 +1,7 @@ |
|||||
// Copyright (c) Six Labors and contributors.
|
// Copyright (c) Six Labors and contributors.
|
||||
// Licensed under the Apache License, Version 2.0.
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
namespace SixLabors.ImageSharp.Formats.WebP |
namespace SixLabors.ImageSharp.Formats.WebP.Lossy |
||||
{ |
{ |
||||
internal class Vp8PictureHeader |
internal class Vp8PictureHeader |
||||
{ |
{ |
||||
@ -1,7 +1,7 @@ |
|||||
// Copyright (c) Six Labors and contributors.
|
// Copyright (c) Six Labors and contributors.
|
||||
// Licensed under the Apache License, Version 2.0.
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
namespace SixLabors.ImageSharp.Formats.WebP |
namespace SixLabors.ImageSharp.Formats.WebP.Lossy |
||||
{ |
{ |
||||
/// <summary>
|
/// <summary>
|
||||
/// Data for all frame-persistent probabilities.
|
/// Data for all frame-persistent probabilities.
|
||||
@ -1,7 +1,7 @@ |
|||||
// Copyright (c) Six Labors and contributors.
|
// Copyright (c) Six Labors and contributors.
|
||||
// Licensed under the Apache License, Version 2.0.
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
namespace SixLabors.ImageSharp.Formats.WebP |
namespace SixLabors.ImageSharp.Formats.WebP.Lossy |
||||
{ |
{ |
||||
/// <summary>
|
/// <summary>
|
||||
/// Probabilities associated to one of the contexts.
|
/// Probabilities associated to one of the contexts.
|
||||
@ -1,7 +1,7 @@ |
|||||
// Copyright (c) Six Labors and contributors.
|
// Copyright (c) Six Labors and contributors.
|
||||
// Licensed under the Apache License, Version 2.0.
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
namespace SixLabors.ImageSharp.Formats.WebP |
namespace SixLabors.ImageSharp.Formats.WebP.Lossy |
||||
{ |
{ |
||||
internal class Vp8QuantMatrix |
internal class Vp8QuantMatrix |
||||
{ |
{ |
||||
@ -1,7 +1,7 @@ |
|||||
// Copyright (c) Six Labors and contributors.
|
// Copyright (c) Six Labors and contributors.
|
||||
// Licensed under the Apache License, Version 2.0.
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
namespace SixLabors.ImageSharp.Formats.WebP |
namespace SixLabors.ImageSharp.Formats.WebP.Lossy |
||||
{ |
{ |
||||
/// <summary>
|
/// <summary>
|
||||
/// Segment features.
|
/// Segment features.
|
||||
@ -1,7 +1,7 @@ |
|||||
// Copyright (c) Six Labors and contributors.
|
// Copyright (c) Six Labors and contributors.
|
||||
// Licensed under the Apache License, Version 2.0.
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
namespace SixLabors.ImageSharp.Formats.WebP |
namespace SixLabors.ImageSharp.Formats.WebP.Lossy |
||||
{ |
{ |
||||
internal class Vp8TopSamples |
internal class Vp8TopSamples |
||||
{ |
{ |
||||
Loading…
Reference in new issue