Commit 1cfaaf67 authored by James Zern's avatar James Zern
Browse files

y4m_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: I2ede16e0903a96225a342609545281fdbb83d638
Showing with 6 additions and 6 deletions
...@@ -24,14 +24,14 @@ static const unsigned int kWidth = 160; ...@@ -24,14 +24,14 @@ static const unsigned int kWidth = 160;
static const unsigned int kHeight = 90; static const unsigned int kHeight = 90;
static const unsigned int kFrames = 10; static const unsigned int kFrames = 10;
typedef struct { struct Y4mTestParam {
const char *filename; const char *filename;
unsigned int bit_depth; unsigned int bit_depth;
vpx_img_fmt format; vpx_img_fmt format;
const char *md5raw; const char *md5raw;
} test_entry_type; };
const test_entry_type kY4mTestVectors[] = { const Y4mTestParam kY4mTestVectors[] = {
{"park_joy_90p_8_420.y4m", 8, VPX_IMG_FMT_I420, {"park_joy_90p_8_420.y4m", 8, VPX_IMG_FMT_I420,
"e5406275b9fc6bb3436c31d4a05c1cab"}, "e5406275b9fc6bb3436c31d4a05c1cab"},
{"park_joy_90p_8_422.y4m", 8, VPX_IMG_FMT_I422, {"park_joy_90p_8_422.y4m", 8, VPX_IMG_FMT_I422,
...@@ -70,7 +70,7 @@ static void write_image_file(const vpx_image_t *img, FILE *file) { ...@@ -70,7 +70,7 @@ static void write_image_file(const vpx_image_t *img, FILE *file) {
} }
class Y4mVideoSourceTest class Y4mVideoSourceTest
: public ::testing::TestWithParam<test_entry_type>, : public ::testing::TestWithParam<Y4mTestParam>,
public ::libvpx_test::Y4mVideoSource { public ::libvpx_test::Y4mVideoSource {
protected: protected:
Y4mVideoSourceTest() : Y4mVideoSource("", 0, 0) {} Y4mVideoSourceTest() : Y4mVideoSource("", 0, 0) {}
...@@ -126,7 +126,7 @@ class Y4mVideoSourceTest ...@@ -126,7 +126,7 @@ class Y4mVideoSourceTest
}; };
TEST_P(Y4mVideoSourceTest, SourceTest) { TEST_P(Y4mVideoSourceTest, SourceTest) {
const test_entry_type t = GetParam(); const Y4mTestParam t = GetParam();
Init(t.filename, kFrames); Init(t.filename, kFrames);
HeaderChecks(t.bit_depth, t.format); HeaderChecks(t.bit_depth, t.format);
Md5Check(t.md5raw); Md5Check(t.md5raw);
...@@ -175,7 +175,7 @@ class Y4mVideoWriteTest ...@@ -175,7 +175,7 @@ class Y4mVideoWriteTest
}; };
TEST_P(Y4mVideoWriteTest, WriteTest) { TEST_P(Y4mVideoWriteTest, WriteTest) {
const test_entry_type t = GetParam(); const Y4mTestParam t = GetParam();
Init(t.filename, kFrames); Init(t.filename, kFrames);
HeaderChecks(t.bit_depth, t.format); HeaderChecks(t.bit_depth, t.format);
Md5Check(t.md5raw); Md5Check(t.md5raw);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment