blob: 59ce89585c7f76399a1580dbe466a7065af3d248 [file] [log] [blame]
Daniel Kang58156f12012-06-26 18:11:33 -07001/*
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 Han097d59c2015-07-29 14:51:36 -070016
17#include "./vp9_rtcd.h"
18#include "./vpx_dsp_rtcd.h"
Jingning Han30d4c5e2013-11-12 12:47:32 -080019#include "test/acm_random.h"
20#include "test/clear_system_state.h"
21#include "test/register_state_check.h"
Yi Luo267f73a2016-02-29 09:53:42 -080022#include "test/transform_test_base.h"
Jingning Han30d4c5e2013-11-12 12:47:32 -080023#include "test/util.h"
Deb Mukherjee10783d42014-09-02 16:34:09 -070024#include "vpx/vpx_codec.h"
James Zern002ad402014-01-18 13:03:31 -080025#include "vpx/vpx_integer.h"
Johann1d7ccd52015-05-11 19:09:22 -070026#include "vpx_ports/mem.h"
James Zern002ad402014-01-18 13:03:31 -080027
Daniel Kang26641c72012-06-28 16:26:31 -070028using libvpx_test::ACMRandom;
29
Daniel Kang58156f12012-06-26 18:11:33 -070030namespace {
Deb Mukherjee10783d42014-09-02 16:34:09 -070031typedef void (*FdctFunc)(const int16_t *in, tran_low_t *out, int stride);
32typedef void (*IdctFunc)(const tran_low_t *in, uint8_t *out, int stride);
Deb Mukherjee10783d42014-09-02 16:34:09 -070033typedef void (*IhtFunc)(const tran_low_t *in, uint8_t *out, int stride,
James Zernb8b3dd92014-07-16 18:55:40 -070034 int tx_type);
Yi Luo267f73a2016-02-29 09:53:42 -080035using libvpx_test::FhtFunc;
Jingning Han30d4c5e2013-11-12 12:47:32 -080036
Yi Luo267f73a2016-02-29 09:53:42 -080037typedef std::tr1::tuple<FdctFunc, IdctFunc, int, vpx_bit_depth_t, int>
38Dct4x4Param;
39typedef std::tr1::tuple<FhtFunc, IhtFunc, int, vpx_bit_depth_t, int>
40Ht4x4Param;
Joshua Litt51490e52013-11-18 17:07:55 -080041
Deb Mukherjee10783d42014-09-02 16:34:09 -070042void fdct4x4_ref(const int16_t *in, tran_low_t *out, int stride,
James Zerncffef112016-02-11 18:27:00 -080043 int /*tx_type*/) {
Jingning Han4b5109c2015-07-28 15:57:40 -070044 vpx_fdct4x4_c(in, out, stride);
Jingning Han362809d2013-06-18 10:46:33 -070045}
Jingning Han30d4c5e2013-11-12 12:47:32 -080046
Deb Mukherjee10783d42014-09-02 16:34:09 -070047void fht4x4_ref(const int16_t *in, tran_low_t *out, int stride, int tx_type) {
Dmitry Kovalev005fc692014-02-06 11:54:15 -080048 vp9_fht4x4_c(in, out, stride, tx_type);
Jingning Han362809d2013-06-18 10:46:33 -070049}
Daniel Kang58156f12012-06-26 18:11:33 -070050
Deb Mukherjee10783d42014-09-02 16:34:09 -070051void fwht4x4_ref(const int16_t *in, tran_low_t *out, int stride,
James Zerncffef112016-02-11 18:27:00 -080052 int /*tx_type*/) {
Alex Converse9f9f87c2014-05-05 13:50:12 -070053 vp9_fwht4x4_c(in, out, stride);
54}
55
Deb Mukherjee10783d42014-09-02 16:34:09 -070056#if CONFIG_VP9_HIGHBITDEPTH
57void idct4x4_10(const tran_low_t *in, uint8_t *out, int stride) {
Jingning Han08a453b2015-08-03 14:51:10 -070058 vpx_highbd_idct4x4_16_add_c(in, out, stride, 10);
Deb Mukherjee10783d42014-09-02 16:34:09 -070059}
60
61void idct4x4_12(const tran_low_t *in, uint8_t *out, int stride) {
Jingning Han08a453b2015-08-03 14:51:10 -070062 vpx_highbd_idct4x4_16_add_c(in, out, stride, 12);
Deb Mukherjee10783d42014-09-02 16:34:09 -070063}
64
65void iht4x4_10(const tran_low_t *in, uint8_t *out, int stride, int tx_type) {
Deb Mukherjee1929c9b2014-10-08 12:43:22 -070066 vp9_highbd_iht4x4_16_add_c(in, out, stride, tx_type, 10);
Deb Mukherjee10783d42014-09-02 16:34:09 -070067}
68
69void iht4x4_12(const tran_low_t *in, uint8_t *out, int stride, int tx_type) {
Deb Mukherjee1929c9b2014-10-08 12:43:22 -070070 vp9_highbd_iht4x4_16_add_c(in, out, stride, tx_type, 12);
Deb Mukherjee10783d42014-09-02 16:34:09 -070071}
72
73void iwht4x4_10(const tran_low_t *in, uint8_t *out, int stride) {
Jingning Han08a453b2015-08-03 14:51:10 -070074 vpx_highbd_iwht4x4_16_add_c(in, out, stride, 10);
Deb Mukherjee10783d42014-09-02 16:34:09 -070075}
76
77void iwht4x4_12(const tran_low_t *in, uint8_t *out, int stride) {
Jingning Han08a453b2015-08-03 14:51:10 -070078 vpx_highbd_iwht4x4_16_add_c(in, out, stride, 12);
Deb Mukherjee10783d42014-09-02 16:34:09 -070079}
Peter de Rivaz7e40a552014-10-24 08:48:02 +010080
81#if HAVE_SSE2
82void idct4x4_10_sse2(const tran_low_t *in, uint8_t *out, int stride) {
Jingning Han08a453b2015-08-03 14:51:10 -070083 vpx_highbd_idct4x4_16_add_sse2(in, out, stride, 10);
Peter de Rivaz7e40a552014-10-24 08:48:02 +010084}
85
86void idct4x4_12_sse2(const tran_low_t *in, uint8_t *out, int stride) {
Jingning Han08a453b2015-08-03 14:51:10 -070087 vpx_highbd_idct4x4_16_add_sse2(in, out, stride, 12);
Peter de Rivaz7e40a552014-10-24 08:48:02 +010088}
89#endif // HAVE_SSE2
90#endif // CONFIG_VP9_HIGHBITDEPTH
Deb Mukherjee10783d42014-09-02 16:34:09 -070091
Jingning Han362809d2013-06-18 10:46:33 -070092
Jingning Han30d4c5e2013-11-12 12:47:32 -080093class Trans4x4DCT
Yi Luo267f73a2016-02-29 09:53:42 -080094 : public libvpx_test::TransformTestBase,
James Zernb8b3dd92014-07-16 18:55:40 -070095 public ::testing::TestWithParam<Dct4x4Param> {
Jingning Han30d4c5e2013-11-12 12:47:32 -080096 public:
97 virtual ~Trans4x4DCT() {}
Daniel Kang58156f12012-06-26 18:11:33 -070098
Jingning Han30d4c5e2013-11-12 12:47:32 -080099 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 Mukherjee10783d42014-09-02 16:34:09 -0700105 bit_depth_ = GET_PARAM(3);
106 mask_ = (1 << bit_depth_) - 1;
Yi Luo267f73a2016-02-29 09:53:42 -0800107 num_coeffs_ = GET_PARAM(4);
Jingning Han30d4c5e2013-11-12 12:47:32 -0800108 }
109 virtual void TearDown() { libvpx_test::ClearSystemState(); }
Daniel Kang58156f12012-06-26 18:11:33 -0700110
Jingning Han30d4c5e2013-11-12 12:47:32 -0800111 protected:
Deb Mukherjee10783d42014-09-02 16:34:09 -0700112 void RunFwdTxfm(const int16_t *in, tran_low_t *out, int stride) {
Jingning Han30d4c5e2013-11-12 12:47:32 -0800113 fwd_txfm_(in, out, stride);
114 }
Deb Mukherjee10783d42014-09-02 16:34:09 -0700115 void RunInvTxfm(const tran_low_t *out, uint8_t *dst, int stride) {
Jingning Han30d4c5e2013-11-12 12:47:32 -0800116 inv_txfm_(out, dst, stride);
Daniel Kang58156f12012-06-26 18:11:33 -0700117 }
118
James Zernb8b3dd92014-07-16 18:55:40 -0700119 FdctFunc fwd_txfm_;
120 IdctFunc inv_txfm_;
Jingning Han30d4c5e2013-11-12 12:47:32 -0800121};
Daniel Kang58156f12012-06-26 18:11:33 -0700122
Jingning Han30d4c5e2013-11-12 12:47:32 -0800123TEST_P(Trans4x4DCT, AccuracyCheck) {
Alex Converse9f9f87c2014-05-05 13:50:12 -0700124 RunAccuracyCheck(1);
Jingning Han362809d2013-06-18 10:46:33 -0700125}
Daniel Kang58156f12012-06-26 18:11:33 -0700126
Jingning Han30d4c5e2013-11-12 12:47:32 -0800127TEST_P(Trans4x4DCT, CoeffCheck) {
128 RunCoeffCheck();
Jingning Han362809d2013-06-18 10:46:33 -0700129}
Daniel Kang58156f12012-06-26 18:11:33 -0700130
Jingning Han30d4c5e2013-11-12 12:47:32 -0800131TEST_P(Trans4x4DCT, MemCheck) {
132 RunMemCheck();
133}
134
135TEST_P(Trans4x4DCT, InvAccuracyCheck) {
Alex Converse9f9f87c2014-05-05 13:50:12 -0700136 RunInvAccuracyCheck(1);
Jingning Han30d4c5e2013-11-12 12:47:32 -0800137}
138
139class Trans4x4HT
Yi Luo267f73a2016-02-29 09:53:42 -0800140 : public libvpx_test::TransformTestBase,
James Zernb8b3dd92014-07-16 18:55:40 -0700141 public ::testing::TestWithParam<Ht4x4Param> {
Jingning Han30d4c5e2013-11-12 12:47:32 -0800142 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 Mukherjee10783d42014-09-02 16:34:09 -0700151 bit_depth_ = GET_PARAM(3);
152 mask_ = (1 << bit_depth_) - 1;
Yi Luo267f73a2016-02-29 09:53:42 -0800153 num_coeffs_ = GET_PARAM(4);
Jingning Han30d4c5e2013-11-12 12:47:32 -0800154 }
155 virtual void TearDown() { libvpx_test::ClearSystemState(); }
156
157 protected:
Deb Mukherjee10783d42014-09-02 16:34:09 -0700158 void RunFwdTxfm(const int16_t *in, tran_low_t *out, int stride) {
Jingning Han30d4c5e2013-11-12 12:47:32 -0800159 fwd_txfm_(in, out, stride, tx_type_);
160 }
161
Deb Mukherjee10783d42014-09-02 16:34:09 -0700162 void RunInvTxfm(const tran_low_t *out, uint8_t *dst, int stride) {
Jingning Han30d4c5e2013-11-12 12:47:32 -0800163 inv_txfm_(out, dst, stride, tx_type_);
164 }
165
James Zernb8b3dd92014-07-16 18:55:40 -0700166 FhtFunc fwd_txfm_;
167 IhtFunc inv_txfm_;
Jingning Han30d4c5e2013-11-12 12:47:32 -0800168};
169
170TEST_P(Trans4x4HT, AccuracyCheck) {
Alex Converse9f9f87c2014-05-05 13:50:12 -0700171 RunAccuracyCheck(1);
Jingning Han30d4c5e2013-11-12 12:47:32 -0800172}
173
174TEST_P(Trans4x4HT, CoeffCheck) {
175 RunCoeffCheck();
176}
177
178TEST_P(Trans4x4HT, MemCheck) {
179 RunMemCheck();
180}
181
182TEST_P(Trans4x4HT, InvAccuracyCheck) {
Alex Converse9f9f87c2014-05-05 13:50:12 -0700183 RunInvAccuracyCheck(1);
Jingning Han30d4c5e2013-11-12 12:47:32 -0800184}
185
Alex Converse9f9f87c2014-05-05 13:50:12 -0700186class Trans4x4WHT
Yi Luo267f73a2016-02-29 09:53:42 -0800187 : public libvpx_test::TransformTestBase,
James Zernb8b3dd92014-07-16 18:55:40 -0700188 public ::testing::TestWithParam<Dct4x4Param> {
Alex Converse9f9f87c2014-05-05 13:50:12 -0700189 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 Mukherjee10783d42014-09-02 16:34:09 -0700198 bit_depth_ = GET_PARAM(3);
199 mask_ = (1 << bit_depth_) - 1;
Yi Luo267f73a2016-02-29 09:53:42 -0800200 num_coeffs_ = GET_PARAM(4);
Alex Converse9f9f87c2014-05-05 13:50:12 -0700201 }
202 virtual void TearDown() { libvpx_test::ClearSystemState(); }
203
204 protected:
Deb Mukherjee10783d42014-09-02 16:34:09 -0700205 void RunFwdTxfm(const int16_t *in, tran_low_t *out, int stride) {
Alex Converse9f9f87c2014-05-05 13:50:12 -0700206 fwd_txfm_(in, out, stride);
207 }
Deb Mukherjee10783d42014-09-02 16:34:09 -0700208 void RunInvTxfm(const tran_low_t *out, uint8_t *dst, int stride) {
Alex Converse9f9f87c2014-05-05 13:50:12 -0700209 inv_txfm_(out, dst, stride);
210 }
211
James Zernb8b3dd92014-07-16 18:55:40 -0700212 FdctFunc fwd_txfm_;
213 IdctFunc inv_txfm_;
Alex Converse9f9f87c2014-05-05 13:50:12 -0700214};
215
216TEST_P(Trans4x4WHT, AccuracyCheck) {
217 RunAccuracyCheck(0);
218}
219
220TEST_P(Trans4x4WHT, CoeffCheck) {
221 RunCoeffCheck();
222}
223
224TEST_P(Trans4x4WHT, MemCheck) {
225 RunMemCheck();
226}
227
228TEST_P(Trans4x4WHT, InvAccuracyCheck) {
229 RunInvAccuracyCheck(0);
230}
Jingning Han30d4c5e2013-11-12 12:47:32 -0800231using std::tr1::make_tuple;
232
Deb Mukherjee10783d42014-09-02 16:34:09 -0700233#if CONFIG_VP9_HIGHBITDEPTH
Jingning Han30d4c5e2013-11-12 12:47:32 -0800234INSTANTIATE_TEST_CASE_P(
235 C, Trans4x4DCT,
236 ::testing::Values(
Yi Luo267f73a2016-02-29 09:53:42 -0800237 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 Mukherjee10783d42014-09-02 16:34:09 -0700240#else
241INSTANTIATE_TEST_CASE_P(
242 C, Trans4x4DCT,
243 ::testing::Values(
Yi Luo267f73a2016-02-29 09:53:42 -0800244 make_tuple(&vpx_fdct4x4_c, &vpx_idct4x4_16_add_c, 0, VPX_BITS_8, 16)));
Peter de Rivaz7e40a552014-10-24 08:48:02 +0100245#endif // CONFIG_VP9_HIGHBITDEPTH
Deb Mukherjee10783d42014-09-02 16:34:09 -0700246
247#if CONFIG_VP9_HIGHBITDEPTH
Jingning Han30d4c5e2013-11-12 12:47:32 -0800248INSTANTIATE_TEST_CASE_P(
249 C, Trans4x4HT,
250 ::testing::Values(
Yi Luo267f73a2016-02-29 09:53:42 -0800251 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 Mukherjee10783d42014-09-02 16:34:09 -0700263#else
264INSTANTIATE_TEST_CASE_P(
265 C, Trans4x4HT,
266 ::testing::Values(
Yi Luo267f73a2016-02-29 09:53:42 -0800267 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 Rivaz7e40a552014-10-24 08:48:02 +0100271#endif // CONFIG_VP9_HIGHBITDEPTH
Deb Mukherjee10783d42014-09-02 16:34:09 -0700272
273#if CONFIG_VP9_HIGHBITDEPTH
Alex Converse9f9f87c2014-05-05 13:50:12 -0700274INSTANTIATE_TEST_CASE_P(
275 C, Trans4x4WHT,
276 ::testing::Values(
Yi Luo267f73a2016-02-29 09:53:42 -0800277 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 Mukherjee10783d42014-09-02 16:34:09 -0700280#else
281INSTANTIATE_TEST_CASE_P(
282 C, Trans4x4WHT,
283 ::testing::Values(
Yi Luo267f73a2016-02-29 09:53:42 -0800284 make_tuple(&vp9_fwht4x4_c, &vpx_iwht4x4_16_add_c, 0, VPX_BITS_8, 16)));
Peter de Rivaz7e40a552014-10-24 08:48:02 +0100285#endif // CONFIG_VP9_HIGHBITDEPTH
Jingning Han30d4c5e2013-11-12 12:47:32 -0800286
Deb Mukherjeed50716f2014-10-02 15:43:27 -0700287#if HAVE_NEON_ASM && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
James Zern08c31802014-02-25 23:11:49 -0800288INSTANTIATE_TEST_CASE_P(
289 NEON, Trans4x4DCT,
290 ::testing::Values(
Jingning Han4b5109c2015-07-28 15:57:40 -0700291 make_tuple(&vpx_fdct4x4_c,
Yi Luo267f73a2016-02-29 09:53:42 -0800292 &vpx_idct4x4_16_add_neon, 0, VPX_BITS_8, 16)));
James Yu6b710132014-01-27 18:38:35 +0800293#endif // HAVE_NEON_ASM && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
294
295#if HAVE_NEON && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
James Zern08c31802014-02-25 23:11:49 -0800296INSTANTIATE_TEST_CASE_P(
James Yu6b710132014-01-27 18:38:35 +0800297 NEON, Trans4x4HT,
James Zern08c31802014-02-25 23:11:49 -0800298 ::testing::Values(
Yi Luo267f73a2016-02-29 09:53:42 -0800299 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 Yu6b710132014-01-27 18:38:35 +0800303#endif // HAVE_NEON && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
James Zern08c31802014-02-25 23:11:49 -0800304
Deb Mukherjeed50716f2014-10-02 15:43:27 -0700305#if CONFIG_USE_X86INC && HAVE_MMX && !CONFIG_VP9_HIGHBITDEPTH && \
306 !CONFIG_EMULATE_HARDWARE
Alex Converseb5422fa2014-05-07 12:51:11 -0700307INSTANTIATE_TEST_CASE_P(
308 MMX, Trans4x4WHT,
309 ::testing::Values(
Yi Luo267f73a2016-02-29 09:53:42 -0800310 make_tuple(&vp9_fwht4x4_mmx, &vpx_iwht4x4_16_add_c, 0,
311 VPX_BITS_8, 16)));
Alex Converseb5422fa2014-05-07 12:51:11 -0700312#endif
313
Alex Conversed8426d62015-07-13 11:12:45 -0700314#if CONFIG_USE_X86INC && HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && \
315 !CONFIG_EMULATE_HARDWARE
316INSTANTIATE_TEST_CASE_P(
317 SSE2, Trans4x4WHT,
318 ::testing::Values(
Yi Luo267f73a2016-02-29 09:53:42 -0800319 make_tuple(&vp9_fwht4x4_c, &vpx_iwht4x4_16_add_sse2, 0,
320 VPX_BITS_8, 16)));
Alex Conversed8426d62015-07-13 11:12:45 -0700321#endif
322
Deb Mukherjeed50716f2014-10-02 15:43:27 -0700323#if HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
Jingning Han30d4c5e2013-11-12 12:47:32 -0800324INSTANTIATE_TEST_CASE_P(
325 SSE2, Trans4x4DCT,
326 ::testing::Values(
Jingning Han4b5109c2015-07-28 15:57:40 -0700327 make_tuple(&vpx_fdct4x4_sse2,
Yi Luo267f73a2016-02-29 09:53:42 -0800328 &vpx_idct4x4_16_add_sse2, 0, VPX_BITS_8, 16)));
Jingning Han30d4c5e2013-11-12 12:47:32 -0800329INSTANTIATE_TEST_CASE_P(
330 SSE2, Trans4x4HT,
331 ::testing::Values(
Yi Luo267f73a2016-02-29 09:53:42 -0800332 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 Rivaz7e40a552014-10-24 08:48:02 +0100340#endif // HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
Jingning Han30d4c5e2013-11-12 12:47:32 -0800341
Peter de Rivaz7e40a552014-10-24 08:48:02 +0100342#if HAVE_SSE2 && CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
343INSTANTIATE_TEST_CASE_P(
344 SSE2, Trans4x4DCT,
345 ::testing::Values(
Yi Luo267f73a2016-02-29 09:53:42 -0800346 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 Han08a453b2015-08-03 14:51:10 -0700354 make_tuple(&vpx_fdct4x4_sse2, &vpx_idct4x4_16_add_c, 0,
Yi Luo267f73a2016-02-29 09:53:42 -0800355 VPX_BITS_8, 16)));
Peter de Rivaz7e40a552014-10-24 08:48:02 +0100356
357INSTANTIATE_TEST_CASE_P(
358 SSE2, Trans4x4HT,
359 ::testing::Values(
Yi Luo267f73a2016-02-29 09:53:42 -0800360 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 Rivaz7e40a552014-10-24 08:48:02 +0100364#endif // HAVE_SSE2 && CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
Parag Salasakar54a6f732015-06-02 12:16:28 +0530365
Jingning Han9aaf5232015-07-22 11:53:21 -0700366#if HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
Parag Salasakar54a6f732015-06-02 12:16:28 +0530367INSTANTIATE_TEST_CASE_P(
368 MSA, Trans4x4DCT,
369 ::testing::Values(
Yi Luo267f73a2016-02-29 09:53:42 -0800370 make_tuple(&vpx_fdct4x4_msa, &vpx_idct4x4_16_add_msa, 0,
371 VPX_BITS_8, 16)));
Parag Salasakar54a6f732015-06-02 12:16:28 +0530372INSTANTIATE_TEST_CASE_P(
373 MSA, Trans4x4HT,
374 ::testing::Values(
Yi Luo267f73a2016-02-29 09:53:42 -0800375 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 Salasakar54a6f732015-06-02 12:16:28 +0530383#endif // HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
Daniel Kang58156f12012-06-26 18:11:33 -0700384} // namespace