Browse Source

Fixing Values inside HuffmanLut.

pull/49/head
Olivia 10 years ago
parent
commit
467f3f3407
  1. 10
      src/ImageSharp/Formats/Jpg/JpegEncoderCore.cs

10
src/ImageSharp/Formats/Jpg/JpegEncoderCore.cs

@ -968,11 +968,6 @@ namespace ImageSharp.Formats
/// </summary>
private class HuffmanLut
{
/// <summary>
/// The collection of huffman values.
/// </summary>
public readonly uint[] Values;
/// <summary>
/// Initializes a new instance of the <see cref="HuffmanLut"/> class.
/// </summary>
@ -1007,6 +1002,11 @@ namespace ImageSharp.Formats
code <<= 1;
}
}
/// <summary>
/// Gets the collection of huffman values.
/// </summary>
public uint[] Values { get; }
}
}
}

Loading…
Cancel
Save