| Index: source/libvpx/test/vp9_quantize_test.cc
|
| diff --git a/source/libvpx/test/vp9_quantize_test.cc b/source/libvpx/test/vp9_quantize_test.cc
|
| index 0e0965255f8bba6fdf189cfb387cac557977b619..81d31fd1b2e1fc1a8c1d390682c8101d90e6d739 100644
|
| --- a/source/libvpx/test/vp9_quantize_test.cc
|
| +++ b/source/libvpx/test/vp9_quantize_test.cc
|
| @@ -14,12 +14,12 @@
|
|
|
| #include "third_party/googletest/src/include/gtest/gtest.h"
|
|
|
| +#include "./vpx_config.h"
|
| +#include "./vpx_dsp_rtcd.h"
|
| #include "test/acm_random.h"
|
| #include "test/clear_system_state.h"
|
| #include "test/register_state_check.h"
|
| #include "test/util.h"
|
| -#include "./vpx_config.h"
|
| -#include "./vpx_dsp_rtcd.h"
|
| #include "vp9/common/vp9_entropy.h"
|
| #include "vp9/common/vp9_scan.h"
|
| #include "vpx/vpx_codec.h"
|
| @@ -331,21 +331,21 @@ using std::tr1::make_tuple;
|
| INSTANTIATE_TEST_CASE_P(
|
| SSE2, VP9QuantizeTest,
|
| ::testing::Values(
|
| - make_tuple(&vp9_highbd_quantize_b_sse2,
|
| - &vp9_highbd_quantize_b_c, VPX_BITS_8),
|
| - make_tuple(&vp9_highbd_quantize_b_sse2,
|
| - &vp9_highbd_quantize_b_c, VPX_BITS_10),
|
| - make_tuple(&vp9_highbd_quantize_b_sse2,
|
| - &vp9_highbd_quantize_b_c, VPX_BITS_12)));
|
| + make_tuple(&vpx_highbd_quantize_b_sse2,
|
| + &vpx_highbd_quantize_b_c, VPX_BITS_8),
|
| + make_tuple(&vpx_highbd_quantize_b_sse2,
|
| + &vpx_highbd_quantize_b_c, VPX_BITS_10),
|
| + make_tuple(&vpx_highbd_quantize_b_sse2,
|
| + &vpx_highbd_quantize_b_c, VPX_BITS_12)));
|
| INSTANTIATE_TEST_CASE_P(
|
| SSE2, VP9Quantize32Test,
|
| ::testing::Values(
|
| - make_tuple(&vp9_highbd_quantize_b_32x32_sse2,
|
| - &vp9_highbd_quantize_b_32x32_c, VPX_BITS_8),
|
| - make_tuple(&vp9_highbd_quantize_b_32x32_sse2,
|
| - &vp9_highbd_quantize_b_32x32_c, VPX_BITS_10),
|
| - make_tuple(&vp9_highbd_quantize_b_32x32_sse2,
|
| - &vp9_highbd_quantize_b_32x32_c, VPX_BITS_12)));
|
| + make_tuple(&vpx_highbd_quantize_b_32x32_sse2,
|
| + &vpx_highbd_quantize_b_32x32_c, VPX_BITS_8),
|
| + make_tuple(&vpx_highbd_quantize_b_32x32_sse2,
|
| + &vpx_highbd_quantize_b_32x32_c, VPX_BITS_10),
|
| + make_tuple(&vpx_highbd_quantize_b_32x32_sse2,
|
| + &vpx_highbd_quantize_b_32x32_c, VPX_BITS_12)));
|
| #endif // HAVE_SSE2
|
| #endif // CONFIG_VP9_HIGHBITDEPTH
|
| } // namespace
|
|
|