aboutsummaryrefslogtreecommitdiff
path: root/src/scan_test.cc
blob: 065ca037882a17fe5b72b97a13c3f1a341e6d78a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// Copyright 2021 The libgav1 Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include <algorithm>
#include <cstdint>
#include <tuple>
#include <vector>

#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include "src/utils/common.h"
#include "src/utils/constants.h"

namespace libgav1 {
namespace {

// Import all the constants in the anonymous namespace.
#include "src/scan_tables.inc"

class ScanOrderTest
    : public testing::TestWithParam<std::tuple<TransformClass, TransformSize>> {
 public:
  ScanOrderTest() = default;
  ScanOrderTest(const ScanOrderTest&) = delete;
  ScanOrderTest& operator=(const ScanOrderTest&) = delete;
  ~ScanOrderTest() override = default;

 protected:
  TransformClass tx_class_ = std::get<0>(GetParam());
  TransformSize tx_size_ = std::get<1>(GetParam());
};

TEST_P(ScanOrderTest, AllIndicesAreScannedExactlyOnce) {
  const int tx_width = kTransformWidth[tx_size_];
  const int tx_height = kTransformHeight[tx_size_];
  int num_indices;
  if (tx_class_ == kTransformClass2D || std::max(tx_width, tx_height) == 64) {
    const int clamped_tx_width = std::min(32, tx_width);
    const int clamped_tx_height = std::min(32, tx_height);
    num_indices = clamped_tx_width * clamped_tx_height;
  } else {
    num_indices =
        (std::max(tx_width, tx_height) > 16) ? 64 : tx_width * tx_height;
  }
  const uint16_t* const scan = kScan[tx_class_][tx_size_];
  ASSERT_NE(scan, nullptr);
  // Ensure that all the indices are scanned exactly once.
  std::vector<int> scanned;
  scanned.resize(num_indices);
  for (int i = 0; i < num_indices; ++i) {
    scanned[scan[i]]++;
  }
  EXPECT_THAT(scanned, testing::Each(1));
}

constexpr TransformClass kTestTransformClasses[] = {
    kTransformClass2D, kTransformClassVertical, kTransformClassHorizontal};

constexpr TransformSize kTestTransformSizes[] = {
    kTransformSize4x4,   kTransformSize4x8,   kTransformSize4x16,
    kTransformSize8x4,   kTransformSize8x8,   kTransformSize8x16,
    kTransformSize8x32,  kTransformSize16x4,  kTransformSize16x8,
    kTransformSize16x16, kTransformSize16x32, kTransformSize16x64,
    kTransformSize32x8,  kTransformSize32x16, kTransformSize32x32,
    kTransformSize32x64, kTransformSize64x16, kTransformSize64x32,
    kTransformSize64x64};

INSTANTIATE_TEST_SUITE_P(
    C, ScanOrderTest,
    testing::Combine(testing::ValuesIn(kTestTransformClasses),
                     testing::ValuesIn(kTestTransformSizes)));

}  // namespace
}  // namespace libgav1