summaryrefslogtreecommitdiff
path: root/test/fdct4x4_test.cc
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2013-09-05 08:45:56 -0700
committerYaowu Xu <yaowu@google.com>2013-09-06 10:13:49 -0700
commitafffa3d9b0722dfd2afb59eb0f28acedad713e63 (patch)
tree08341b379e0e1fa3eb1929fdb1a1f141dbc83b31 /test/fdct4x4_test.cc
parente4e864586c6e020d7ed028cc5c1e93de4fd8ee10 (diff)
downloadlibvpx-afffa3d9b0722dfd2afb59eb0f28acedad713e63.tar
libvpx-afffa3d9b0722dfd2afb59eb0f28acedad713e63.tar.gz
libvpx-afffa3d9b0722dfd2afb59eb0f28acedad713e63.tar.bz2
libvpx-afffa3d9b0722dfd2afb59eb0f28acedad713e63.zip
cleanup cpplint warnings
Suggested by James Zern to clear out cpplint warnings for all unit test code. Change-Id: I731a3fa4d2a257eb9ef733426ba84286fbd7ea34
Diffstat (limited to 'test/fdct4x4_test.cc')
-rw-r--r--test/fdct4x4_test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/fdct4x4_test.cc b/test/fdct4x4_test.cc
index 39f915ca4..ea40ca62a 100644
--- a/test/fdct4x4_test.cc
+++ b/test/fdct4x4_test.cc
@@ -15,10 +15,10 @@
#include "third_party/googletest/src/include/gtest/gtest.h"
extern "C" {
-#include "vp9_rtcd.h"
+#include "./vp9_rtcd.h"
}
-#include "acm_random.h"
+#include "test/acm_random.h"
#include "vpx/vpx_integer.h"
#include "vpx_ports/mem.h"
@@ -156,7 +156,7 @@ TEST_P(FwdTrans4x4Test, RoundTripErrorCheck) {
RunFwdTxfm(test_input_block, test_temp_block, dst, pitch, tx_type_);
for (int j = 0; j < 16; ++j) {
- if(test_temp_block[j] > 0) {
+ if (test_temp_block[j] > 0) {
test_temp_block[j] += 2;
test_temp_block[j] /= 4;
test_temp_block[j] *= 4;