Merge changes I6ef79702,Id332c641,I354b5d22,I84438013
[platform/upstream/libvpx.git] / test / dct16x16_test.cc
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"
16
17 #include "./vp9_rtcd.h"
18 #include "./vpx_dsp_rtcd.h"
19 #include "test/acm_random.h"
20 #include "test/clear_system_state.h"
21 #include "test/register_state_check.h"
22 #include "test/util.h"
23 #include "vp9/common/vp9_entropy.h"
24 #include "vp9/common/vp9_scan.h"
25 #include "vpx/vpx_codec.h"
26 #include "vpx/vpx_integer.h"
27 #include "vpx_ports/mem.h"
28 #include "vpx_ports/msvc.h"  // for round()
29
30 using libvpx_test::ACMRandom;
31
32 namespace {
33
34 const int kNumCoeffs = 256;
35 const double C1 = 0.995184726672197;
36 const double C2 = 0.98078528040323;
37 const double C3 = 0.956940335732209;
38 const double C4 = 0.923879532511287;
39 const double C5 = 0.881921264348355;
40 const double C6 = 0.831469612302545;
41 const double C7 = 0.773010453362737;
42 const double C8 = 0.707106781186548;
43 const double C9 = 0.634393284163646;
44 const double C10 = 0.555570233019602;
45 const double C11 = 0.471396736825998;
46 const double C12 = 0.38268343236509;
47 const double C13 = 0.290284677254462;
48 const double C14 = 0.195090322016128;
49 const double C15 = 0.098017140329561;
50
51 void butterfly_16x16_dct_1d(double input[16], double output[16]) {
52   double step[16];
53   double intermediate[16];
54   double temp1, temp2;
55
56   // step 1
57   step[0] = input[0] + input[15];
58   step[1] = input[1] + input[14];
59   step[2] = input[2] + input[13];
60   step[3] = input[3] + input[12];
61   step[4] = input[4] + input[11];
62   step[5] = input[5] + input[10];
63   step[6] = input[6] + input[9];
64   step[7] = input[7] + input[8];
65   step[8] = input[7] - input[8];
66   step[9] = input[6] - input[9];
67   step[10] = input[5] - input[10];
68   step[11] = input[4] - input[11];
69   step[12] = input[3] - input[12];
70   step[13] = input[2] - input[13];
71   step[14] = input[1] - input[14];
72   step[15] = input[0] - input[15];
73
74   // step 2
75   output[0] = step[0] + step[7];
76   output[1] = step[1] + step[6];
77   output[2] = step[2] + step[5];
78   output[3] = step[3] + step[4];
79   output[4] = step[3] - step[4];
80   output[5] = step[2] - step[5];
81   output[6] = step[1] - step[6];
82   output[7] = step[0] - step[7];
83
84   temp1 = step[8] * C7;
85   temp2 = step[15] * C9;
86   output[8] = temp1 + temp2;
87
88   temp1 = step[9] * C11;
89   temp2 = step[14] * C5;
90   output[9] = temp1 - temp2;
91
92   temp1 = step[10] * C3;
93   temp2 = step[13] * C13;
94   output[10] = temp1 + temp2;
95
96   temp1 = step[11] * C15;
97   temp2 = step[12] * C1;
98   output[11] = temp1 - temp2;
99
100   temp1 = step[11] * C1;
101   temp2 = step[12] * C15;
102   output[12] = temp2 + temp1;
103
104   temp1 = step[10] * C13;
105   temp2 = step[13] * C3;
106   output[13] = temp2 - temp1;
107
108   temp1 = step[9] * C5;
109   temp2 = step[14] * C11;
110   output[14] = temp2 + temp1;
111
112   temp1 = step[8] * C9;
113   temp2 = step[15] * C7;
114   output[15] = temp2 - temp1;
115
116   // step 3
117   step[0] = output[0] + output[3];
118   step[1] = output[1] + output[2];
119   step[2] = output[1] - output[2];
120   step[3] = output[0] - output[3];
121
122   temp1 = output[4] * C14;
123   temp2 = output[7] * C2;
124   step[4] = temp1 + temp2;
125
126   temp1 = output[5] * C10;
127   temp2 = output[6] * C6;
128   step[5] = temp1 + temp2;
129
130   temp1 = output[5] * C6;
131   temp2 = output[6] * C10;
132   step[6] = temp2 - temp1;
133
134   temp1 = output[4] * C2;
135   temp2 = output[7] * C14;
136   step[7] = temp2 - temp1;
137
138   step[8] = output[8] + output[11];
139   step[9] = output[9] + output[10];
140   step[10] = output[9] - output[10];
141   step[11] = output[8] - output[11];
142
143   step[12] = output[12] + output[15];
144   step[13] = output[13] + output[14];
145   step[14] = output[13] - output[14];
146   step[15] = output[12] - output[15];
147
148   // step 4
149   output[0] = (step[0] + step[1]);
150   output[8] = (step[0] - step[1]);
151
152   temp1 = step[2] * C12;
153   temp2 = step[3] * C4;
154   temp1 = temp1 + temp2;
155   output[4] = 2 * (temp1 * C8);
156
157   temp1 = step[2] * C4;
158   temp2 = step[3] * C12;
159   temp1 = temp2 - temp1;
160   output[12] = 2 * (temp1 * C8);
161
162   output[2] = 2 * ((step[4] + step[5]) * C8);
163   output[14] = 2 * ((step[7] - step[6]) * C8);
164
165   temp1 = step[4] - step[5];
166   temp2 = step[6] + step[7];
167   output[6] = (temp1 + temp2);
168   output[10] = (temp1 - temp2);
169
170   intermediate[8] = step[8] + step[14];
171   intermediate[9] = step[9] + step[15];
172
173   temp1 = intermediate[8] * C12;
174   temp2 = intermediate[9] * C4;
175   temp1 = temp1 - temp2;
176   output[3] = 2 * (temp1 * C8);
177
178   temp1 = intermediate[8] * C4;
179   temp2 = intermediate[9] * C12;
180   temp1 = temp2 + temp1;
181   output[13] = 2 * (temp1 * C8);
182
183   output[9] = 2 * ((step[10] + step[11]) * C8);
184
185   intermediate[11] = step[10] - step[11];
186   intermediate[12] = step[12] + step[13];
187   intermediate[13] = step[12] - step[13];
188   intermediate[14] = step[8] - step[14];
189   intermediate[15] = step[9] - step[15];
190
191   output[15] = (intermediate[11] + intermediate[12]);
192   output[1] = -(intermediate[11] - intermediate[12]);
193
194   output[7] = 2 * (intermediate[13] * C8);
195
196   temp1 = intermediate[14] * C12;
197   temp2 = intermediate[15] * C4;
198   temp1 = temp1 - temp2;
199   output[11] = -2 * (temp1 * C8);
200
201   temp1 = intermediate[14] * C4;
202   temp2 = intermediate[15] * C12;
203   temp1 = temp2 + temp1;
204   output[5] = 2 * (temp1 * C8);
205 }
206
207 void reference_16x16_dct_2d(int16_t input[256], double output[256]) {
208   // First transform columns
209   for (int i = 0; i < 16; ++i) {
210     double temp_in[16], temp_out[16];
211     for (int j = 0; j < 16; ++j) temp_in[j] = input[j * 16 + i];
212     butterfly_16x16_dct_1d(temp_in, temp_out);
213     for (int j = 0; j < 16; ++j) output[j * 16 + i] = temp_out[j];
214   }
215   // Then transform rows
216   for (int i = 0; i < 16; ++i) {
217     double temp_in[16], temp_out[16];
218     for (int j = 0; j < 16; ++j) temp_in[j] = output[j + i * 16];
219     butterfly_16x16_dct_1d(temp_in, temp_out);
220     // Scale by some magic number
221     for (int j = 0; j < 16; ++j) output[j + i * 16] = temp_out[j] / 2;
222   }
223 }
224
225 typedef void (*FdctFunc)(const int16_t *in, tran_low_t *out, int stride);
226 typedef void (*IdctFunc)(const tran_low_t *in, uint8_t *out, int stride);
227 typedef void (*FhtFunc)(const int16_t *in, tran_low_t *out, int stride,
228                         int tx_type);
229 typedef void (*IhtFunc)(const tran_low_t *in, uint8_t *out, int stride,
230                         int tx_type);
231
232 typedef std::tr1::tuple<FdctFunc, IdctFunc, int, vpx_bit_depth_t> Dct16x16Param;
233 typedef std::tr1::tuple<FhtFunc, IhtFunc, int, vpx_bit_depth_t> Ht16x16Param;
234 typedef std::tr1::tuple<IdctFunc, IdctFunc, int, vpx_bit_depth_t>
235     Idct16x16Param;
236
237 void fdct16x16_ref(const int16_t *in, tran_low_t *out, int stride,
238                    int /*tx_type*/) {
239   vpx_fdct16x16_c(in, out, stride);
240 }
241
242 void idct16x16_ref(const tran_low_t *in, uint8_t *dest, int stride,
243                    int /*tx_type*/) {
244   vpx_idct16x16_256_add_c(in, dest, stride);
245 }
246
247 void fht16x16_ref(const int16_t *in, tran_low_t *out, int stride, int tx_type) {
248   vp9_fht16x16_c(in, out, stride, tx_type);
249 }
250
251 void iht16x16_ref(const tran_low_t *in, uint8_t *dest, int stride,
252                   int tx_type) {
253   vp9_iht16x16_256_add_c(in, dest, stride, tx_type);
254 }
255
256 #if CONFIG_VP9_HIGHBITDEPTH
257 void idct16x16_10(const tran_low_t *in, uint8_t *out, int stride) {
258   vpx_highbd_idct16x16_256_add_c(in, out, stride, 10);
259 }
260
261 void idct16x16_12(const tran_low_t *in, uint8_t *out, int stride) {
262   vpx_highbd_idct16x16_256_add_c(in, out, stride, 12);
263 }
264
265 void idct16x16_10_ref(const tran_low_t *in, uint8_t *out, int stride,
266                       int /*tx_type*/) {
267   idct16x16_10(in, out, stride);
268 }
269
270 void idct16x16_12_ref(const tran_low_t *in, uint8_t *out, int stride,
271                       int /*tx_type*/) {
272   idct16x16_12(in, out, stride);
273 }
274
275 void iht16x16_10(const tran_low_t *in, uint8_t *out, int stride, int tx_type) {
276   vp9_highbd_iht16x16_256_add_c(in, out, stride, tx_type, 10);
277 }
278
279 void iht16x16_12(const tran_low_t *in, uint8_t *out, int stride, int tx_type) {
280   vp9_highbd_iht16x16_256_add_c(in, out, stride, tx_type, 12);
281 }
282
283 #if HAVE_SSE2
284 void idct16x16_10_add_10_c(const tran_low_t *in, uint8_t *out, int stride) {
285   vpx_highbd_idct16x16_10_add_c(in, out, stride, 10);
286 }
287
288 void idct16x16_10_add_12_c(const tran_low_t *in, uint8_t *out, int stride) {
289   vpx_highbd_idct16x16_10_add_c(in, out, stride, 12);
290 }
291
292 void idct16x16_256_add_10_sse2(const tran_low_t *in, uint8_t *out, int stride) {
293   vpx_highbd_idct16x16_256_add_sse2(in, out, stride, 10);
294 }
295
296 void idct16x16_256_add_12_sse2(const tran_low_t *in, uint8_t *out, int stride) {
297   vpx_highbd_idct16x16_256_add_sse2(in, out, stride, 12);
298 }
299
300 void idct16x16_10_add_10_sse2(const tran_low_t *in, uint8_t *out, int stride) {
301   vpx_highbd_idct16x16_10_add_sse2(in, out, stride, 10);
302 }
303
304 void idct16x16_10_add_12_sse2(const tran_low_t *in, uint8_t *out, int stride) {
305   vpx_highbd_idct16x16_10_add_sse2(in, out, stride, 12);
306 }
307 #endif  // HAVE_SSE2
308 #endif  // CONFIG_VP9_HIGHBITDEPTH
309
310 class Trans16x16TestBase {
311  public:
312   virtual ~Trans16x16TestBase() {}
313
314  protected:
315   virtual void RunFwdTxfm(int16_t *in, tran_low_t *out, int stride) = 0;
316
317   virtual void RunInvTxfm(tran_low_t *out, uint8_t *dst, int stride) = 0;
318
319   void RunAccuracyCheck() {
320     ACMRandom rnd(ACMRandom::DeterministicSeed());
321     uint32_t max_error = 0;
322     int64_t total_error = 0;
323     const int count_test_block = 10000;
324     for (int i = 0; i < count_test_block; ++i) {
325       DECLARE_ALIGNED(16, int16_t, test_input_block[kNumCoeffs]);
326       DECLARE_ALIGNED(16, tran_low_t, test_temp_block[kNumCoeffs]);
327       DECLARE_ALIGNED(16, uint8_t, dst[kNumCoeffs]);
328       DECLARE_ALIGNED(16, uint8_t, src[kNumCoeffs]);
329 #if CONFIG_VP9_HIGHBITDEPTH
330       DECLARE_ALIGNED(16, uint16_t, dst16[kNumCoeffs]);
331       DECLARE_ALIGNED(16, uint16_t, src16[kNumCoeffs]);
332 #endif
333
334       // Initialize a test block with input range [-mask_, mask_].
335       for (int j = 0; j < kNumCoeffs; ++j) {
336         if (bit_depth_ == VPX_BITS_8) {
337           src[j] = rnd.Rand8();
338           dst[j] = rnd.Rand8();
339           test_input_block[j] = src[j] - dst[j];
340 #if CONFIG_VP9_HIGHBITDEPTH
341         } else {
342           src16[j] = rnd.Rand16() & mask_;
343           dst16[j] = rnd.Rand16() & mask_;
344           test_input_block[j] = src16[j] - dst16[j];
345 #endif
346         }
347       }
348
349       ASM_REGISTER_STATE_CHECK(
350           RunFwdTxfm(test_input_block, test_temp_block, pitch_));
351       if (bit_depth_ == VPX_BITS_8) {
352         ASM_REGISTER_STATE_CHECK(RunInvTxfm(test_temp_block, dst, pitch_));
353 #if CONFIG_VP9_HIGHBITDEPTH
354       } else {
355         ASM_REGISTER_STATE_CHECK(
356             RunInvTxfm(test_temp_block, CONVERT_TO_BYTEPTR(dst16), pitch_));
357 #endif
358       }
359
360       for (int j = 0; j < kNumCoeffs; ++j) {
361 #if CONFIG_VP9_HIGHBITDEPTH
362         const int32_t diff =
363             bit_depth_ == VPX_BITS_8 ? dst[j] - src[j] : dst16[j] - src16[j];
364 #else
365         const int32_t diff = dst[j] - src[j];
366 #endif
367         const uint32_t error = diff * diff;
368         if (max_error < error) max_error = error;
369         total_error += error;
370       }
371     }
372
373     EXPECT_GE(1u << 2 * (bit_depth_ - 8), max_error)
374         << "Error: 16x16 FHT/IHT has an individual round trip error > 1";
375
376     EXPECT_GE(count_test_block << 2 * (bit_depth_ - 8), total_error)
377         << "Error: 16x16 FHT/IHT has average round trip error > 1 per block";
378   }
379
380   void RunCoeffCheck() {
381     ACMRandom rnd(ACMRandom::DeterministicSeed());
382     const int count_test_block = 1000;
383     DECLARE_ALIGNED(16, int16_t, input_block[kNumCoeffs]);
384     DECLARE_ALIGNED(16, tran_low_t, output_ref_block[kNumCoeffs]);
385     DECLARE_ALIGNED(16, tran_low_t, output_block[kNumCoeffs]);
386
387     for (int i = 0; i < count_test_block; ++i) {
388       // Initialize a test block with input range [-mask_, mask_].
389       for (int j = 0; j < kNumCoeffs; ++j)
390         input_block[j] = (rnd.Rand16() & mask_) - (rnd.Rand16() & mask_);
391
392       fwd_txfm_ref(input_block, output_ref_block, pitch_, tx_type_);
393       ASM_REGISTER_STATE_CHECK(RunFwdTxfm(input_block, output_block, pitch_));
394
395       // The minimum quant value is 4.
396       for (int j = 0; j < kNumCoeffs; ++j)
397         EXPECT_EQ(output_block[j], output_ref_block[j]);
398     }
399   }
400
401   void RunMemCheck() {
402     ACMRandom rnd(ACMRandom::DeterministicSeed());
403     const int count_test_block = 1000;
404     DECLARE_ALIGNED(16, int16_t, input_extreme_block[kNumCoeffs]);
405     DECLARE_ALIGNED(16, tran_low_t, output_ref_block[kNumCoeffs]);
406     DECLARE_ALIGNED(16, tran_low_t, output_block[kNumCoeffs]);
407
408     for (int i = 0; i < count_test_block; ++i) {
409       // Initialize a test block with input range [-mask_, mask_].
410       for (int j = 0; j < kNumCoeffs; ++j) {
411         input_extreme_block[j] = rnd.Rand8() % 2 ? mask_ : -mask_;
412       }
413       if (i == 0) {
414         for (int j = 0; j < kNumCoeffs; ++j) input_extreme_block[j] = mask_;
415       } else if (i == 1) {
416         for (int j = 0; j < kNumCoeffs; ++j) input_extreme_block[j] = -mask_;
417       }
418
419       fwd_txfm_ref(input_extreme_block, output_ref_block, pitch_, tx_type_);
420       ASM_REGISTER_STATE_CHECK(
421           RunFwdTxfm(input_extreme_block, output_block, pitch_));
422
423       // The minimum quant value is 4.
424       for (int j = 0; j < kNumCoeffs; ++j) {
425         EXPECT_EQ(output_block[j], output_ref_block[j]);
426         EXPECT_GE(4 * DCT_MAX_VALUE << (bit_depth_ - 8), abs(output_block[j]))
427             << "Error: 16x16 FDCT has coefficient larger than 4*DCT_MAX_VALUE";
428       }
429     }
430   }
431
432   void RunQuantCheck(int dc_thred, int ac_thred) {
433     ACMRandom rnd(ACMRandom::DeterministicSeed());
434     const int count_test_block = 100000;
435     DECLARE_ALIGNED(16, int16_t, input_extreme_block[kNumCoeffs]);
436     DECLARE_ALIGNED(16, tran_low_t, output_ref_block[kNumCoeffs]);
437
438     DECLARE_ALIGNED(16, uint8_t, dst[kNumCoeffs]);
439     DECLARE_ALIGNED(16, uint8_t, ref[kNumCoeffs]);
440 #if CONFIG_VP9_HIGHBITDEPTH
441     DECLARE_ALIGNED(16, uint16_t, dst16[kNumCoeffs]);
442     DECLARE_ALIGNED(16, uint16_t, ref16[kNumCoeffs]);
443 #endif
444
445     for (int i = 0; i < count_test_block; ++i) {
446       // Initialize a test block with input range [-mask_, mask_].
447       for (int j = 0; j < kNumCoeffs; ++j) {
448         input_extreme_block[j] = rnd.Rand8() % 2 ? mask_ : -mask_;
449       }
450       if (i == 0)
451         for (int j = 0; j < kNumCoeffs; ++j) input_extreme_block[j] = mask_;
452       if (i == 1)
453         for (int j = 0; j < kNumCoeffs; ++j) input_extreme_block[j] = -mask_;
454
455       fwd_txfm_ref(input_extreme_block, output_ref_block, pitch_, tx_type_);
456
457       // clear reconstructed pixel buffers
458       memset(dst, 0, kNumCoeffs * sizeof(uint8_t));
459       memset(ref, 0, kNumCoeffs * sizeof(uint8_t));
460 #if CONFIG_VP9_HIGHBITDEPTH
461       memset(dst16, 0, kNumCoeffs * sizeof(uint16_t));
462       memset(ref16, 0, kNumCoeffs * sizeof(uint16_t));
463 #endif
464
465       // quantization with maximum allowed step sizes
466       output_ref_block[0] = (output_ref_block[0] / dc_thred) * dc_thred;
467       for (int j = 1; j < kNumCoeffs; ++j)
468         output_ref_block[j] = (output_ref_block[j] / ac_thred) * ac_thred;
469       if (bit_depth_ == VPX_BITS_8) {
470         inv_txfm_ref(output_ref_block, ref, pitch_, tx_type_);
471         ASM_REGISTER_STATE_CHECK(RunInvTxfm(output_ref_block, dst, pitch_));
472 #if CONFIG_VP9_HIGHBITDEPTH
473       } else {
474         inv_txfm_ref(output_ref_block, CONVERT_TO_BYTEPTR(ref16), pitch_,
475                      tx_type_);
476         ASM_REGISTER_STATE_CHECK(
477             RunInvTxfm(output_ref_block, CONVERT_TO_BYTEPTR(dst16), pitch_));
478 #endif
479       }
480       if (bit_depth_ == VPX_BITS_8) {
481         for (int j = 0; j < kNumCoeffs; ++j) EXPECT_EQ(ref[j], dst[j]);
482 #if CONFIG_VP9_HIGHBITDEPTH
483       } else {
484         for (int j = 0; j < kNumCoeffs; ++j) EXPECT_EQ(ref16[j], dst16[j]);
485 #endif
486       }
487     }
488   }
489
490   void RunInvAccuracyCheck() {
491     ACMRandom rnd(ACMRandom::DeterministicSeed());
492     const int count_test_block = 1000;
493     DECLARE_ALIGNED(16, int16_t, in[kNumCoeffs]);
494     DECLARE_ALIGNED(16, tran_low_t, coeff[kNumCoeffs]);
495     DECLARE_ALIGNED(16, uint8_t, dst[kNumCoeffs]);
496     DECLARE_ALIGNED(16, uint8_t, src[kNumCoeffs]);
497 #if CONFIG_VP9_HIGHBITDEPTH
498     DECLARE_ALIGNED(16, uint16_t, dst16[kNumCoeffs]);
499     DECLARE_ALIGNED(16, uint16_t, src16[kNumCoeffs]);
500 #endif  // CONFIG_VP9_HIGHBITDEPTH
501
502     for (int i = 0; i < count_test_block; ++i) {
503       double out_r[kNumCoeffs];
504
505       // Initialize a test block with input range [-255, 255].
506       for (int j = 0; j < kNumCoeffs; ++j) {
507         if (bit_depth_ == VPX_BITS_8) {
508           src[j] = rnd.Rand8();
509           dst[j] = rnd.Rand8();
510           in[j] = src[j] - dst[j];
511 #if CONFIG_VP9_HIGHBITDEPTH
512         } else {
513           src16[j] = rnd.Rand16() & mask_;
514           dst16[j] = rnd.Rand16() & mask_;
515           in[j] = src16[j] - dst16[j];
516 #endif  // CONFIG_VP9_HIGHBITDEPTH
517         }
518       }
519
520       reference_16x16_dct_2d(in, out_r);
521       for (int j = 0; j < kNumCoeffs; ++j)
522         coeff[j] = static_cast<tran_low_t>(round(out_r[j]));
523
524       if (bit_depth_ == VPX_BITS_8) {
525         ASM_REGISTER_STATE_CHECK(RunInvTxfm(coeff, dst, 16));
526 #if CONFIG_VP9_HIGHBITDEPTH
527       } else {
528         ASM_REGISTER_STATE_CHECK(
529             RunInvTxfm(coeff, CONVERT_TO_BYTEPTR(dst16), 16));
530 #endif  // CONFIG_VP9_HIGHBITDEPTH
531       }
532
533       for (int j = 0; j < kNumCoeffs; ++j) {
534 #if CONFIG_VP9_HIGHBITDEPTH
535         const uint32_t diff =
536             bit_depth_ == VPX_BITS_8 ? dst[j] - src[j] : dst16[j] - src16[j];
537 #else
538         const uint32_t diff = dst[j] - src[j];
539 #endif  // CONFIG_VP9_HIGHBITDEPTH
540         const uint32_t error = diff * diff;
541         EXPECT_GE(1u, error) << "Error: 16x16 IDCT has error " << error
542                              << " at index " << j;
543       }
544     }
545   }
546
547   void CompareInvReference(IdctFunc ref_txfm, int thresh) {
548     ACMRandom rnd(ACMRandom::DeterministicSeed());
549     const int count_test_block = 10000;
550     const int eob = 10;
551     const int16_t *scan = vp9_default_scan_orders[TX_16X16].scan;
552     DECLARE_ALIGNED(16, tran_low_t, coeff[kNumCoeffs]);
553     DECLARE_ALIGNED(16, uint8_t, dst[kNumCoeffs]);
554     DECLARE_ALIGNED(16, uint8_t, ref[kNumCoeffs]);
555 #if CONFIG_VP9_HIGHBITDEPTH
556     DECLARE_ALIGNED(16, uint16_t, dst16[kNumCoeffs]);
557     DECLARE_ALIGNED(16, uint16_t, ref16[kNumCoeffs]);
558 #endif  // CONFIG_VP9_HIGHBITDEPTH
559
560     for (int i = 0; i < count_test_block; ++i) {
561       for (int j = 0; j < kNumCoeffs; ++j) {
562         if (j < eob) {
563           // Random values less than the threshold, either positive or negative
564           coeff[scan[j]] = rnd(thresh) * (1 - 2 * (i % 2));
565         } else {
566           coeff[scan[j]] = 0;
567         }
568         if (bit_depth_ == VPX_BITS_8) {
569           dst[j] = 0;
570           ref[j] = 0;
571 #if CONFIG_VP9_HIGHBITDEPTH
572         } else {
573           dst16[j] = 0;
574           ref16[j] = 0;
575 #endif  // CONFIG_VP9_HIGHBITDEPTH
576         }
577       }
578       if (bit_depth_ == VPX_BITS_8) {
579         ref_txfm(coeff, ref, pitch_);
580         ASM_REGISTER_STATE_CHECK(RunInvTxfm(coeff, dst, pitch_));
581       } else {
582 #if CONFIG_VP9_HIGHBITDEPTH
583         ref_txfm(coeff, CONVERT_TO_BYTEPTR(ref16), pitch_);
584         ASM_REGISTER_STATE_CHECK(
585             RunInvTxfm(coeff, CONVERT_TO_BYTEPTR(dst16), pitch_));
586 #endif  // CONFIG_VP9_HIGHBITDEPTH
587       }
588
589       for (int j = 0; j < kNumCoeffs; ++j) {
590 #if CONFIG_VP9_HIGHBITDEPTH
591         const uint32_t diff =
592             bit_depth_ == VPX_BITS_8 ? dst[j] - ref[j] : dst16[j] - ref16[j];
593 #else
594         const uint32_t diff = dst[j] - ref[j];
595 #endif  // CONFIG_VP9_HIGHBITDEPTH
596         const uint32_t error = diff * diff;
597         EXPECT_EQ(0u, error) << "Error: 16x16 IDCT Comparison has error "
598                              << error << " at index " << j;
599       }
600     }
601   }
602
603   int pitch_;
604   int tx_type_;
605   vpx_bit_depth_t bit_depth_;
606   int mask_;
607   FhtFunc fwd_txfm_ref;
608   IhtFunc inv_txfm_ref;
609 };
610
611 class Trans16x16DCT : public Trans16x16TestBase,
612                       public ::testing::TestWithParam<Dct16x16Param> {
613  public:
614   virtual ~Trans16x16DCT() {}
615
616   virtual void SetUp() {
617     fwd_txfm_ = GET_PARAM(0);
618     inv_txfm_ = GET_PARAM(1);
619     tx_type_ = GET_PARAM(2);
620     bit_depth_ = GET_PARAM(3);
621     pitch_ = 16;
622     fwd_txfm_ref = fdct16x16_ref;
623     inv_txfm_ref = idct16x16_ref;
624     mask_ = (1 << bit_depth_) - 1;
625 #if CONFIG_VP9_HIGHBITDEPTH
626     switch (bit_depth_) {
627       case VPX_BITS_10: inv_txfm_ref = idct16x16_10_ref; break;
628       case VPX_BITS_12: inv_txfm_ref = idct16x16_12_ref; break;
629       default: inv_txfm_ref = idct16x16_ref; break;
630     }
631 #else
632     inv_txfm_ref = idct16x16_ref;
633 #endif
634   }
635   virtual void TearDown() { libvpx_test::ClearSystemState(); }
636
637  protected:
638   void RunFwdTxfm(int16_t *in, tran_low_t *out, int stride) {
639     fwd_txfm_(in, out, stride);
640   }
641   void RunInvTxfm(tran_low_t *out, uint8_t *dst, int stride) {
642     inv_txfm_(out, dst, stride);
643   }
644
645   FdctFunc fwd_txfm_;
646   IdctFunc inv_txfm_;
647 };
648
649 TEST_P(Trans16x16DCT, AccuracyCheck) { RunAccuracyCheck(); }
650
651 TEST_P(Trans16x16DCT, CoeffCheck) { RunCoeffCheck(); }
652
653 TEST_P(Trans16x16DCT, MemCheck) { RunMemCheck(); }
654
655 TEST_P(Trans16x16DCT, QuantCheck) {
656   // Use maximally allowed quantization step sizes for DC and AC
657   // coefficients respectively.
658   RunQuantCheck(1336, 1828);
659 }
660
661 TEST_P(Trans16x16DCT, InvAccuracyCheck) { RunInvAccuracyCheck(); }
662
663 class Trans16x16HT : public Trans16x16TestBase,
664                      public ::testing::TestWithParam<Ht16x16Param> {
665  public:
666   virtual ~Trans16x16HT() {}
667
668   virtual void SetUp() {
669     fwd_txfm_ = GET_PARAM(0);
670     inv_txfm_ = GET_PARAM(1);
671     tx_type_ = GET_PARAM(2);
672     bit_depth_ = GET_PARAM(3);
673     pitch_ = 16;
674     fwd_txfm_ref = fht16x16_ref;
675     inv_txfm_ref = iht16x16_ref;
676     mask_ = (1 << bit_depth_) - 1;
677 #if CONFIG_VP9_HIGHBITDEPTH
678     switch (bit_depth_) {
679       case VPX_BITS_10: inv_txfm_ref = iht16x16_10; break;
680       case VPX_BITS_12: inv_txfm_ref = iht16x16_12; break;
681       default: inv_txfm_ref = iht16x16_ref; break;
682     }
683 #else
684     inv_txfm_ref = iht16x16_ref;
685 #endif
686   }
687   virtual void TearDown() { libvpx_test::ClearSystemState(); }
688
689  protected:
690   void RunFwdTxfm(int16_t *in, tran_low_t *out, int stride) {
691     fwd_txfm_(in, out, stride, tx_type_);
692   }
693   void RunInvTxfm(tran_low_t *out, uint8_t *dst, int stride) {
694     inv_txfm_(out, dst, stride, tx_type_);
695   }
696
697   FhtFunc fwd_txfm_;
698   IhtFunc inv_txfm_;
699 };
700
701 TEST_P(Trans16x16HT, AccuracyCheck) { RunAccuracyCheck(); }
702
703 TEST_P(Trans16x16HT, CoeffCheck) { RunCoeffCheck(); }
704
705 TEST_P(Trans16x16HT, MemCheck) { RunMemCheck(); }
706
707 TEST_P(Trans16x16HT, QuantCheck) {
708   // The encoder skips any non-DC intra prediction modes,
709   // when the quantization step size goes beyond 988.
710   RunQuantCheck(429, 729);
711 }
712
713 class InvTrans16x16DCT : public Trans16x16TestBase,
714                          public ::testing::TestWithParam<Idct16x16Param> {
715  public:
716   virtual ~InvTrans16x16DCT() {}
717
718   virtual void SetUp() {
719     ref_txfm_ = GET_PARAM(0);
720     inv_txfm_ = GET_PARAM(1);
721     thresh_ = GET_PARAM(2);
722     bit_depth_ = GET_PARAM(3);
723     pitch_ = 16;
724     mask_ = (1 << bit_depth_) - 1;
725   }
726   virtual void TearDown() { libvpx_test::ClearSystemState(); }
727
728  protected:
729   void RunFwdTxfm(int16_t * /*in*/, tran_low_t * /*out*/, int /*stride*/) {}
730   void RunInvTxfm(tran_low_t *out, uint8_t *dst, int stride) {
731     inv_txfm_(out, dst, stride);
732   }
733
734   IdctFunc ref_txfm_;
735   IdctFunc inv_txfm_;
736   int thresh_;
737 };
738
739 TEST_P(InvTrans16x16DCT, CompareReference) {
740   CompareInvReference(ref_txfm_, thresh_);
741 }
742
743 class PartialTrans16x16Test : public ::testing::TestWithParam<
744                                   std::tr1::tuple<FdctFunc, vpx_bit_depth_t> > {
745  public:
746   virtual ~PartialTrans16x16Test() {}
747   virtual void SetUp() {
748     fwd_txfm_ = GET_PARAM(0);
749     bit_depth_ = GET_PARAM(1);
750   }
751
752   virtual void TearDown() { libvpx_test::ClearSystemState(); }
753
754  protected:
755   vpx_bit_depth_t bit_depth_;
756   FdctFunc fwd_txfm_;
757 };
758
759 TEST_P(PartialTrans16x16Test, Extremes) {
760 #if CONFIG_VP9_HIGHBITDEPTH
761   const int16_t maxval =
762       static_cast<int16_t>(clip_pixel_highbd(1 << 30, bit_depth_));
763 #else
764   const int16_t maxval = 255;
765 #endif
766   const int minval = -maxval;
767   DECLARE_ALIGNED(16, int16_t, input[kNumCoeffs]);
768   DECLARE_ALIGNED(16, tran_low_t, output[kNumCoeffs]);
769
770   for (int i = 0; i < kNumCoeffs; ++i) input[i] = maxval;
771   output[0] = 0;
772   ASM_REGISTER_STATE_CHECK(fwd_txfm_(input, output, 16));
773   EXPECT_EQ((maxval * kNumCoeffs) >> 1, output[0]);
774
775   for (int i = 0; i < kNumCoeffs; ++i) input[i] = minval;
776   output[0] = 0;
777   ASM_REGISTER_STATE_CHECK(fwd_txfm_(input, output, 16));
778   EXPECT_EQ((minval * kNumCoeffs) >> 1, output[0]);
779 }
780
781 TEST_P(PartialTrans16x16Test, Random) {
782 #if CONFIG_VP9_HIGHBITDEPTH
783   const int16_t maxval =
784       static_cast<int16_t>(clip_pixel_highbd(1 << 30, bit_depth_));
785 #else
786   const int16_t maxval = 255;
787 #endif
788   DECLARE_ALIGNED(16, int16_t, input[kNumCoeffs]);
789   DECLARE_ALIGNED(16, tran_low_t, output[kNumCoeffs]);
790   ACMRandom rnd(ACMRandom::DeterministicSeed());
791
792   int sum = 0;
793   for (int i = 0; i < kNumCoeffs; ++i) {
794     const int val = (i & 1) ? -rnd(maxval + 1) : rnd(maxval + 1);
795     input[i] = val;
796     sum += val;
797   }
798   output[0] = 0;
799   ASM_REGISTER_STATE_CHECK(fwd_txfm_(input, output, 16));
800   EXPECT_EQ(sum >> 1, output[0]);
801 }
802
803 using std::tr1::make_tuple;
804
805 #if CONFIG_VP9_HIGHBITDEPTH
806 INSTANTIATE_TEST_CASE_P(
807     C, Trans16x16DCT,
808     ::testing::Values(
809         make_tuple(&vpx_highbd_fdct16x16_c, &idct16x16_10, 0, VPX_BITS_10),
810         make_tuple(&vpx_highbd_fdct16x16_c, &idct16x16_12, 0, VPX_BITS_12),
811         make_tuple(&vpx_fdct16x16_c, &vpx_idct16x16_256_add_c, 0, VPX_BITS_8)));
812 #else
813 INSTANTIATE_TEST_CASE_P(C, Trans16x16DCT,
814                         ::testing::Values(make_tuple(&vpx_fdct16x16_c,
815                                                      &vpx_idct16x16_256_add_c,
816                                                      0, VPX_BITS_8)));
817 #endif  // CONFIG_VP9_HIGHBITDEPTH
818
819 #if CONFIG_VP9_HIGHBITDEPTH
820 INSTANTIATE_TEST_CASE_P(
821     C, Trans16x16HT,
822     ::testing::Values(
823         make_tuple(&vp9_highbd_fht16x16_c, &iht16x16_10, 0, VPX_BITS_10),
824         make_tuple(&vp9_highbd_fht16x16_c, &iht16x16_10, 1, VPX_BITS_10),
825         make_tuple(&vp9_highbd_fht16x16_c, &iht16x16_10, 2, VPX_BITS_10),
826         make_tuple(&vp9_highbd_fht16x16_c, &iht16x16_10, 3, VPX_BITS_10),
827         make_tuple(&vp9_highbd_fht16x16_c, &iht16x16_12, 0, VPX_BITS_12),
828         make_tuple(&vp9_highbd_fht16x16_c, &iht16x16_12, 1, VPX_BITS_12),
829         make_tuple(&vp9_highbd_fht16x16_c, &iht16x16_12, 2, VPX_BITS_12),
830         make_tuple(&vp9_highbd_fht16x16_c, &iht16x16_12, 3, VPX_BITS_12),
831         make_tuple(&vp9_fht16x16_c, &vp9_iht16x16_256_add_c, 0, VPX_BITS_8),
832         make_tuple(&vp9_fht16x16_c, &vp9_iht16x16_256_add_c, 1, VPX_BITS_8),
833         make_tuple(&vp9_fht16x16_c, &vp9_iht16x16_256_add_c, 2, VPX_BITS_8),
834         make_tuple(&vp9_fht16x16_c, &vp9_iht16x16_256_add_c, 3, VPX_BITS_8)));
835 INSTANTIATE_TEST_CASE_P(
836     C, PartialTrans16x16Test,
837     ::testing::Values(make_tuple(&vpx_highbd_fdct16x16_1_c, VPX_BITS_8),
838                       make_tuple(&vpx_highbd_fdct16x16_1_c, VPX_BITS_10),
839                       make_tuple(&vpx_highbd_fdct16x16_1_c, VPX_BITS_12)));
840 #else
841 INSTANTIATE_TEST_CASE_P(
842     C, Trans16x16HT,
843     ::testing::Values(
844         make_tuple(&vp9_fht16x16_c, &vp9_iht16x16_256_add_c, 0, VPX_BITS_8),
845         make_tuple(&vp9_fht16x16_c, &vp9_iht16x16_256_add_c, 1, VPX_BITS_8),
846         make_tuple(&vp9_fht16x16_c, &vp9_iht16x16_256_add_c, 2, VPX_BITS_8),
847         make_tuple(&vp9_fht16x16_c, &vp9_iht16x16_256_add_c, 3, VPX_BITS_8)));
848 INSTANTIATE_TEST_CASE_P(C, PartialTrans16x16Test,
849                         ::testing::Values(make_tuple(&vpx_fdct16x16_1_c,
850                                                      VPX_BITS_8)));
851 #endif  // CONFIG_VP9_HIGHBITDEPTH
852
853 #if HAVE_NEON && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
854 INSTANTIATE_TEST_CASE_P(
855     NEON, Trans16x16DCT,
856     ::testing::Values(make_tuple(&vpx_fdct16x16_c, &vpx_idct16x16_256_add_neon,
857                                  0, VPX_BITS_8)));
858 #endif
859
860 #if HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
861 INSTANTIATE_TEST_CASE_P(
862     SSE2, Trans16x16DCT,
863     ::testing::Values(make_tuple(&vpx_fdct16x16_sse2,
864                                  &vpx_idct16x16_256_add_sse2, 0, VPX_BITS_8)));
865 INSTANTIATE_TEST_CASE_P(
866     SSE2, Trans16x16HT,
867     ::testing::Values(make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_sse2,
868                                  0, VPX_BITS_8),
869                       make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_sse2,
870                                  1, VPX_BITS_8),
871                       make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_sse2,
872                                  2, VPX_BITS_8),
873                       make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_sse2,
874                                  3, VPX_BITS_8)));
875 INSTANTIATE_TEST_CASE_P(SSE2, PartialTrans16x16Test,
876                         ::testing::Values(make_tuple(&vpx_fdct16x16_1_sse2,
877                                                      VPX_BITS_8)));
878 #endif  // HAVE_SSE2 && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
879
880 #if HAVE_SSE2 && CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
881 INSTANTIATE_TEST_CASE_P(
882     SSE2, Trans16x16DCT,
883     ::testing::Values(
884         make_tuple(&vpx_highbd_fdct16x16_sse2, &idct16x16_10, 0, VPX_BITS_10),
885         make_tuple(&vpx_highbd_fdct16x16_c, &idct16x16_256_add_10_sse2, 0,
886                    VPX_BITS_10),
887         make_tuple(&vpx_highbd_fdct16x16_sse2, &idct16x16_12, 0, VPX_BITS_12),
888         make_tuple(&vpx_highbd_fdct16x16_c, &idct16x16_256_add_12_sse2, 0,
889                    VPX_BITS_12),
890         make_tuple(&vpx_fdct16x16_sse2, &vpx_idct16x16_256_add_c, 0,
891                    VPX_BITS_8)));
892 INSTANTIATE_TEST_CASE_P(
893     SSE2, Trans16x16HT,
894     ::testing::Values(
895         make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_c, 0, VPX_BITS_8),
896         make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_c, 1, VPX_BITS_8),
897         make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_c, 2, VPX_BITS_8),
898         make_tuple(&vp9_fht16x16_sse2, &vp9_iht16x16_256_add_c, 3,
899                    VPX_BITS_8)));
900 // Optimizations take effect at a threshold of 3155, so we use a value close to
901 // that to test both branches.
902 INSTANTIATE_TEST_CASE_P(
903     SSE2, InvTrans16x16DCT,
904     ::testing::Values(make_tuple(&idct16x16_10_add_10_c,
905                                  &idct16x16_10_add_10_sse2, 3167, VPX_BITS_10),
906                       make_tuple(&idct16x16_10, &idct16x16_256_add_10_sse2,
907                                  3167, VPX_BITS_10),
908                       make_tuple(&idct16x16_10_add_12_c,
909                                  &idct16x16_10_add_12_sse2, 3167, VPX_BITS_12),
910                       make_tuple(&idct16x16_12, &idct16x16_256_add_12_sse2,
911                                  3167, VPX_BITS_12)));
912 INSTANTIATE_TEST_CASE_P(SSE2, PartialTrans16x16Test,
913                         ::testing::Values(make_tuple(&vpx_fdct16x16_1_sse2,
914                                                      VPX_BITS_8)));
915 #endif  // HAVE_SSE2 && CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
916
917 #if HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
918 INSTANTIATE_TEST_CASE_P(MSA, Trans16x16DCT,
919                         ::testing::Values(make_tuple(&vpx_fdct16x16_msa,
920                                                      &vpx_idct16x16_256_add_msa,
921                                                      0, VPX_BITS_8)));
922 INSTANTIATE_TEST_CASE_P(
923     MSA, Trans16x16HT,
924     ::testing::Values(
925         make_tuple(&vp9_fht16x16_msa, &vp9_iht16x16_256_add_msa, 0, VPX_BITS_8),
926         make_tuple(&vp9_fht16x16_msa, &vp9_iht16x16_256_add_msa, 1, VPX_BITS_8),
927         make_tuple(&vp9_fht16x16_msa, &vp9_iht16x16_256_add_msa, 2, VPX_BITS_8),
928         make_tuple(&vp9_fht16x16_msa, &vp9_iht16x16_256_add_msa, 3,
929                    VPX_BITS_8)));
930 INSTANTIATE_TEST_CASE_P(MSA, PartialTrans16x16Test,
931                         ::testing::Values(make_tuple(&vpx_fdct16x16_1_msa,
932                                                      VPX_BITS_8)));
933 #endif  // HAVE_MSA && !CONFIG_VP9_HIGHBITDEPTH && !CONFIG_EMULATE_HARDWARE
934 }  // namespace