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
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/base_paths.h"
#include "base/file_util.h"
#include "media/base/yuv_convert.h"
#include "testing/gtest/include/gtest/gtest.h"
// Reference images were created with the following steps
// ffmpeg -vframes 25 -i bali.mov -vcodec rawvideo -pix_fmt yuv420p -an
// bali.yv12.1280_720.yuv
// yuvhalf -yv12 -skip 24 bali.yv12.1280_720.yuv bali.yv12.640_360.yuv
// yuvtool -yv12 bali.yv12.640_360.yuv bali.yv12.640_360.rgb
// ffmpeg -vframes 25 -i bali.mov -vcodec rawvideo -pix_fmt yuv422p -an
// bali.yv16.1280_720.yuv
// yuvhalf -yv16 -skip 24 bali.yv16.1280_720.yuv bali.yv16.640_360.yuv
// yuvtool -yv16 bali.yv16.640_360.yuv bali.yv16.640_360.rgb
// Size of raw image.
static const int kWidth = 640;
static const int kHeight = 360;
static const int kBpp = 4;
TEST(YuvConvertTest, Basic) {
// Read YUV reference data from file.
FilePath yuv_url;
EXPECT_TRUE(PathService::Get(base::DIR_SOURCE_ROOT, &yuv_url));
yuv_url = yuv_url.Append(FILE_PATH_LITERAL("media"))
.Append(FILE_PATH_LITERAL("test"))
.Append(FILE_PATH_LITERAL("data"))
.Append(FILE_PATH_LITERAL("bali.yv12.640_360.yuv"));
const size_t size_of_yuv = kWidth * kHeight * 12 / 8; // 12 bpp.
uint8* yuv_bytes = new uint8[size_of_yuv];
EXPECT_EQ(static_cast<int>(size_of_yuv),
file_util::ReadFile(yuv_url,
reinterpret_cast<char*>(yuv_bytes),
static_cast<int>(size_of_yuv)));
// Read RGB reference data from file.
FilePath rgb_url;
EXPECT_TRUE(PathService::Get(base::DIR_SOURCE_ROOT, &rgb_url));
rgb_url = rgb_url.Append(FILE_PATH_LITERAL("media"))
.Append(FILE_PATH_LITERAL("test"))
.Append(FILE_PATH_LITERAL("data"))
.Append(FILE_PATH_LITERAL("bali.yv12.640_360.rgb"));
const size_t size_of_rgb = kWidth * kHeight * kBpp;
uint8* rgb_bytes = new uint8[size_of_rgb];
EXPECT_EQ(static_cast<int>(size_of_rgb),
file_util::ReadFile(rgb_url,
reinterpret_cast<char*>(rgb_bytes),
static_cast<int>(size_of_rgb)));
// Convert a frame of YUV to 32 bit ARGB.
const size_t size_of_rgb_converted = kWidth * kHeight * kBpp;
uint8* rgb_converted_bytes = new uint8[size_of_rgb_converted];
media::ConvertYV12ToRGB32(yuv_bytes, // Y plane
yuv_bytes + kWidth * kHeight, // U plane
yuv_bytes + kWidth * kHeight * 5 / 4, // V plane
rgb_converted_bytes, // Rgb output
kWidth, kHeight, // Dimensions
kWidth, // YStride
kWidth / 2, // UvStride
kWidth * kBpp); // RgbStride
// Compare converted YUV to reference conversion file.
int rgb_diff = memcmp(rgb_converted_bytes, rgb_bytes, size_of_rgb);
EXPECT_EQ(rgb_diff, 0);
}
TEST(YV16ConvertTest, Basic) {
// Read YV16 reference data from file.
FilePath yuv_url;
EXPECT_TRUE(PathService::Get(base::DIR_SOURCE_ROOT, &yuv_url));
yuv_url = yuv_url.Append(FILE_PATH_LITERAL("media"))
.Append(FILE_PATH_LITERAL("test"))
.Append(FILE_PATH_LITERAL("data"))
.Append(FILE_PATH_LITERAL("bali.yv16.640_360.yuv"));
const size_t size_of_yuv = kWidth * kHeight * 16 / 8; // 16 bpp.
uint8* yuv_bytes = new uint8[size_of_yuv];
EXPECT_EQ(static_cast<int>(size_of_yuv),
file_util::ReadFile(yuv_url,
reinterpret_cast<char*>(yuv_bytes),
static_cast<int>(size_of_yuv)));
// Read RGB reference data from file.
FilePath rgb_url;
EXPECT_TRUE(PathService::Get(base::DIR_SOURCE_ROOT, &rgb_url));
rgb_url = rgb_url.Append(FILE_PATH_LITERAL("media"))
.Append(FILE_PATH_LITERAL("test"))
.Append(FILE_PATH_LITERAL("data"))
.Append(FILE_PATH_LITERAL("bali.yv16.640_360.rgb"));
const size_t size_of_rgb = kWidth * kHeight * kBpp;
uint8* rgb_bytes = new uint8[size_of_rgb];
EXPECT_EQ(static_cast<int>(size_of_rgb),
file_util::ReadFile(rgb_url,
reinterpret_cast<char*>(rgb_bytes),
static_cast<int>(size_of_rgb)));
// Convert a frame of YUV to 32 bit ARGB.
const size_t size_of_rgb_converted = kWidth * kHeight * kBpp;
uint8* rgb_converted_bytes = new uint8[size_of_rgb_converted];
media::ConvertYV16ToRGB32(yuv_bytes, // Y plane
yuv_bytes + kWidth * kHeight, // U plane
yuv_bytes + kWidth * kHeight * 3 / 2, // V plane
rgb_converted_bytes, // Rgb output
kWidth, kHeight, // Dimensions
kWidth, // YStride
kWidth / 2, // UvStride
kWidth * kBpp); // RgbStride
// Compare converted YUV to reference conversion file.
int rgb_diff = memcmp(rgb_converted_bytes, rgb_bytes, size_of_rgb);
EXPECT_EQ(rgb_diff, 0);
}
|