1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
|
/*
* Copyright (c) 2016, Alliance for Open Media. All rights reserved.
*
* This source code is subject to the terms of the BSD 2 Clause License and
* the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
* was not distributed with this source code in the LICENSE file, you can
* obtain it at www.aomedia.org/license/software. If the Alliance for Open
* Media Patent License 1.0 was not distributed with this source code in the
* PATENTS file, you can obtain it at www.aomedia.org/license/patent.
*/
#include <string>
#include "config/aom_config.h"
#include "common/y4menc.h"
#include "gtest/gtest.h"
#include "test/md5_helper.h"
#include "test/util.h"
#include "test/y4m_video_source.h"
namespace {
using std::string;
static const unsigned int kWidth = 160;
static const unsigned int kHeight = 90;
static const unsigned int kFrames = 10;
struct Y4mTestParam {
const char *filename;
unsigned int bit_depth;
aom_img_fmt format;
const char *md5raw;
};
const Y4mTestParam kY4mTestVectors[] = {
{ "park_joy_90p_8_420.y4m", 8, AOM_IMG_FMT_I420,
"e5406275b9fc6bb3436c31d4a05c1cab" },
{ "park_joy_90p_8_420_monochrome.y4m", 8, AOM_IMG_FMT_I420,
"95ef5bf6218580588be24a5271bb6a7f" },
{ "park_joy_90p_8_420_vertical_csp.y4m", 8, AOM_IMG_FMT_I420,
"e5406275b9fc6bb3436c31d4a05c1cab" },
{ "park_joy_90p_8_422.y4m", 8, AOM_IMG_FMT_I422,
"284a47a47133b12884ec3a14e959a0b6" },
{ "park_joy_90p_8_444.y4m", 8, AOM_IMG_FMT_I444,
"90517ff33843d85de712fd4fe60dbed0" },
{ "park_joy_90p_10_420.y4m", 10, AOM_IMG_FMT_I42016,
"63f21f9f717d8b8631bd2288ee87137b" },
{ "park_joy_90p_10_422.y4m", 10, AOM_IMG_FMT_I42216,
"48ab51fb540aed07f7ff5af130c9b605" },
{ "park_joy_90p_10_444.y4m", 10, AOM_IMG_FMT_I44416,
"067bfd75aa85ff9bae91fa3e0edd1e3e" },
{ "park_joy_90p_12_420.y4m", 12, AOM_IMG_FMT_I42016,
"9e6d8f6508c6e55625f6b697bc461cef" },
{ "park_joy_90p_12_422.y4m", 12, AOM_IMG_FMT_I42216,
"b239c6b301c0b835485be349ca83a7e3" },
{ "park_joy_90p_12_444.y4m", 12, AOM_IMG_FMT_I44416,
"5a6481a550821dab6d0192f5c63845e9" },
};
static const int PLANES_YUV[] = { AOM_PLANE_Y, AOM_PLANE_U, AOM_PLANE_V };
class Y4mVideoSourceTest : public ::testing::TestWithParam<Y4mTestParam>,
public ::libaom_test::Y4mVideoSource {
protected:
Y4mVideoSourceTest() : Y4mVideoSource("", 0, 0) {}
~Y4mVideoSourceTest() override { CloseSource(); }
virtual void Init(const std::string &file_name, int limit) {
file_name_ = file_name;
start_ = 0;
limit_ = limit;
frame_ = 0;
Begin();
}
// Checks y4m header information
void HeaderChecks(unsigned int bit_depth, aom_img_fmt_t fmt) {
ASSERT_NE(input_file_, nullptr);
ASSERT_EQ(y4m_.pic_w, (int)kWidth);
ASSERT_EQ(y4m_.pic_h, (int)kHeight);
ASSERT_EQ(img()->d_w, kWidth);
ASSERT_EQ(img()->d_h, kHeight);
ASSERT_EQ(y4m_.bit_depth, bit_depth);
ASSERT_EQ(y4m_.aom_fmt, fmt);
if (fmt == AOM_IMG_FMT_I420 || fmt == AOM_IMG_FMT_I42016) {
ASSERT_EQ(y4m_.bps, (int)y4m_.bit_depth * 3 / 2);
ASSERT_EQ(img()->x_chroma_shift, 1U);
ASSERT_EQ(img()->y_chroma_shift, 1U);
}
if (fmt == AOM_IMG_FMT_I422 || fmt == AOM_IMG_FMT_I42216) {
ASSERT_EQ(y4m_.bps, (int)y4m_.bit_depth * 2);
ASSERT_EQ(img()->x_chroma_shift, 1U);
ASSERT_EQ(img()->y_chroma_shift, 0U);
}
if (fmt == AOM_IMG_FMT_I444 || fmt == AOM_IMG_FMT_I44416) {
ASSERT_EQ(y4m_.bps, (int)y4m_.bit_depth * 3);
ASSERT_EQ(img()->x_chroma_shift, 0U);
ASSERT_EQ(img()->y_chroma_shift, 0U);
}
}
// Checks MD5 of the raw frame data
void Md5Check(const string &expected_md5) {
ASSERT_NE(input_file_, nullptr);
libaom_test::MD5 md5;
for (unsigned int i = start_; i < limit_; i++) {
md5.Add(img());
Next();
}
ASSERT_EQ(string(md5.Get()), expected_md5);
}
};
TEST_P(Y4mVideoSourceTest, SourceTest) {
const Y4mTestParam t = GetParam();
Init(t.filename, kFrames);
HeaderChecks(t.bit_depth, t.format);
Md5Check(t.md5raw);
}
INSTANTIATE_TEST_SUITE_P(C, Y4mVideoSourceTest,
::testing::ValuesIn(kY4mTestVectors));
class Y4mVideoWriteTest : public Y4mVideoSourceTest {
protected:
Y4mVideoWriteTest() : tmpfile_(nullptr) {}
~Y4mVideoWriteTest() override {
delete tmpfile_;
input_file_ = nullptr;
}
void ReplaceInputFile(FILE *input_file) {
CloseSource();
frame_ = 0;
input_file_ = input_file;
rewind(input_file_);
ReadSourceToStart();
}
// Writes out a y4m file and then reads it back
void WriteY4mAndReadBack() {
ASSERT_NE(input_file_, nullptr);
char buf[Y4M_BUFFER_SIZE] = { 0 };
const struct AvxRational framerate = { y4m_.fps_n, y4m_.fps_d };
tmpfile_ = new libaom_test::TempOutFile;
ASSERT_NE(tmpfile_, nullptr);
ASSERT_NE(tmpfile_->file(), nullptr);
y4m_write_file_header(buf, sizeof(buf), kWidth, kHeight, &framerate,
img()->monochrome, img()->csp, y4m_.aom_fmt,
y4m_.bit_depth, AOM_CR_STUDIO_RANGE);
fputs(buf, tmpfile_->file());
for (unsigned int i = start_; i < limit_; i++) {
y4m_write_frame_header(buf, sizeof(buf));
fputs(buf, tmpfile_->file());
y4m_write_image_file(img(), PLANES_YUV, tmpfile_->file());
Next();
}
ReplaceInputFile(tmpfile_->file());
}
void Init(const std::string &file_name, int limit) override {
Y4mVideoSourceTest::Init(file_name, limit);
WriteY4mAndReadBack();
}
libaom_test::TempOutFile *tmpfile_;
};
TEST_P(Y4mVideoWriteTest, WriteTest) {
const Y4mTestParam t = GetParam();
Init(t.filename, kFrames);
HeaderChecks(t.bit_depth, t.format);
Md5Check(t.md5raw);
}
INSTANTIATE_TEST_SUITE_P(C, Y4mVideoWriteTest,
::testing::ValuesIn(kY4mTestVectors));
static const char kY4MRegularHeader[] =
"YUV4MPEG2 W4 H4 F30:1 Ip A0:0 C420jpeg XYSCSS=420JPEG\n"
"FRAME\n"
"012345678912345601230123";
TEST(Y4MHeaderTest, RegularHeader) {
libaom_test::TempOutFile f;
ASSERT_NE(f.file(), nullptr);
fwrite(kY4MRegularHeader, 1, sizeof(kY4MRegularHeader), f.file());
fflush(f.file());
EXPECT_EQ(0, fseek(f.file(), 0, 0));
y4m_input y4m;
EXPECT_EQ(y4m_input_open(&y4m, f.file(), nullptr, 0, AOM_CSP_UNKNOWN,
/*only_420=*/0),
0);
EXPECT_EQ(y4m.pic_w, 4);
EXPECT_EQ(y4m.pic_h, 4);
EXPECT_EQ(y4m.fps_n, 30);
EXPECT_EQ(y4m.fps_d, 1);
EXPECT_EQ(y4m.interlace, 'p');
EXPECT_EQ(y4m.color_range, AOM_CR_STUDIO_RANGE);
EXPECT_EQ(strcmp("420jpeg", y4m.chroma_type), 0);
y4m_input_close(&y4m);
}
// Testing that headers over 100 characters can be parsed.
static const char kY4MLongHeader[] =
"YUV4MPEG2 W4 H4 F30:1 Ip A0:0 C420jpeg XYSCSS=420JPEG "
"XCOLORRANGE=LIMITED XSOME_UNKNOWN_METADATA XOTHER_UNKNOWN_METADATA\n"
"FRAME\n"
"012345678912345601230123";
TEST(Y4MHeaderTest, LongHeader) {
libaom_test::TempOutFile tmpfile;
FILE *f = tmpfile.file();
ASSERT_NE(f, nullptr);
fwrite(kY4MLongHeader, 1, sizeof(kY4MLongHeader), f);
fflush(f);
EXPECT_EQ(fseek(f, 0, 0), 0);
y4m_input y4m;
EXPECT_EQ(y4m_input_open(&y4m, f, nullptr, 0, AOM_CSP_UNKNOWN,
/*only_420=*/0),
0);
EXPECT_EQ(y4m.pic_w, 4);
EXPECT_EQ(y4m.pic_h, 4);
EXPECT_EQ(y4m.fps_n, 30);
EXPECT_EQ(y4m.fps_d, 1);
EXPECT_EQ(y4m.interlace, 'p');
EXPECT_EQ(y4m.color_range, AOM_CR_STUDIO_RANGE);
EXPECT_EQ(strcmp("420jpeg", y4m.chroma_type), 0);
y4m_input_close(&y4m);
}
static const char kY4MFullRangeHeader[] =
"YUV4MPEG2 W4 H4 F30:1 Ip A0:0 C420jpeg XYSCSS=420JPEG XCOLORRANGE=FULL\n"
"FRAME\n"
"012345678912345601230123";
TEST(Y4MHeaderTest, FullRangeHeader) {
libaom_test::TempOutFile tmpfile;
FILE *f = tmpfile.file();
ASSERT_NE(f, nullptr);
fwrite(kY4MFullRangeHeader, 1, sizeof(kY4MFullRangeHeader), f);
fflush(f);
EXPECT_EQ(fseek(f, 0, 0), 0);
y4m_input y4m;
EXPECT_EQ(y4m_input_open(&y4m, f, nullptr, 0, AOM_CSP_UNKNOWN,
/*only_420=*/0),
0);
EXPECT_EQ(y4m.pic_w, 4);
EXPECT_EQ(y4m.pic_h, 4);
EXPECT_EQ(y4m.fps_n, 30);
EXPECT_EQ(y4m.fps_d, 1);
EXPECT_EQ(y4m.interlace, 'p');
EXPECT_EQ(strcmp("420jpeg", y4m.chroma_type), 0);
EXPECT_EQ(y4m.color_range, AOM_CR_FULL_RANGE);
y4m_input_close(&y4m);
}
TEST(Y4MHeaderTest, WriteStudioColorRange) {
char buf[128];
struct AvxRational framerate = { /*numerator=*/30, /*denominator=*/1 };
EXPECT_GE(y4m_write_file_header(
buf, /*len=*/128, /*width=*/4, /*height=*/5, &framerate,
/*monochrome=*/0, AOM_CSP_UNKNOWN, AOM_IMG_FMT_I420,
/*bit_depth=*/8, AOM_CR_STUDIO_RANGE),
0);
EXPECT_EQ(strcmp("YUV4MPEG2 W4 H5 F30:1 Ip C420jpeg\n", buf), 0);
}
TEST(Y4MHeaderTest, WriteFullColorRange) {
char buf[128];
struct AvxRational framerate = { /*numerator=*/30, /*denominator=*/1 };
EXPECT_GE(y4m_write_file_header(
buf, /*len=*/128, /*width=*/4, /*height=*/5, &framerate,
/*monochrome=*/0, AOM_CSP_UNKNOWN, AOM_IMG_FMT_I420,
/*bit_depth=*/8, AOM_CR_FULL_RANGE),
0);
EXPECT_EQ(strcmp("YUV4MPEG2 W4 H5 F30:1 Ip C420jpeg XCOLORRANGE=FULL\n", buf),
0);
}
} // namespace
|