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 1
1
// Copyright (c) Six Labors.
2
2
// Licensed under the Six Labors Split License.
3
3
4
- using System . Text . Json . Serialization ;
5
-
6
4
namespace SixLabors . ImageSharp . Formats . Webp . Lossy ;
7
5
8
6
/// <summary>
9
7
/// All the probabilities associated to one band.
10
8
/// </summary>
11
- [ Serializable ]
12
9
internal class Vp8BandProbas
13
10
{
14
11
/// <summary>
Original file line number Diff line number Diff line change 7
7
using System . Runtime . InteropServices ;
8
8
using System . Runtime . Intrinsics ;
9
9
using System . Runtime . Intrinsics . X86 ;
10
- using System . Text . Json . Serialization ;
11
10
12
11
namespace SixLabors . ImageSharp . Formats . Webp . Lossy ;
13
12
14
13
/// <summary>
15
14
/// On-the-fly info about the current set of residuals.
16
15
/// </summary>
17
- [ Serializable ]
18
16
internal class Vp8Residual
19
17
{
20
- public Vp8Residual ( )
21
- {
22
- }
23
-
24
18
public int First { get ; set ; }
25
19
26
20
public int Last { get ; set ; }
You can’t perform that action at this time.
0 commit comments