vp9_subtract_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: I636012c74f5de91d594d7398e92343f5efe08327
This commit is contained in:
@@ -17,14 +17,14 @@
|
|||||||
#include "vp9/common/vp9_blockd.h"
|
#include "vp9/common/vp9_blockd.h"
|
||||||
#include "vpx_mem/vpx_mem.h"
|
#include "vpx_mem/vpx_mem.h"
|
||||||
|
|
||||||
typedef void (*subtract_fn_t)(int rows, int cols,
|
typedef void (*SubtractFunc)(int rows, int cols,
|
||||||
int16_t *diff_ptr, ptrdiff_t diff_stride,
|
int16_t *diff_ptr, ptrdiff_t diff_stride,
|
||||||
const uint8_t *src_ptr, ptrdiff_t src_stride,
|
const uint8_t *src_ptr, ptrdiff_t src_stride,
|
||||||
const uint8_t *pred_ptr, ptrdiff_t pred_stride);
|
const uint8_t *pred_ptr, ptrdiff_t pred_stride);
|
||||||
|
|
||||||
namespace vp9 {
|
namespace vp9 {
|
||||||
|
|
||||||
class VP9SubtractBlockTest : public ::testing::TestWithParam<subtract_fn_t> {
|
class VP9SubtractBlockTest : public ::testing::TestWithParam<SubtractFunc> {
|
||||||
public:
|
public:
|
||||||
virtual void TearDown() {
|
virtual void TearDown() {
|
||||||
libvpx_test::ClearSystemState();
|
libvpx_test::ClearSystemState();
|
||||||
|
Reference in New Issue
Block a user