Fix wrong pitch argument in dct32x32 unit test.

Change-Id: Id9474a1686daebfa3d004e21823bf1888ec9e534
This commit is contained in:
Ronald S. Bultje 2013-01-10 08:36:42 -08:00
parent aa2effa954
commit 55657aac49

View File

@ -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);