From 55657aac49db87d2848c1022448e3841c621e1b9 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Thu, 10 Jan 2013 08:36:42 -0800 Subject: [PATCH] Fix wrong pitch argument in dct32x32 unit test. Change-Id: Id9474a1686daebfa3d004e21823bf1888ec9e534 --- test/dct32x32_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/dct32x32_test.cc b/test/dct32x32_test.cc index f0623eb32..827b13316 100644 --- a/test/dct32x32_test.cc +++ b/test/dct32x32_test.cc @@ -180,7 +180,7 @@ TEST(VP9Fdct32x32Test, CoeffSizeCheck) { 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); -- 2.50.1