diff --git a/src/ImageSharp/Formats/Jxl/Processing/JxlQuantizer.cs b/src/ImageSharp/Formats/Jxl/Processing/JxlQuantizer.cs index 423095286..01723479b 100644 --- a/src/ImageSharp/Formats/Jxl/Processing/JxlQuantizer.cs +++ b/src/ImageSharp/Formats/Jxl/Processing/JxlQuantizer.cs @@ -51,12 +51,12 @@ internal sealed class JxlQuantizer /// /// Represents the multipliers for the DC coefficients. /// - private readonly float[] mulDc = new float[4]; + private readonly InlineArray4 mulDc; /// /// Represents the inverse multipliers for the DC coefficients. /// - private readonly float[] inverseMulDc = new float[4]; + private readonly InlineArray4 inverseMulDc; /// /// Global scale @@ -86,7 +86,7 @@ internal sealed class JxlQuantizer /// /// The zero bias. /// - private readonly float[] zeroBias = new float[3]; + private readonly InlineArray3 zeroBias; /// /// The dequant matrices.