| Index: source/libvpx/test/variance_test.cc
|
| ===================================================================
|
| --- source/libvpx/test/variance_test.cc (revision 223100)
|
| +++ source/libvpx/test/variance_test.cc (working copy)
|
| @@ -16,16 +16,16 @@
|
| #include "test/register_state_check.h"
|
|
|
| #include "vpx/vpx_integer.h"
|
| -#include "vpx_config.h"
|
| +#include "./vpx_config.h"
|
| extern "C" {
|
| #include "vpx_mem/vpx_mem.h"
|
| #if CONFIG_VP8_ENCODER
|
| # include "vp8/common/variance.h"
|
| -# include "vp8_rtcd.h"
|
| +# include "./vp8_rtcd.h"
|
| #endif
|
| #if CONFIG_VP9_ENCODER
|
| # include "vp9/encoder/vp9_variance.h"
|
| -# include "vp9_rtcd.h"
|
| +# include "./vp9_rtcd.h"
|
| #endif
|
| }
|
| #include "test/acm_random.h"
|
| @@ -107,8 +107,8 @@
|
| }
|
|
|
| template<typename VarianceFunctionType>
|
| -class VarianceTest :
|
| - public ::testing::TestWithParam<tuple<int, int, VarianceFunctionType> > {
|
| +class VarianceTest
|
| + : public ::testing::TestWithParam<tuple<int, int, VarianceFunctionType> > {
|
| public:
|
| virtual void SetUp() {
|
| const tuple<int, int, VarianceFunctionType>& params = this->GetParam();
|
| @@ -191,9 +191,9 @@
|
| }
|
|
|
| template<typename SubpelVarianceFunctionType>
|
| -class SubpelVarianceTest :
|
| - public ::testing::TestWithParam<tuple<int, int,
|
| - SubpelVarianceFunctionType> > {
|
| +class SubpelVarianceTest
|
| + : public ::testing::TestWithParam<tuple<int, int,
|
| + SubpelVarianceFunctionType> > {
|
| public:
|
| virtual void SetUp() {
|
| const tuple<int, int, SubpelVarianceFunctionType>& params =
|
|
|