diff --git a/src/ImageSharp/Formats/Jpg/Components/MutableSpan.cs b/src/ImageSharp/Formats/Jpg/Components/MutableSpan.cs
index c43e73614..77ee17fc2 100644
--- a/src/ImageSharp/Formats/Jpg/Components/MutableSpan.cs
+++ b/src/ImageSharp/Formats/Jpg/Components/MutableSpan.cs
@@ -14,7 +14,7 @@ namespace ImageSharp.Formats
///
/// https://github.com/dotnet/corefxlab/blob/master/src/System.Slices/System/Span.cs
///
- ///
+ /// The type of the data in the span
internal struct MutableSpan
{
///
diff --git a/src/ImageSharp/Formats/Jpg/Components/YCbCrImage.cs b/src/ImageSharp/Formats/Jpg/Components/YCbCrImage.cs
index 564da379b..603324bcc 100644
--- a/src/ImageSharp/Formats/Jpg/Components/YCbCrImage.cs
+++ b/src/ImageSharp/Formats/Jpg/Components/YCbCrImage.cs
@@ -44,16 +44,34 @@ namespace ImageSharp.Formats
///
public enum YCbCrSubsampleRatio
{
+ ///
+ /// YCbCrSubsampleRatio444
+ ///
YCbCrSubsampleRatio444,
+ ///
+ /// YCbCrSubsampleRatio422
+ ///
YCbCrSubsampleRatio422,
+ ///
+ /// YCbCrSubsampleRatio420
+ ///
YCbCrSubsampleRatio420,
+ ///
+ /// YCbCrSubsampleRatio440
+ ///
YCbCrSubsampleRatio440,
+ ///
+ /// YCbCrSubsampleRatio411
+ ///
YCbCrSubsampleRatio411,
+ ///
+ /// YCbCrSubsampleRatio410
+ ///
YCbCrSubsampleRatio410,
}
diff --git a/src/ImageSharp/Formats/Jpg/JpegDecoderCore.cs b/src/ImageSharp/Formats/Jpg/JpegDecoderCore.cs
index 1fe222530..fe606bbb4 100644
--- a/src/ImageSharp/Formats/Jpg/JpegDecoderCore.cs
+++ b/src/ImageSharp/Formats/Jpg/JpegDecoderCore.cs
@@ -224,7 +224,14 @@ namespace ImageSharp.Formats
///
internal enum ErrorCodes
{
+ ///
+ /// NoError
+ ///
NoError,
+
+ ///
+ /// MissingFF00
+ ///
MissingFF00
}