From 9575a241efe73803242f3ae389a80fe9eed6070e Mon Sep 17 00:00:00 2001 From: Dmitry Pentin Date: Tue, 12 Apr 2022 17:23:35 +0300 Subject: [PATCH] Fix compilation error --- .../Formats/Jpeg/Components/Decoder/HuffmanScanDecoder.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ImageSharp/Formats/Jpeg/Components/Decoder/HuffmanScanDecoder.cs b/src/ImageSharp/Formats/Jpeg/Components/Decoder/HuffmanScanDecoder.cs index f1335eda9e..1c698fa3c3 100644 --- a/src/ImageSharp/Formats/Jpeg/Components/Decoder/HuffmanScanDecoder.cs +++ b/src/ImageSharp/Formats/Jpeg/Components/Decoder/HuffmanScanDecoder.cs @@ -113,6 +113,8 @@ namespace SixLabors.ImageSharp.Formats.Jpeg.Components.Decoder /// Decodes the entropy coded data. /// /// Component count in the current scan. + /// Frame containing decoding data about the frame. + /// Decoding data about the jpeg. public void ParseEntropyCodedData(int scanComponentCount, JpegFrame frame, IRawJpegData jpegData) { this.cancellationToken.ThrowIfCancellationRequested();