diff --git a/src/ImageSharp/Formats/Jpeg/Components/Encoder/YCbCrEncoder{TPixel}.cs b/src/ImageSharp/Formats/Jpeg/Components/Encoder/YCbCrEncoder{TPixel}.cs index 7412b4d91a..d5bf797bb2 100644 --- a/src/ImageSharp/Formats/Jpeg/Components/Encoder/YCbCrEncoder{TPixel}.cs +++ b/src/ImageSharp/Formats/Jpeg/Components/Encoder/YCbCrEncoder{TPixel}.cs @@ -142,7 +142,6 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components.Encoder /// The pixel format. /// The pixel accessor providing access to the image pixels. /// The token to monitor for cancellation. - /// The reference to the emit buffer. private void Encode444(Image pixels, CancellationToken cancellationToken) where TPixel : unmanaged, IPixel { @@ -210,7 +209,6 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components.Encoder /// The pixel format. /// The pixel accessor providing access to the image pixels. /// The token to monitor for cancellation. - /// The reference to the emit buffer. private void Encode420(Image pixels, CancellationToken cancellationToken) where TPixel : unmanaged, IPixel { @@ -291,7 +289,6 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components.Encoder /// The pixel format. /// The pixel accessor providing access to the image pixels. /// The token to monitor for cancellation. - /// The reference to the emit buffer. private void EncodeGrayscale(Image pixels, CancellationToken cancellationToken) where TPixel : unmanaged, IPixel { @@ -370,7 +367,6 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components.Encoder /// Temporal block 2 /// Quantization table /// The 8x8 Unzig block. - /// The reference to the emit buffer. /// The . private int WriteBlock( QuantIndex index, @@ -435,7 +431,6 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components.Encoder /// /// The packed bits. /// The number of bits - /// The reference to the emitBuffer. [MethodImpl(InliningOptions.ShortMethod)] private void Emit(uint bits, uint count) { @@ -481,7 +476,6 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components.Encoder /// /// The index of the Huffman encoder /// The value to encode. - /// The reference to the emit buffer. [MethodImpl(InliningOptions.ShortMethod)] private void EmitHuff(HuffIndex index, int value) { @@ -495,7 +489,6 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components.Encoder /// The index of the Huffman encoder /// The number of copies to encode. /// The value to encode. - /// The reference to the emit buffer. [MethodImpl(InliningOptions.ShortMethod)] private void EmitHuffRLE(HuffIndex index, int runLength, int value) {