File tree Expand file tree Collapse file tree 2 files changed +0
-9
lines changed
src/ImageSharp/Formats/Webp/Lossy Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Original file line number Diff line number Diff line change 11// Copyright (c) Six Labors.
22// Licensed under the Six Labors Split License.
33
4- using System . Text . Json . Serialization ;
5-
64namespace SixLabors . ImageSharp . Formats . Webp . Lossy ;
75
86/// <summary>
97/// All the probabilities associated to one band.
108/// </summary>
11- [ Serializable ]
129internal class Vp8BandProbas
1310{
1411 /// <summary>
Original file line number Diff line number Diff line change 77using System . Runtime . InteropServices ;
88using System . Runtime . Intrinsics ;
99using System . Runtime . Intrinsics . X86 ;
10- using System . Text . Json . Serialization ;
1110
1211namespace SixLabors . ImageSharp . Formats . Webp . Lossy ;
1312
1413/// <summary>
1514/// On-the-fly info about the current set of residuals.
1615/// </summary>
17- [ Serializable ]
1816internal class Vp8Residual
1917{
20- public Vp8Residual ( )
21- {
22- }
23-
2418 public int First { get ; set ; }
2519
2620 public int Last { get ; set ; }
You can’t perform that action at this time.
0 commit comments