Browse Source

Move AC strategy & Coefficients stuff into Processing

pull/3153/head
winscripter 2 months ago
parent
commit
289fecdb99
  1. 2
      src/ImageSharp/Formats/Jxl/Processing/JxlAcContext.cs
  2. 2
      src/ImageSharp/Formats/Jxl/Processing/JxlAcStrategy.cs
  3. 2
      src/ImageSharp/Formats/Jxl/Processing/JxlAcStrategyImage.cs
  4. 2
      src/ImageSharp/Formats/Jxl/Processing/JxlAcStrategyRow.cs
  5. 2
      src/ImageSharp/Formats/Jxl/Processing/JxlAcStrategyType.cs
  6. 2
      src/ImageSharp/Formats/Jxl/Processing/JxlBlockContextMap.cs
  7. 2
      src/ImageSharp/Formats/Jxl/Processing/JxlForwardCoefficientOrder.cs

2
src/ImageSharp/Formats/Jxl/Ac/JxlAcContext.cs → src/ImageSharp/Formats/Jxl/Processing/JxlAcContext.cs

@ -6,7 +6,7 @@ using System.Runtime.CompilerServices;
#pragma warning disable SA1405 // Debug.Assert should provide message text #pragma warning disable SA1405 // Debug.Assert should provide message text
namespace SixLabors.ImageSharp.Formats.Jxl.Ac; namespace SixLabors.ImageSharp.Formats.Jxl.Processing;
/// <summary> /// <summary>
/// AC context /// AC context

2
src/ImageSharp/Formats/Jxl/Ac/JxlAcStrategy.cs → src/ImageSharp/Formats/Jxl/Processing/JxlAcStrategy.cs

@ -8,7 +8,7 @@ using static SixLabors.ImageSharp.Formats.Jxl.JxlFrameDimensions;
#pragma warning disable SA1405 // Debug.Assert should provide message text #pragma warning disable SA1405 // Debug.Assert should provide message text
namespace SixLabors.ImageSharp.Formats.Jxl.Ac; namespace SixLabors.ImageSharp.Formats.Jxl.Processing;
[StructLayout(LayoutKind.Sequential, Pack = 8)] [StructLayout(LayoutKind.Sequential, Pack = 8)]
internal struct JxlAcStrategy internal struct JxlAcStrategy

2
src/ImageSharp/Formats/Jxl/Ac/JxlAcStrategyImage.cs → src/ImageSharp/Formats/Jxl/Processing/JxlAcStrategyImage.cs

@ -4,7 +4,7 @@
using System.Diagnostics; using System.Diagnostics;
using SixLabors.ImageSharp.Formats.Jxl.Memory.ImageTypes; using SixLabors.ImageSharp.Formats.Jxl.Memory.ImageTypes;
namespace SixLabors.ImageSharp.Formats.Jxl.Ac; namespace SixLabors.ImageSharp.Formats.Jxl.Processing;
internal sealed class JxlAcStrategyImage : IDisposable internal sealed class JxlAcStrategyImage : IDisposable
{ {

2
src/ImageSharp/Formats/Jxl/Ac/JxlAcStrategyRow.cs → src/ImageSharp/Formats/Jxl/Processing/JxlAcStrategyRow.cs

@ -5,7 +5,7 @@ using System.Diagnostics;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace SixLabors.ImageSharp.Formats.Jxl.Ac; namespace SixLabors.ImageSharp.Formats.Jxl.Processing;
internal sealed class JxlAcStrategyRow internal sealed class JxlAcStrategyRow
{ {

2
src/ImageSharp/Formats/Jxl/Ac/JxlAcStrategyType.cs → src/ImageSharp/Formats/Jxl/Processing/JxlAcStrategyType.cs

@ -1,7 +1,7 @@
// Copyright (c) Six Labors. // Copyright (c) Six Labors.
// Licensed under the Six Labors Split License. // Licensed under the Six Labors Split License.
namespace SixLabors.ImageSharp.Formats.Jxl.Ac; namespace SixLabors.ImageSharp.Formats.Jxl.Processing;
internal enum JxlAcStrategyType : ushort internal enum JxlAcStrategyType : ushort
{ {

2
src/ImageSharp/Formats/Jxl/Ac/JxlBlockContextMap.cs → src/ImageSharp/Formats/Jxl/Processing/JxlBlockContextMap.cs

@ -4,7 +4,7 @@
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
using SixLabors.ImageSharp.Formats.Jxl.Coefficients; using SixLabors.ImageSharp.Formats.Jxl.Coefficients;
namespace SixLabors.ImageSharp.Formats.Jxl.Ac; namespace SixLabors.ImageSharp.Formats.Jxl.Processing;
internal sealed class JxlBlockContextMap internal sealed class JxlBlockContextMap
{ {

2
src/ImageSharp/Formats/Jxl/Coefficients/JxlForwardCoefficientOrder.cs → src/ImageSharp/Formats/Jxl/Processing/JxlForwardCoefficientOrder.cs

@ -3,7 +3,7 @@
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
namespace SixLabors.ImageSharp.Formats.Jxl.Coefficients; namespace SixLabors.ImageSharp.Formats.Jxl.Processing;
internal static class JxlForwardCoefficientOrder internal static class JxlForwardCoefficientOrder
{ {
Loading…
Cancel
Save