Daniel Kang | 58156f1 | 2012-06-26 18:11:33 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2012 The WebM project authors. All Rights Reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
| 11 | #include <math.h> |
| 12 | #include <stdlib.h> |
| 13 | #include <string.h> |
| 14 | |
| 15 | #include "third_party/googletest/src/include/gtest/gtest.h" |
Jingning Han | 097d59c | 2015-07-29 14:51:36 -0700 | [diff] [blame] | 16 | |
| 17 | #include "./vp9_rtcd.h" |
| 18 | #include "./vpx_dsp_rtcd.h" |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 19 | #include "test/acm_random.h" |
| 20 | #include "test/clear_system_state.h" |
| 21 | #include "test/register_state_check.h" |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 22 | #include "test/transform_test_base.h" |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 23 | #include "test/util.h" |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 24 | #include "vpx/vpx_codec.h" |
James Zern | 002ad40 | 2014-01-18 13:03:31 -0800 | [diff] [blame] | 25 | #include "vpx/vpx_integer.h" |
Johann | 1d7ccd5 | 2015-05-11 19:09:22 -0700 | [diff] [blame] | 26 | #include "vpx_ports/mem.h" |
James Zern | 002ad40 | 2014-01-18 13:03:31 -0800 | [diff] [blame] | 27 | |
Daniel Kang | 26641c7 | 2012-06-28 16:26:31 -0700 | [diff] [blame] | 28 | using libvpx_test::ACMRandom; |
| 29 | |
Daniel Kang | 58156f1 | 2012-06-26 18:11:33 -0700 | [diff] [blame] | 30 | namespace { |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 31 | typedef void (*FdctFunc)(const int16_t *in, tran_low_t *out, int stride); |
| 32 | typedef void (*IdctFunc)(const tran_low_t *in, uint8_t *out, int stride); |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 33 | typedef void (*IhtFunc)(const tran_low_t *in, uint8_t *out, int stride, |
James Zern | b8b3dd9 | 2014-07-16 18:55:40 -0700 | [diff] [blame] | 34 | int tx_type); |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 35 | using libvpx_test::FhtFunc; |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 36 | |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 37 | typedef std::tr1::tuple<FdctFunc, IdctFunc, int, vpx_bit_depth_t, int> |
| 38 | Dct4x4Param; |
| 39 | typedef std::tr1::tuple<FhtFunc, IhtFunc, int, vpx_bit_depth_t, int> |
| 40 | Ht4x4Param; |
Joshua Litt | 51490e5 | 2013-11-18 17:07:55 -0800 | [diff] [blame] | 41 | |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 42 | void fdct4x4_ref(const int16_t *in, tran_low_t *out, int stride, |
James Zern | cffef11 | 2016-02-11 18:27:00 -0800 | [diff] [blame] | 43 | int /*tx_type*/) { |
Jingning Han | 4b5109c | 2015-07-28 15:57:40 -0700 | [diff] [blame] | 44 | vpx_fdct4x4_c(in, out, stride); |
Jingning Han | 362809d | 2013-06-18 10:46:33 -0700 | [diff] [blame] | 45 | } |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 46 | |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 47 | void fht4x4_ref(const int16_t *in, tran_low_t *out, int stride, int tx_type) { |
Dmitry Kovalev | 005fc69 | 2014-02-06 11:54:15 -0800 | [diff] [blame] | 48 | vp9_fht4x4_c(in, out, stride, tx_type); |
Jingning Han | 362809d | 2013-06-18 10:46:33 -0700 | [diff] [blame] | 49 | } |
Daniel Kang | 58156f1 | 2012-06-26 18:11:33 -0700 | [diff] [blame] | 50 | |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 51 | void fwht4x4_ref(const int16_t *in, tran_low_t *out, int stride, |
James Zern | cffef11 | 2016-02-11 18:27:00 -0800 | [diff] [blame] | 52 | int /*tx_type*/) { |
Alex Converse | 9f9f87c | 2014-05-05 13:50:12 -0700 | [diff] [blame] | 53 | vp9_fwht4x4_c(in, out, stride); |
| 54 | } |
| 55 | |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 56 | #if CONFIG_VP9_HIGHBITDEPTH |
| 57 | void idct4x4_10(const tran_low_t *in, uint8_t *out, int stride) { |
Jingning Han | 08a453b | 2015-08-03 14:51:10 -0700 | [diff] [blame] | 58 | vpx_highbd_idct4x4_16_add_c(in, out, stride, 10); |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | void idct4x4_12(const tran_low_t *in, uint8_t *out, int stride) { |
Jingning Han | 08a453b | 2015-08-03 14:51:10 -0700 | [diff] [blame] | 62 | vpx_highbd_idct4x4_16_add_c(in, out, stride, 12); |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 63 | } |
| 64 | |
| 65 | void iht4x4_10(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { |
Deb Mukherjee | 1929c9b | 2014-10-08 12:43:22 -0700 | [diff] [blame] | 66 | vp9_highbd_iht4x4_16_add_c(in, out, stride, tx_type, 10); |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | void iht4x4_12(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { |
Deb Mukherjee | 1929c9b | 2014-10-08 12:43:22 -0700 | [diff] [blame] | 70 | vp9_highbd_iht4x4_16_add_c(in, out, stride, tx_type, 12); |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | void iwht4x4_10(const tran_low_t *in, uint8_t *out, int stride) { |
Jingning Han | 08a453b | 2015-08-03 14:51:10 -0700 | [diff] [blame] | 74 | vpx_highbd_iwht4x4_16_add_c(in, out, stride, 10); |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | void iwht4x4_12(const tran_low_t *in, uint8_t *out, int stride) { |
Jingning Han | 08a453b | 2015-08-03 14:51:10 -0700 | [diff] [blame] | 78 | vpx_highbd_iwht4x4_16_add_c(in, out, stride, 12); |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 79 | } |
Peter de Rivaz | 7e40a55 | 2014-10-24 08:48:02 +0100 | [diff] [blame] | 80 | |
| 81 | #if HAVE_SSE2 |
| 82 | void idct4x4_10_sse2(const tran_low_t *in, uint8_t *out, int stride) { |
Jingning Han | 08a453b | 2015-08-03 14:51:10 -0700 | [diff] [blame] | 83 | vpx_highbd_idct4x4_16_add_sse2(in, out, stride, 10); |
Peter de Rivaz | 7e40a55 | 2014-10-24 08:48:02 +0100 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | void idct4x4_12_sse2(const tran_low_t *in, uint8_t *out, int stride) { |
Jingning Han | 08a453b | 2015-08-03 14:51:10 -0700 | [diff] [blame] | 87 | vpx_highbd_idct4x4_16_add_sse2(in, out, stride, 12); |
Peter de Rivaz | 7e40a55 | 2014-10-24 08:48:02 +0100 | [diff] [blame] | 88 | } |
| 89 | #endif // HAVE_SSE2 |
| 90 | #endif // CONFIG_VP9_HIGHBITDEPTH |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 91 | |
Jingning Han | 362809d | 2013-06-18 10:46:33 -0700 | [diff] [blame] | 92 | |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 93 | class Trans4x4DCT |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 94 | : public libvpx_test::TransformTestBase, |
James Zern | b8b3dd9 | 2014-07-16 18:55:40 -0700 | [diff] [blame] | 95 | public ::testing::TestWithParam<Dct4x4Param> { |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 96 | public: |
| 97 | virtual ~Trans4x4DCT() {} |
Daniel Kang | 58156f1 | 2012-06-26 18:11:33 -0700 | [diff] [blame] | 98 | |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 99 | virtual void SetUp() { |
| 100 | fwd_txfm_ = GET_PARAM(0); |
| 101 | inv_txfm_ = GET_PARAM(1); |
| 102 | tx_type_ = GET_PARAM(2); |
| 103 | pitch_ = 4; |
| 104 | fwd_txfm_ref = fdct4x4_ref; |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 105 | bit_depth_ = GET_PARAM(3); |
| 106 | mask_ = (1 << bit_depth_) - 1; |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 107 | num_coeffs_ = GET_PARAM(4); |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 108 | } |
| 109 | virtual void TearDown() { libvpx_test::ClearSystemState(); } |
Daniel Kang | 58156f1 | 2012-06-26 18:11:33 -0700 | [diff] [blame] | 110 | |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 111 | protected: |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 112 | void RunFwdTxfm(const int16_t *in, tran_low_t *out, int stride) { |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 113 | fwd_txfm_(in, out, stride); |
| 114 | } |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 115 | void RunInvTxfm(const tran_low_t *out, uint8_t *dst, int stride) { |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 116 | inv_txfm_(out, dst, stride); |
Daniel Kang | 58156f1 | 2012-06-26 18:11:33 -0700 | [diff] [blame] | 117 | } |
| 118 | |
James Zern | b8b3dd9 | 2014-07-16 18:55:40 -0700 | [diff] [blame] | 119 | FdctFunc fwd_txfm_; |
| 120 | IdctFunc inv_txfm_; |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 121 | }; |
Daniel Kang | 58156f1 | 2012-06-26 18:11:33 -0700 | [diff] [blame] | 122 | |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 123 | TEST_P(Trans4x4DCT, AccuracyCheck) { |
Alex Converse | 9f9f87c | 2014-05-05 13:50:12 -0700 | [diff] [blame] | 124 | RunAccuracyCheck(1); |
Jingning Han | 362809d | 2013-06-18 10:46:33 -0700 | [diff] [blame] | 125 | } |
Daniel Kang | 58156f1 | 2012-06-26 18:11:33 -0700 | [diff] [blame] | 126 | |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 127 | TEST_P(Trans4x4DCT, CoeffCheck) { |
| 128 | RunCoeffCheck(); |
Jingning Han | 362809d | 2013-06-18 10:46:33 -0700 | [diff] [blame] | 129 | } |
Daniel Kang | 58156f1 | 2012-06-26 18:11:33 -0700 | [diff] [blame] | 130 | |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 131 | TEST_P(Trans4x4DCT, MemCheck) { |
| 132 | RunMemCheck(); |
| 133 | } |
| 134 | |
| 135 | TEST_P(Trans4x4DCT, InvAccuracyCheck) { |
Alex Converse | 9f9f87c | 2014-05-05 13:50:12 -0700 | [diff] [blame] | 136 | RunInvAccuracyCheck(1); |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | class Trans4x4HT |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 140 | : public libvpx_test::TransformTestBase, |
James Zern | b8b3dd9 | 2014-07-16 18:55:40 -0700 | [diff] [blame] | 141 | public ::testing::TestWithParam<Ht4x4Param> { |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 142 | public: |
| 143 | virtual ~Trans4x4HT() {} |
| 144 | |
| 145 | virtual void SetUp() { |
| 146 | fwd_txfm_ = GET_PARAM(0); |
| 147 | inv_txfm_ = GET_PARAM(1); |
| 148 | tx_type_ = GET_PARAM(2); |
| 149 | pitch_ = 4; |
| 150 | fwd_txfm_ref = fht4x4_ref; |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 151 | bit_depth_ = GET_PARAM(3); |
| 152 | mask_ = (1 << bit_depth_) - 1; |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 153 | num_coeffs_ = GET_PARAM(4); |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 154 | } |
| 155 | virtual void TearDown() { libvpx_test::ClearSystemState(); } |
| 156 | |
| 157 | protected: |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 158 | void RunFwdTxfm(const int16_t *in, tran_low_t *out, int stride) { |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 159 | fwd_txfm_(in, out, stride, tx_type_); |
| 160 | } |
| 161 | |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 162 | void RunInvTxfm(const tran_low_t *out, uint8_t *dst, int stride) { |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 163 | inv_txfm_(out, dst, stride, tx_type_); |
| 164 | } |
| 165 | |
James Zern | b8b3dd9 | 2014-07-16 18:55:40 -0700 | [diff] [blame] | 166 | FhtFunc fwd_txfm_; |
| 167 | IhtFunc inv_txfm_; |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 168 | }; |
| 169 | |
| 170 | TEST_P(Trans4x4HT, AccuracyCheck) { |
Alex Converse | 9f9f87c | 2014-05-05 13:50:12 -0700 | [diff] [blame] | 171 | RunAccuracyCheck(1); |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | TEST_P(Trans4x4HT, CoeffCheck) { |
| 175 | RunCoeffCheck(); |
| 176 | } |
| 177 | |
| 178 | TEST_P(Trans4x4HT, MemCheck) { |
| 179 | RunMemCheck(); |
| 180 | } |
| 181 | |
| 182 | TEST_P(Trans4x4HT, InvAccuracyCheck) { |
Alex Converse | 9f9f87c | 2014-05-05 13:50:12 -0700 | [diff] [blame] | 183 | RunInvAccuracyCheck(1); |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 184 | } |
| 185 | |
Alex Converse | 9f9f87c | 2014-05-05 13:50:12 -0700 | [diff] [blame] | 186 | class Trans4x4WHT |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 187 | : public libvpx_test::TransformTestBase, |
James Zern | b8b3dd9 | 2014-07-16 18:55:40 -0700 | [diff] [blame] | 188 | public ::testing::TestWithParam<Dct4x4Param> { |
Alex Converse | 9f9f87c | 2014-05-05 13:50:12 -0700 | [diff] [blame] | 189 | public: |
| 190 | virtual ~Trans4x4WHT() {} |
| 191 | |
| 192 | virtual void SetUp() { |
| 193 | fwd_txfm_ = GET_PARAM(0); |
| 194 | inv_txfm_ = GET_PARAM(1); |
| 195 | tx_type_ = GET_PARAM(2); |
| 196 | pitch_ = 4; |
| 197 | fwd_txfm_ref = fwht4x4_ref; |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 198 | bit_depth_ = GET_PARAM(3); |
| 199 | mask_ = (1 << bit_depth_) - 1; |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 200 | num_coeffs_ = GET_PARAM(4); |
Alex Converse | 9f9f87c | 2014-05-05 13:50:12 -0700 | [diff] [blame] | 201 | } |
| 202 | virtual void TearDown() { libvpx_test::ClearSystemState(); } |
| 203 | |
| 204 | protected: |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 205 | void RunFwdTxfm(const int16_t *in, tran_low_t *out, int stride) { |
Alex Converse | 9f9f87c | 2014-05-05 13:50:12 -0700 | [diff] [blame] | 206 | fwd_txfm_(in, out, stride); |
| 207 | } |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 208 | void RunInvTxfm(const tran_low_t *out, uint8_t *dst, int stride) { |
Alex Converse | 9f9f87c | 2014-05-05 13:50:12 -0700 | [diff] [blame] | 209 | inv_txfm_(out, dst, stride); |
| 210 | } |
| 211 | |
James Zern | b8b3dd9 | 2014-07-16 18:55:40 -0700 | [diff] [blame] | 212 | FdctFunc fwd_txfm_; |
| 213 | IdctFunc inv_txfm_; |
Alex Converse | 9f9f87c | 2014-05-05 13:50:12 -0700 | [diff] [blame] | 214 | }; |
| 215 | |
| 216 | TEST_P(Trans4x4WHT, AccuracyCheck) { |
| 217 | RunAccuracyCheck(0); |
| 218 | } |
| 219 | |
| 220 | TEST_P(Trans4x4WHT, CoeffCheck) { |
| 221 | RunCoeffCheck(); |
| 222 | } |
| 223 | |
| 224 | TEST_P(Trans4x4WHT, MemCheck) { |
| 225 | RunMemCheck(); |
| 226 | } |
| 227 | |
| 228 | TEST_P(Trans4x4WHT, InvAccuracyCheck) { |
| 229 | RunInvAccuracyCheck(0); |
| 230 | } |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 231 | using std::tr1::make_tuple; |
| 232 | |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 233 | #if CONFIG_VP9_HIGHBITDEPTH |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 234 | INSTANTIATE_TEST_CASE_P( |
| 235 | C, Trans4x4DCT, |
| 236 | ::testing::Values( |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 237 | make_tuple(&vpx_highbd_fdct4x4_c, &idct4x4_10, 0, VPX_BITS_10, 16), |
| 238 | make_tuple(&vpx_highbd_fdct4x4_c, &idct4x4_12, 0, VPX_BITS_12, 16), |
| 239 | make_tuple(&vpx_fdct4x4_c, &vpx_idct4x4_16_add_c, 0, VPX_BITS_8, 16))); |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 240 | #else |
| 241 | INSTANTIATE_TEST_CASE_P( |
| 242 | C, Trans4x4DCT, |
| 243 | ::testing::Values( |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 244 | make_tuple(&vpx_fdct4x4_c, &vpx_idct4x4_16_add_c, 0, VPX_BITS_8, 16))); |
Peter de Rivaz | 7e40a55 | 2014-10-24 08:48:02 +0100 | [diff] [blame] | 245 | #endif // CONFIG_VP9_HIGHBITDEPTH |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 246 | |
| 247 | #if CONFIG_VP9_HIGHBITDEPTH |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 248 | INSTANTIATE_TEST_CASE_P( |
| 249 | C, Trans4x4HT, |
| 250 | ::testing::Values( |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 251 | make_tuple(&vp9_highbd_fht4x4_c, &iht4x4_10, 0, VPX_BITS_10, 16), |
| 252 | make_tuple(&vp9_highbd_fht4x4_c, &iht4x4_10, 1, VPX_BITS_10, 16), |
| 253 | make_tuple(&vp9_highbd_fht4x4_c, &iht4x4_10, 2, VPX_BITS_10, 16), |
| 254 | make_tuple(&vp9_highbd_fht4x4_c, &iht4x4_10, 3, VPX_BITS_10, 16), |
| 255 | make_tuple(&vp9_highbd_fht4x4_c, &iht4x4_12, 0, VPX_BITS_12, 16), |
| 256 | make_tuple(&vp9_highbd_fht4x4_c, &iht4x4_12, 1, VPX_BITS_12, 16), |
| 257 | make_tuple(&vp9_highbd_fht4x4_c, &iht4x4_12, 2, VPX_BITS_12, 16), |
| 258 | make_tuple(&vp9_highbd_fht4x4_c, &iht4x4_12, 3, VPX_BITS_12, 16), |
| 259 | make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_c, 0, VPX_BITS_8, 16), |
| 260 | make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_c, 1, VPX_BITS_8, 16), |
| 261 | make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_c, 2, VPX_BITS_8, 16), |
| 262 | make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_c, 3, VPX_BITS_8, 16))); |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 263 | #else |
| 264 | INSTANTIATE_TEST_CASE_P( |
| 265 | C, Trans4x4HT, |
| 266 | ::testing::Values( |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 267 | make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_c, 0, VPX_BITS_8, 16), |
| 268 | make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_c, 1, VPX_BITS_8, 16), |
| 269 | make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_c, 2, VPX_BITS_8, 16), |
| 270 | make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_c, 3, VPX_BITS_8, 16))); |
Peter de Rivaz | 7e40a55 | 2014-10-24 08:48:02 +0100 | [diff] [blame] | 271 | #endif // CONFIG_VP9_HIGHBITDEPTH |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 272 | |
| 273 | #if CONFIG_VP9_HIGHBITDEPTH |
Alex Converse | 9f9f87c | 2014-05-05 13:50:12 -0700 | [diff] [blame] | 274 | INSTANTIATE_TEST_CASE_P( |
| 275 | C, Trans4x4WHT, |
| 276 | ::testing::Values( |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 277 | make_tuple(&vp9_highbd_fwht4x4_c, &iwht4x4_10, 0, VPX_BITS_10, 16), |
| 278 | make_tuple(&vp9_highbd_fwht4x4_c, &iwht4x4_12, 0, VPX_BITS_12, 16), |
| 279 | make_tuple(&vp9_fwht4x4_c, &vpx_iwht4x4_16_add_c, 0, VPX_BITS_8, 16))); |
Deb Mukherjee | 10783d4 | 2014-09-02 16:34:09 -0700 | [diff] [blame] | 280 | #else |
| 281 | INSTANTIATE_TEST_CASE_P( |
| 282 | C, Trans4x4WHT, |
| 283 | ::testing::Values( |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 284 | make_tuple(&vp9_fwht4x4_c, &vpx_iwht4x4_16_add_c, 0, VPX_BITS_8, 16))); |
Peter de Rivaz | 7e40a55 | 2014-10-24 08:48:02 +0100 | [diff] [blame] | 285 | #endif // CONFIG_VP9_HIGHBITDEPTH |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 286 | |
Deb Mukherjee | d50716f | 2014-10-02 15:43:27 -0700 | [diff] [blame] | 287 | #if HAVE_NEON_ASM && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE |
James Zern | 08c3180 | 2014-02-25 23:11:49 -0800 | [diff] [blame] | 288 | INSTANTIATE_TEST_CASE_P( |
| 289 | NEON, Trans4x4DCT, |
| 290 | ::testing::Values( |
Jingning Han | 4b5109c | 2015-07-28 15:57:40 -0700 | [diff] [blame] | 291 | make_tuple(&vpx_fdct4x4_c, |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 292 | &vpx_idct4x4_16_add_neon, 0, VPX_BITS_8, 16))); |
James Yu | 6b71013 | 2014-01-27 18:38:35 +0800 | [diff] [blame] | 293 | #endif // HAVE_NEON_ASM && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE |
| 294 | |
| 295 | #if HAVE_NEON && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE |
James Zern | 08c3180 | 2014-02-25 23:11:49 -0800 | [diff] [blame] | 296 | INSTANTIATE_TEST_CASE_P( |
James Yu | 6b71013 | 2014-01-27 18:38:35 +0800 | [diff] [blame] | 297 | NEON, Trans4x4HT, |
James Zern | 08c3180 | 2014-02-25 23:11:49 -0800 | [diff] [blame] | 298 | ::testing::Values( |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 299 | make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_neon, 0, VPX_BITS_8, 16), |
| 300 | make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_neon, 1, VPX_BITS_8, 16), |
| 301 | make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_neon, 2, VPX_BITS_8, 16), |
| 302 | make_tuple(&vp9_fht4x4_c, &vp9_iht4x4_16_add_neon, 3, VPX_BITS_8, 16))); |
James Yu | 6b71013 | 2014-01-27 18:38:35 +0800 | [diff] [blame] | 303 | #endif // HAVE_NEON && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE |
James Zern | 08c3180 | 2014-02-25 23:11:49 -0800 | [diff] [blame] | 304 | |
Deb Mukherjee | d50716f | 2014-10-02 15:43:27 -0700 | [diff] [blame] | 305 | #if CONFIG_USE_X86INC && HAVE_MMX && !CONFIG_VP9_HIGHBITDEPTH && \ |
| 306 | !CONFIG_EMULATE_HARDWARE |
Alex Converse | b5422fa | 2014-05-07 12:51:11 -0700 | [diff] [blame] | 307 | INSTANTIATE_TEST_CASE_P( |
| 308 | MMX, Trans4x4WHT, |
| 309 | ::testing::Values( |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 310 | make_tuple(&vp9_fwht4x4_mmx, &vpx_iwht4x4_16_add_c, 0, |
| 311 | VPX_BITS_8, 16))); |
Alex Converse | b5422fa | 2014-05-07 12:51:11 -0700 | [diff] [blame] | 312 | #endif |
| 313 | |
Alex Converse | d8426d6 | 2015-07-13 11:12:45 -0700 | [diff] [blame] | 314 | #if CONFIG_USE_X86INC && HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && \ |
| 315 | !CONFIG_EMULATE_HARDWARE |
| 316 | INSTANTIATE_TEST_CASE_P( |
| 317 | SSE2, Trans4x4WHT, |
| 318 | ::testing::Values( |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 319 | make_tuple(&vp9_fwht4x4_c, &vpx_iwht4x4_16_add_sse2, 0, |
| 320 | VPX_BITS_8, 16))); |
Alex Converse | d8426d6 | 2015-07-13 11:12:45 -0700 | [diff] [blame] | 321 | #endif |
| 322 | |
Deb Mukherjee | d50716f | 2014-10-02 15:43:27 -0700 | [diff] [blame] | 323 | #if HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 324 | INSTANTIATE_TEST_CASE_P( |
| 325 | SSE2, Trans4x4DCT, |
| 326 | ::testing::Values( |
Jingning Han | 4b5109c | 2015-07-28 15:57:40 -0700 | [diff] [blame] | 327 | make_tuple(&vpx_fdct4x4_sse2, |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 328 | &vpx_idct4x4_16_add_sse2, 0, VPX_BITS_8, 16))); |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 329 | INSTANTIATE_TEST_CASE_P( |
| 330 | SSE2, Trans4x4HT, |
| 331 | ::testing::Values( |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 332 | make_tuple(&vp9_fht4x4_sse2, &vp9_iht4x4_16_add_sse2, 0, |
| 333 | VPX_BITS_8, 16), |
| 334 | make_tuple(&vp9_fht4x4_sse2, &vp9_iht4x4_16_add_sse2, 1, |
| 335 | VPX_BITS_8, 16), |
| 336 | make_tuple(&vp9_fht4x4_sse2, &vp9_iht4x4_16_add_sse2, 2, |
| 337 | VPX_BITS_8, 16), |
| 338 | make_tuple(&vp9_fht4x4_sse2, &vp9_iht4x4_16_add_sse2, 3, |
| 339 | VPX_BITS_8, 16))); |
Peter de Rivaz | 7e40a55 | 2014-10-24 08:48:02 +0100 | [diff] [blame] | 340 | #endif // HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE |
Jingning Han | 30d4c5e | 2013-11-12 12:47:32 -0800 | [diff] [blame] | 341 | |
Peter de Rivaz | 7e40a55 | 2014-10-24 08:48:02 +0100 | [diff] [blame] | 342 | #if HAVE_SSE2 && CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE |
| 343 | INSTANTIATE_TEST_CASE_P( |
| 344 | SSE2, Trans4x4DCT, |
| 345 | ::testing::Values( |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 346 | make_tuple(&vpx_highbd_fdct4x4_c, &idct4x4_10_sse2, 0, |
| 347 | VPX_BITS_10, 16), |
| 348 | make_tuple(&vpx_highbd_fdct4x4_sse2, &idct4x4_10_sse2, 0, |
| 349 | VPX_BITS_10, 16), |
| 350 | make_tuple(&vpx_highbd_fdct4x4_c, &idct4x4_12_sse2, 0, |
| 351 | VPX_BITS_12, 16), |
| 352 | make_tuple(&vpx_highbd_fdct4x4_sse2, &idct4x4_12_sse2, 0, |
| 353 | VPX_BITS_12, 16), |
Jingning Han | 08a453b | 2015-08-03 14:51:10 -0700 | [diff] [blame] | 354 | make_tuple(&vpx_fdct4x4_sse2, &vpx_idct4x4_16_add_c, 0, |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 355 | VPX_BITS_8, 16))); |
Peter de Rivaz | 7e40a55 | 2014-10-24 08:48:02 +0100 | [diff] [blame] | 356 | |
| 357 | INSTANTIATE_TEST_CASE_P( |
| 358 | SSE2, Trans4x4HT, |
| 359 | ::testing::Values( |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 360 | make_tuple(&vp9_fht4x4_sse2, &vp9_iht4x4_16_add_c, 0, VPX_BITS_8, 16), |
| 361 | make_tuple(&vp9_fht4x4_sse2, &vp9_iht4x4_16_add_c, 1, VPX_BITS_8, 16), |
| 362 | make_tuple(&vp9_fht4x4_sse2, &vp9_iht4x4_16_add_c, 2, VPX_BITS_8, 16), |
| 363 | make_tuple(&vp9_fht4x4_sse2, &vp9_iht4x4_16_add_c, 3, VPX_BITS_8, 16))); |
Peter de Rivaz | 7e40a55 | 2014-10-24 08:48:02 +0100 | [diff] [blame] | 364 | #endif // HAVE_SSE2 && CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE |
Parag Salasakar | 54a6f73 | 2015-06-02 12:16:28 +0530 | [diff] [blame] | 365 | |
Jingning Han | 9aaf523 | 2015-07-22 11:53:21 -0700 | [diff] [blame] | 366 | #if HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE |
Parag Salasakar | 54a6f73 | 2015-06-02 12:16:28 +0530 | [diff] [blame] | 367 | INSTANTIATE_TEST_CASE_P( |
| 368 | MSA, Trans4x4DCT, |
| 369 | ::testing::Values( |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 370 | make_tuple(&vpx_fdct4x4_msa, &vpx_idct4x4_16_add_msa, 0, |
| 371 | VPX_BITS_8, 16))); |
Parag Salasakar | 54a6f73 | 2015-06-02 12:16:28 +0530 | [diff] [blame] | 372 | INSTANTIATE_TEST_CASE_P( |
| 373 | MSA, Trans4x4HT, |
| 374 | ::testing::Values( |
Yi Luo | 267f73a | 2016-02-29 09:53:42 -0800 | [diff] [blame] | 375 | make_tuple(&vp9_fht4x4_msa, &vp9_iht4x4_16_add_msa, 0, |
| 376 | VPX_BITS_8, 16), |
| 377 | make_tuple(&vp9_fht4x4_msa, &vp9_iht4x4_16_add_msa, 1, |
| 378 | VPX_BITS_8, 16), |
| 379 | make_tuple(&vp9_fht4x4_msa, &vp9_iht4x4_16_add_msa, 2, |
| 380 | VPX_BITS_8, 16), |
| 381 | make_tuple(&vp9_fht4x4_msa, &vp9_iht4x4_16_add_msa, 3, |
| 382 | VPX_BITS_8, 16))); |
Parag Salasakar | 54a6f73 | 2015-06-02 12:16:28 +0530 | [diff] [blame] | 383 | #endif // HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE |
Daniel Kang | 58156f1 | 2012-06-26 18:11:33 -0700 | [diff] [blame] | 384 | } // namespace |