Skip to content

Commit db04e41

Browse files
author
Dmitry Pentin
committed
Added comments to major properties
1 parent 7c8261a commit db04e41

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

src/ImageSharp/Formats/Jpeg/Components/Decoder/HuffmanScanDecoder.cs

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,19 @@ internal class HuffmanScanDecoder
1818
{
1919
private readonly BufferedReadStream stream;
2020

21-
// Frame related
21+
/// <summary>
22+
/// <see cref="JpegFrame"/> instance containing decoding-related information.
23+
/// </summary>
2224
private JpegFrame frame;
25+
26+
/// <summary>
27+
/// Shortcut for <see cref="frame"/>.Components.
28+
/// </summary>
2329
private JpegComponent[] components;
2430

25-
// The number of interleaved components.
31+
/// <summary>
32+
/// Number of component in the current scan.
33+
/// </summary>
2634
private int componentsCount;
2735

2836
/// <summary>

0 commit comments

Comments
 (0)