blob: 991cdb4c01317a7950f9ffb38779f5be825861ca [file] [log] [blame]
Geza Lore1a800f62016-09-02 16:05:53 +01001/*
Yaowu Xubde4ac82016-11-28 15:26:06 -08002 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
Geza Lore1a800f62016-09-02 16:05:53 +01003 *
Yaowu Xubde4ac82016-11-28 15:26:06 -08004 * This source code is subject to the terms of the BSD 2 Clause License and
5 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6 * was not distributed with this source code in the LICENSE file, you can
7 * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8 * Media Patent License 1.0 was not distributed with this source code in the
9 * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
Geza Lore1a800f62016-09-02 16:05:53 +010010 */
11
Tom Finegan7a07ece2017-02-07 17:14:05 -080012#include "third_party/googletest/src/googletest/include/gtest/gtest.h"
Geza Lore1a800f62016-09-02 16:05:53 +010013
14#include "./aom_dsp_rtcd.h"
15#include "./av1_rtcd.h"
16
17#include "aom_ports/mem.h"
18#include "test/acm_random.h"
19#include "test/clear_system_state.h"
20#include "test/register_state_check.h"
21#include "test/transform_test_base.h"
22#include "test/util.h"
23
24using libaom_test::ACMRandom;
25
26namespace {
27typedef void (*IhtFunc)(const tran_low_t *in, uint8_t *out, int stride,
Lester Lu27319b62017-07-10 16:57:15 -070028 const TxfmParam *txfm_param);
Geza Lore1a800f62016-09-02 16:05:53 +010029using libaom_test::FhtFunc;
Johann123e8a62017-12-28 14:40:49 -080030using std::tr1::tuple;
Urvang Joshi2283d372017-10-02 17:16:45 -070031typedef tuple<FhtFunc, IhtFunc, TX_TYPE, aom_bit_depth_t, int> Ht16x8Param;
Geza Lore1a800f62016-09-02 16:05:53 +010032
Lester Lud8b1ddc2017-07-06 16:13:29 -070033void fht16x8_ref(const int16_t *in, tran_low_t *out, int stride,
Lester Lu27319b62017-07-10 16:57:15 -070034 TxfmParam *txfm_param) {
35 av1_fht16x8_c(in, out, stride, txfm_param);
Geza Lore1a800f62016-09-02 16:05:53 +010036}
37
Lester Lud8b1ddc2017-07-06 16:13:29 -070038void iht16x8_ref(const tran_low_t *in, uint8_t *out, int stride,
Lester Lu27319b62017-07-10 16:57:15 -070039 const TxfmParam *txfm_param) {
40 av1_iht16x8_128_add_c(in, out, stride, txfm_param);
David Barker4f803ef2016-10-13 16:02:59 +010041}
42
Geza Lore1a800f62016-09-02 16:05:53 +010043class AV1Trans16x8HT : public libaom_test::TransformTestBase,
44 public ::testing::TestWithParam<Ht16x8Param> {
45 public:
46 virtual ~AV1Trans16x8HT() {}
47
48 virtual void SetUp() {
49 fwd_txfm_ = GET_PARAM(0);
50 inv_txfm_ = GET_PARAM(1);
Geza Lore1a800f62016-09-02 16:05:53 +010051 pitch_ = 16;
David Barker78250222016-10-13 15:10:14 +010052 height_ = 8;
David Barker4f803ef2016-10-13 16:02:59 +010053 inv_txfm_ref = iht16x8_ref;
Geza Lore1a800f62016-09-02 16:05:53 +010054 fwd_txfm_ref = fht16x8_ref;
55 bit_depth_ = GET_PARAM(3);
56 mask_ = (1 << bit_depth_) - 1;
57 num_coeffs_ = GET_PARAM(4);
Lester Lu27319b62017-07-10 16:57:15 -070058 txfm_param_.tx_type = GET_PARAM(2);
Geza Lore1a800f62016-09-02 16:05:53 +010059 }
60 virtual void TearDown() { libaom_test::ClearSystemState(); }
61
62 protected:
63 void RunFwdTxfm(const int16_t *in, tran_low_t *out, int stride) {
Lester Lu27319b62017-07-10 16:57:15 -070064 fwd_txfm_(in, out, stride, &txfm_param_);
Geza Lore1a800f62016-09-02 16:05:53 +010065 }
66
67 void RunInvTxfm(const tran_low_t *out, uint8_t *dst, int stride) {
Lester Lu27319b62017-07-10 16:57:15 -070068 inv_txfm_(out, dst, stride, &txfm_param_);
Geza Lore1a800f62016-09-02 16:05:53 +010069 }
70
71 FhtFunc fwd_txfm_;
72 IhtFunc inv_txfm_;
73};
74
Angie Chiange6aece82017-01-09 17:27:56 -080075TEST_P(AV1Trans16x8HT, AccuracyCheck) { RunAccuracyCheck(1, 0.001); }
Geza Lore1a800f62016-09-02 16:05:53 +010076TEST_P(AV1Trans16x8HT, CoeffCheck) { RunCoeffCheck(); }
Yi Luo63bd6dc2016-11-17 09:13:39 -080077TEST_P(AV1Trans16x8HT, MemCheck) { RunMemCheck(); }
David Barker4f803ef2016-10-13 16:02:59 +010078TEST_P(AV1Trans16x8HT, InvCoeffCheck) { RunInvCoeffCheck(); }
Debargha Mukherjeef0aa4202016-12-12 15:40:24 -080079TEST_P(AV1Trans16x8HT, InvAccuracyCheck) { RunInvAccuracyCheck(1); }
Geza Lore1a800f62016-09-02 16:05:53 +010080
81using std::tr1::make_tuple;
82
Debargha Mukherjeef0aa4202016-12-12 15:40:24 -080083const Ht16x8Param kArrayHt16x8Param_c[] = {
Urvang Joshi2283d372017-10-02 17:16:45 -070084 make_tuple(&av1_fht16x8_c, &av1_iht16x8_128_add_c, DCT_DCT, AOM_BITS_8, 128),
85 make_tuple(&av1_fht16x8_c, &av1_iht16x8_128_add_c, ADST_DCT, AOM_BITS_8, 128),
86 make_tuple(&av1_fht16x8_c, &av1_iht16x8_128_add_c, DCT_ADST, AOM_BITS_8, 128),
87 make_tuple(&av1_fht16x8_c, &av1_iht16x8_128_add_c, ADST_ADST, AOM_BITS_8,
88 128),
Urvang Joshi2283d372017-10-02 17:16:45 -070089 make_tuple(&av1_fht16x8_c, &av1_iht16x8_128_add_c, FLIPADST_DCT, AOM_BITS_8,
90 128),
91 make_tuple(&av1_fht16x8_c, &av1_iht16x8_128_add_c, DCT_FLIPADST, AOM_BITS_8,
92 128),
93 make_tuple(&av1_fht16x8_c, &av1_iht16x8_128_add_c, FLIPADST_FLIPADST,
94 AOM_BITS_8, 128),
95 make_tuple(&av1_fht16x8_c, &av1_iht16x8_128_add_c, ADST_FLIPADST, AOM_BITS_8,
96 128),
97 make_tuple(&av1_fht16x8_c, &av1_iht16x8_128_add_c, FLIPADST_ADST, AOM_BITS_8,
98 128),
99 make_tuple(&av1_fht16x8_c, &av1_iht16x8_128_add_c, IDTX, AOM_BITS_8, 128),
100 make_tuple(&av1_fht16x8_c, &av1_iht16x8_128_add_c, V_DCT, AOM_BITS_8, 128),
101 make_tuple(&av1_fht16x8_c, &av1_iht16x8_128_add_c, H_DCT, AOM_BITS_8, 128),
102 make_tuple(&av1_fht16x8_c, &av1_iht16x8_128_add_c, V_ADST, AOM_BITS_8, 128),
103 make_tuple(&av1_fht16x8_c, &av1_iht16x8_128_add_c, H_ADST, AOM_BITS_8, 128),
104 make_tuple(&av1_fht16x8_c, &av1_iht16x8_128_add_c, V_FLIPADST, AOM_BITS_8,
105 128),
106 make_tuple(&av1_fht16x8_c, &av1_iht16x8_128_add_c, H_FLIPADST, AOM_BITS_8,
107 128)
Debargha Mukherjeef0aa4202016-12-12 15:40:24 -0800108};
109INSTANTIATE_TEST_CASE_P(C, AV1Trans16x8HT,
110 ::testing::ValuesIn(kArrayHt16x8Param_c));
111
Sebastien Alaiwanc6a48a22017-04-20 10:12:43 +0200112#if HAVE_SSE2
Geza Lore1a800f62016-09-02 16:05:53 +0100113const Ht16x8Param kArrayHt16x8Param_sse2[] = {
Urvang Joshi2283d372017-10-02 17:16:45 -0700114 make_tuple(&av1_fht16x8_sse2, &av1_iht16x8_128_add_sse2, DCT_DCT, AOM_BITS_8,
115 128),
116 make_tuple(&av1_fht16x8_sse2, &av1_iht16x8_128_add_sse2, ADST_DCT, AOM_BITS_8,
117 128),
118 make_tuple(&av1_fht16x8_sse2, &av1_iht16x8_128_add_sse2, DCT_ADST, AOM_BITS_8,
119 128),
120 make_tuple(&av1_fht16x8_sse2, &av1_iht16x8_128_add_sse2, ADST_ADST,
121 AOM_BITS_8, 128),
Urvang Joshi2283d372017-10-02 17:16:45 -0700122 make_tuple(&av1_fht16x8_sse2, &av1_iht16x8_128_add_sse2, FLIPADST_DCT,
123 AOM_BITS_8, 128),
124 make_tuple(&av1_fht16x8_sse2, &av1_iht16x8_128_add_sse2, DCT_FLIPADST,
125 AOM_BITS_8, 128),
126 make_tuple(&av1_fht16x8_sse2, &av1_iht16x8_128_add_sse2, FLIPADST_FLIPADST,
127 AOM_BITS_8, 128),
128 make_tuple(&av1_fht16x8_sse2, &av1_iht16x8_128_add_sse2, ADST_FLIPADST,
129 AOM_BITS_8, 128),
130 make_tuple(&av1_fht16x8_sse2, &av1_iht16x8_128_add_sse2, FLIPADST_ADST,
131 AOM_BITS_8, 128),
132 make_tuple(&av1_fht16x8_sse2, &av1_iht16x8_128_add_sse2, IDTX, AOM_BITS_8,
133 128),
134 make_tuple(&av1_fht16x8_sse2, &av1_iht16x8_128_add_sse2, V_DCT, AOM_BITS_8,
135 128),
136 make_tuple(&av1_fht16x8_sse2, &av1_iht16x8_128_add_sse2, H_DCT, AOM_BITS_8,
137 128),
138 make_tuple(&av1_fht16x8_sse2, &av1_iht16x8_128_add_sse2, V_ADST, AOM_BITS_8,
139 128),
140 make_tuple(&av1_fht16x8_sse2, &av1_iht16x8_128_add_sse2, H_ADST, AOM_BITS_8,
141 128),
142 make_tuple(&av1_fht16x8_sse2, &av1_iht16x8_128_add_sse2, V_FLIPADST,
143 AOM_BITS_8, 128),
144 make_tuple(&av1_fht16x8_sse2, &av1_iht16x8_128_add_sse2, H_FLIPADST,
145 AOM_BITS_8, 128)
Geza Lore1a800f62016-09-02 16:05:53 +0100146};
Yi Luof10cba22016-12-14 13:54:47 -0800147INSTANTIATE_TEST_CASE_P(SSE2, AV1Trans16x8HT,
Geza Lore1a800f62016-09-02 16:05:53 +0100148 ::testing::ValuesIn(kArrayHt16x8Param_sse2));
Sebastien Alaiwanc6a48a22017-04-20 10:12:43 +0200149#endif // HAVE_SSE2
Geza Lore1a800f62016-09-02 16:05:53 +0100150
151} // namespace