From 25d74e69dde3bdd31de6d936e21f811294fbcbe1 Mon Sep 17 00:00:00 2001 From: James Zern Date: Wed, 16 Jul 2014 18:58:53 -0700 Subject: [PATCH] pp_filter_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: If6cf006a089b0fb42d6bf050570d928d955d658a --- test/pp_filter_test.cc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/test/pp_filter_test.cc b/test/pp_filter_test.cc index 1144083ad..a9b16e055 100644 --- a/test/pp_filter_test.cc +++ b/test/pp_filter_test.cc @@ -15,18 +15,18 @@ #include "vpx/vpx_integer.h" #include "vpx_mem/vpx_mem.h" -typedef void (*post_proc_func_t)(unsigned char *src_ptr, - unsigned char *dst_ptr, - int src_pixels_per_line, - int dst_pixels_per_line, - int cols, - unsigned char *flimit, - int size); +typedef void (*PostProcFunc)(unsigned char *src_ptr, + unsigned char *dst_ptr, + int src_pixels_per_line, + int dst_pixels_per_line, + int cols, + unsigned char *flimit, + int size); namespace { class VP8PostProcessingFilterTest - : public ::testing::TestWithParam { + : public ::testing::TestWithParam { public: virtual void TearDown() { libvpx_test::ClearSystemState();