]> granicus.if.org Git - libvpx/commitdiff
Fix compile error of vp10_fwd_txfm2d_sse4_test.cc
authorAngie Chiang <angiebird@google.com>
Wed, 6 Apr 2016 23:26:04 +0000 (16:26 -0700)
committerAngie Chiang <angiebird@google.com>
Wed, 6 Apr 2016 23:26:04 +0000 (16:26 -0700)
Change-Id: I14a0821631e404d59a1121f7517f97de8d6f790f

test/vp10_fwd_txfm2d_sse4_test.cc

index d3882cd9e713130c6c18d501822fdd2aa5acca0b..ab9450b6100075999764dbc3c532c461e5c00e95 100644 (file)
@@ -8,6 +8,9 @@
 #include "vp10/common/vp10_fwd_txfm2d_cfg.h"
 
 using libvpx_test::ACMRandom;
+using libvpx_test::Fwd_Txfm2d_Func;
+using libvpx_test::base;
+using libvpx_test::bd;
 
 namespace {
 
@@ -58,8 +61,8 @@ TEST(vp10_fwd_txfm2d_sse4_1, accuracy) {
       }
     }
 
-    txfm2d_func_c(input, output_c, cfg.txfm_size, &cfg, 10);
-    txfm2d_func_sse4_1(input, output_sse4_1, cfg.txfm_size, &cfg, 10);
+    txfm2d_func_c(input, output_c, cfg.txfm_size, &cfg, bd);
+    txfm2d_func_sse4_1(input, output_sse4_1, cfg.txfm_size, &cfg, bd);
     for (int r = 0; r < txfm_size; r++) {
       for (int c = 0; c < txfm_size; c++) {
         EXPECT_EQ(output_c[r * txfm_size + c],