]> granicus.if.org Git - libvpx/commitdiff
Fix wrong pitch argument in dct32x32 unit test.
authorRonald S. Bultje <rbultje@google.com>
Thu, 10 Jan 2013 16:36:42 +0000 (08:36 -0800)
committerRonald S. Bultje <rbultje@google.com>
Thu, 10 Jan 2013 16:36:42 +0000 (08:36 -0800)
Change-Id: Id9474a1686daebfa3d004e21823bf1888ec9e534

test/dct32x32_test.cc

index f0623eb328dfa3bcb138457f3186030d30ed1490..827b13316cfbcc711d894354d790a03753b6a9d7 100644 (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);