ref: 55657aac49db87d2848c1022448e3841c621e1b9
parent: aa2effa954782b04db3acc93c1daeaa2c2ba1553
author: Ronald S. Bultje <rbultje@google.com>
date: Thu Jan 10 03:36:42 EST 2013
Fix wrong pitch argument in dct32x32 unit test. Change-Id: Id9474a1686daebfa3d004e21823bf1888ec9e534
--- a/test/dct32x32_test.cc
+++ b/test/dct32x32_test.cc
@@ -180,7 +180,7 @@
for (int j = 0; j < 1024; ++j)
input_extreme_block[j] = 255;
- const int pitch = 32;
+ const int pitch = 64;
vp9_short_fdct32x32_c(input_block, output_block, pitch);
vp9_short_fdct32x32_c(input_extreme_block, output_extreme_block, pitch);
--
⑨