mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
3.2 KiB
85 lines
3.2 KiB
// Copyright (c) Six Labors.
|
|
// Licensed under the Six Labors Split License.
|
|
|
|
using SixLabors.ImageSharp.Formats.Heif.Av1;
|
|
using SixLabors.ImageSharp.Formats.Heif.Av1.Motion;
|
|
using SixLabors.ImageSharp.Formats.Heif.Av1.Tiling;
|
|
|
|
namespace SixLabors.ImageSharp.Tests.Formats.Heif.Av1;
|
|
|
|
/// <summary>
|
|
/// Verifies AV1 global-motion-vector derivation against the fixed-point rules used by the reference decoder.
|
|
/// </summary>
|
|
[Trait("Format", "Avif")]
|
|
public class Av1GlobalMotionParametersTests
|
|
{
|
|
/// <summary>
|
|
/// Verifies that an identity model produces no displacement at every block position.
|
|
/// </summary>
|
|
[Fact]
|
|
public void IdentityModelProducesZeroMotionVector()
|
|
{
|
|
Av1GlobalMotionParameters parameters = Av1GlobalMotionParameters.Identity;
|
|
|
|
Av1MotionVector actual = parameters.GetMotionVector(
|
|
allowHighPrecisionMotionVector: true,
|
|
Av1BlockSize.Block128x128,
|
|
new Point(31, 17),
|
|
forceIntegerMotionVector: false);
|
|
|
|
Assert.Equal(default, actual);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Verifies the published AV1 translation-component ordering and optional integer precision reduction.
|
|
/// </summary>
|
|
[Theory]
|
|
[InlineData(false, 19, -21)]
|
|
[InlineData(true, 16, -24)]
|
|
public void TranslationModelMatchesNormativeComponentOrdering(bool forceIntegerMotionVector, int expectedRow, int expectedColumn)
|
|
{
|
|
Av1GlobalMotionParameters parameters = Av1GlobalMotionParameters.Identity;
|
|
parameters.Type = Av1GlobalMotionType.Translation;
|
|
|
|
// Translation parameters retain sixteen fractional bits; the derived vector retains three.
|
|
parameters[0] = 19 << 13;
|
|
parameters[1] = -21 << 13;
|
|
|
|
Av1MotionVector actual = parameters.GetMotionVector(
|
|
allowHighPrecisionMotionVector: true,
|
|
Av1BlockSize.Block16x16,
|
|
new Point(4, 7),
|
|
forceIntegerMotionVector);
|
|
|
|
Assert.Equal(new Av1MotionVector(expectedRow, expectedColumn), actual);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Verifies affine evaluation at the AV1 block center for high- and low-precision vector output.
|
|
/// </summary>
|
|
[Theory]
|
|
[InlineData(true, 1, 3)]
|
|
[InlineData(false, 0, 2)]
|
|
public void AffineModelEvaluatesBlockCenter(bool allowHighPrecisionMotionVector, int expectedRow, int expectedColumn)
|
|
{
|
|
Av1GlobalMotionParameters parameters = Av1GlobalMotionParameters.Identity;
|
|
parameters.Type = Av1GlobalMotionType.Affine;
|
|
|
|
// The 8x8 block at mode-info position (2, 3) has center (11, 15). These deltas produce horizontal and
|
|
// vertical fixed-point offsets that exercise signed rounding at the selected output precision.
|
|
parameters[0] = 2048;
|
|
parameters[1] = -1024;
|
|
parameters[2] = Av1GlobalMotionParameters.ModelScale + 1024;
|
|
parameters[3] = 512;
|
|
parameters[4] = -256;
|
|
parameters[5] = Av1GlobalMotionParameters.ModelScale + 768;
|
|
|
|
Av1MotionVector actual = parameters.GetMotionVector(
|
|
allowHighPrecisionMotionVector,
|
|
Av1BlockSize.Block8x8,
|
|
new Point(2, 3),
|
|
forceIntegerMotionVector: false);
|
|
|
|
Assert.Equal(new Av1MotionVector(expectedRow, expectedColumn), actual);
|
|
}
|
|
}
|
|
|