Browse Source

Fixed single line comment rule violation by inserting a blank line

pull/2122/head
Günther Foidl 4 years ago
parent
commit
482ef61b5e
  1. 1
      src/ImageSharp/Formats/Webp/Lossy/QuantEnc.cs
  2. 1
      src/ImageSharp/Formats/Webp/Lossy/Vp8Encoding.cs

1
src/ImageSharp/Formats/Webp/Lossy/QuantEnc.cs

@ -557,6 +557,7 @@ namespace SixLabors.ImageSharp.Formats.Webp.Lossy
// if (coeff > 2047) coeff = 2047
out0 = Avx2.Min(out0, Vector256.Create((short)MaxLevel));
// Put the sign back.
out0 = Avx2.Sign(out0, input0);

1
src/ImageSharp/Formats/Webp/Lossy/Vp8Encoding.cs

@ -553,6 +553,7 @@ namespace SixLabors.ImageSharp.Formats.Webp.Lossy
// [ (a0 + a1) << 3, ... ]
Vector128<int> tmp0 = Sse2.MultiplyAddAdjacent(a01, Vector128.Create(8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8, 0).AsInt16()); // K88p
// [ (a0 - a1) << 3, ... ]
Vector128<int> tmp2 = Sse2.MultiplyAddAdjacent(a01, Vector128.Create(8, 0, 248, 255, 8, 0, 248, 255, 8, 0, 248, 255, 8, 0, 248, 255).AsInt16()); // K88m
Vector128<int> tmp11 = Sse2.MultiplyAddAdjacent(a32, Vector128.Create(232, 20, 169, 8, 232, 20, 169, 8, 232, 20, 169, 8, 232, 20, 169, 8).AsInt16()); // K5352_2217p

Loading…
Cancel
Save