summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2014-07-16 18:57:11 -0700
committerJames Zern <jzern@google.com>2014-07-18 20:39:06 -0700
commit75d56b346ede315d9ec67fbadf542c456131604f (patch)
tree328be0428c0541197297dbeb5b19ecea4e809923 /test
parent54697d363d9292250772dc6c2c181b26769dd300 (diff)
downloadlibvpx-75d56b346ede315d9ec67fbadf542c456131604f.tar
libvpx-75d56b346ede315d9ec67fbadf542c456131604f.tar.gz
libvpx-75d56b346ede315d9ec67fbadf542c456131604f.tar.bz2
libvpx-75d56b346ede315d9ec67fbadf542c456131604f.zip
idct_test: drop '_t' from local typenames
_t is reserved by posix + switch to camelcase http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml#Type_Names Change-Id: I660a77c0c58ca64075c1051ea440fdf4d7c7e6af
Diffstat (limited to 'test')
-rw-r--r--test/idct_test.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/idct_test.cc b/test/idct_test.cc
index c7f609d58..2ff9e6446 100644
--- a/test/idct_test.cc
+++ b/test/idct_test.cc
@@ -16,11 +16,11 @@
#include "vpx/vpx_integer.h"
-typedef void (*idct_fn_t)(int16_t *input, unsigned char *pred_ptr,
- int pred_stride, unsigned char *dst_ptr,
- int dst_stride);
+typedef void (*IdctFunc)(int16_t *input, unsigned char *pred_ptr,
+ int pred_stride, unsigned char *dst_ptr,
+ int dst_stride);
namespace {
-class IDCTTest : public ::testing::TestWithParam<idct_fn_t> {
+class IDCTTest : public ::testing::TestWithParam<IdctFunc> {
protected:
virtual void SetUp() {
int i;
@@ -33,7 +33,7 @@ class IDCTTest : public ::testing::TestWithParam<idct_fn_t> {
virtual void TearDown() { libvpx_test::ClearSystemState(); }
- idct_fn_t UUT;
+ IdctFunc UUT;
int16_t input[16];
unsigned char output[256];
unsigned char predict[256];