-
-
Notifications
You must be signed in to change notification settings - Fork 851
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test case for coefficient round trip
- Loading branch information
Showing
12 changed files
with
303 additions
and
233 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 11 additions & 14 deletions
25
src/ImageSharp/Formats/Heif/Av1/Tiling/Av1BlockModeInfoEncoder.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,27 @@ | ||
// Copyright (c) Six Labors. | ||
// Copyright (c) Six Labors. | ||
// Licensed under the Six Labors Split License. | ||
|
||
using SixLabors.ImageSharp.Formats.Heif.Av1.Prediction; | ||
|
||
namespace SixLabors.ImageSharp.Formats.Heif.Av1.Tiling; | ||
|
||
internal partial class Av1TileWriter | ||
internal class Av1BlockModeInfoEncoder | ||
{ | ||
internal class Av1BlockModeInfoEncoder | ||
{ | ||
public Av1BlockSize BlockSize { get; } | ||
public Av1BlockSize BlockSize { get; } | ||
|
||
public Av1PredictionMode PredictionMode { get; } | ||
public Av1PredictionMode PredictionMode { get; } | ||
|
||
public Av1PartitionType PartitionType { get; } | ||
public Av1PartitionType PartitionType { get; } | ||
|
||
public Av1PredictionMode UvPredictionMode { get; } | ||
public Av1PredictionMode UvPredictionMode { get; } | ||
|
||
public bool Skip { get; } = true; | ||
public bool Skip { get; } = true; | ||
|
||
public bool SkipMode { get; } = true; | ||
public bool SkipMode { get; } = true; | ||
|
||
public bool UseIntraBlockCopy { get; } = true; | ||
public bool UseIntraBlockCopy { get; } = true; | ||
|
||
public int SegmentId { get; } | ||
public int SegmentId { get; } | ||
|
||
public int TransformDepth { get; internal set; } | ||
} | ||
public int TransformDepth { get; internal set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 2 additions & 5 deletions
7
src/ImageSharp/Formats/Heif/Av1/Tiling/Av1PaletteLumaModeInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
// Copyright (c) Six Labors. | ||
// Copyright (c) Six Labors. | ||
// Licensed under the Six Labors Split License. | ||
|
||
namespace SixLabors.ImageSharp.Formats.Heif.Av1.Tiling; | ||
|
||
internal partial class Av1TileWriter | ||
internal class Av1PaletteLumaModeInfo | ||
{ | ||
internal class Av1PaletteLumaModeInfo | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.