We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c8261a commit db04e41Copy full SHA for db04e41
src/ImageSharp/Formats/Jpeg/Components/Decoder/HuffmanScanDecoder.cs
@@ -18,11 +18,19 @@ internal class HuffmanScanDecoder
18
{
19
private readonly BufferedReadStream stream;
20
21
- // Frame related
+ /// <summary>
22
+ /// <see cref="JpegFrame"/> instance containing decoding-related information.
23
+ /// </summary>
24
private JpegFrame frame;
25
+
26
27
+ /// Shortcut for <see cref="frame"/>.Components.
28
29
private JpegComponent[] components;
30
- // The number of interleaved components.
31
32
+ /// Number of component in the current scan.
33
34
private int componentsCount;
35
36
/// <summary>
0 commit comments