Browse Source

Fix namespace in some places from SixLabors.ImageSharp.Formats.WebP to SixLabors.ImageSharp.Formats.Webp

pull/1552/head
Brian Popow 5 years ago
parent
commit
b9440d18bc
  1. 2
      src/ImageSharp/Formats/WebP/Lossless/NearLosslessEnc.cs
  2. 1
      src/ImageSharp/Formats/WebP/Lossless/Vp8LEncoder.cs
  3. 5
      src/ImageSharp/Formats/WebP/Lossy/Vp8Costs.cs
  4. 1
      src/ImageSharp/Formats/WebP/Lossy/Vp8EncIterator.cs
  5. 1
      src/ImageSharp/Formats/WebP/Lossy/Vp8EncProba.cs
  6. 3
      src/ImageSharp/Formats/WebP/Lossy/Vp8Histogram.cs
  7. 1
      src/ImageSharp/Formats/WebP/Lossy/Vp8Residual.cs
  8. 2
      tests/ImageSharp.Tests/Formats/WebP/Vp8HistogramTests.cs

2
src/ImageSharp/Formats/WebP/Lossless/NearLosslessEnc.cs

@ -4,7 +4,7 @@
using System;
using SixLabors.ImageSharp.Formats.Webp.Lossless;
namespace SixLabors.ImageSharp.Formats.WebP.Lossless
namespace SixLabors.ImageSharp.Formats.Webp.Lossless
{
/// <summary>
/// Near-lossless image preprocessing adjusts pixel values to help compressibility with a guarantee

1
src/ImageSharp/Formats/WebP/Lossless/Vp8LEncoder.cs

@ -9,7 +9,6 @@ using System.Linq;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using SixLabors.ImageSharp.Formats.Webp.BitWriter;
using SixLabors.ImageSharp.Formats.WebP.Lossless;
using SixLabors.ImageSharp.Memory;
using SixLabors.ImageSharp.PixelFormats;

5
src/ImageSharp/Formats/WebP/Lossy/Vp8Costs.cs

@ -1,10 +1,7 @@
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
using SixLabors.ImageSharp.Formats.Webp;
using SixLabors.ImageSharp.Formats.Webp.Lossy;
namespace SixLabors.ImageSharp.Formats.WebP.Lossy
namespace SixLabors.ImageSharp.Formats.Webp.Lossy
{
internal class Vp8Costs
{

1
src/ImageSharp/Formats/WebP/Lossy/Vp8EncIterator.cs

@ -2,7 +2,6 @@
// Licensed under the Apache License, Version 2.0.
using System;
using SixLabors.ImageSharp.Formats.WebP.Lossy;
namespace SixLabors.ImageSharp.Formats.Webp.Lossy
{

1
src/ImageSharp/Formats/WebP/Lossy/Vp8EncProba.cs

@ -2,7 +2,6 @@
// Licensed under the Apache License, Version 2.0.
using System;
using SixLabors.ImageSharp.Formats.WebP.Lossy;
namespace SixLabors.ImageSharp.Formats.Webp.Lossy
{

3
src/ImageSharp/Formats/WebP/Lossy/Vp8Histogram.cs

@ -3,9 +3,8 @@
using System;
using System.Runtime.CompilerServices;
using SixLabors.ImageSharp.Formats.Webp;
namespace SixLabors.ImageSharp.Formats.WebP.Lossy
namespace SixLabors.ImageSharp.Formats.Webp.Lossy
{
internal class Vp8Histogram
{

1
src/ImageSharp/Formats/WebP/Lossy/Vp8Residual.cs

@ -2,7 +2,6 @@
// Licensed under the Apache License, Version 2.0.
using System;
using SixLabors.ImageSharp.Formats.WebP.Lossy;
namespace SixLabors.ImageSharp.Formats.Webp.Lossy
{

2
tests/ImageSharp.Tests/Formats/WebP/Vp8HistogramTests.cs

@ -2,7 +2,7 @@
// Licensed under the Apache License, Version 2.0.
using System.Collections.Generic;
using SixLabors.ImageSharp.Formats.WebP.Lossy;
using SixLabors.ImageSharp.Formats.Webp.Lossy;
using Xunit;
namespace SixLabors.ImageSharp.Tests.Formats.Webp

Loading…
Cancel
Save