OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 #include <math.h> | 11 #include <math.h> |
12 #include <string.h> | 12 #include <string.h> |
13 | 13 |
14 #include "testing/gtest/include/gtest/gtest.h" | 14 #include "testing/gtest/include/gtest/gtest.h" |
15 #include "webrtc/base/bind.h" | 15 #include "webrtc/base/bind.h" |
16 #include "webrtc/base/scoped_ptr.h" | 16 #include "webrtc/base/scoped_ptr.h" |
17 #include "webrtc/test/fake_texture_frame.h" | 17 #include "webrtc/test/fake_texture_frame.h" |
18 #include "webrtc/test/frame_utils.h" | |
19 #include "webrtc/video_frame.h" | 18 #include "webrtc/video_frame.h" |
20 | 19 |
21 namespace webrtc { | 20 namespace webrtc { |
22 | 21 |
| 22 bool EqualPlane(const uint8_t* data1, |
| 23 const uint8_t* data2, |
| 24 int stride, |
| 25 int width, |
| 26 int height); |
23 int ExpectedSize(int plane_stride, int image_height, PlaneType type); | 27 int ExpectedSize(int plane_stride, int image_height, PlaneType type); |
24 | 28 |
25 TEST(TestVideoFrame, InitialValues) { | 29 TEST(TestVideoFrame, InitialValues) { |
26 VideoFrame frame; | 30 VideoFrame frame; |
27 EXPECT_TRUE(frame.IsZeroSize()); | 31 EXPECT_TRUE(frame.IsZeroSize()); |
28 EXPECT_EQ(kVideoRotation_0, frame.rotation()); | 32 EXPECT_EQ(kVideoRotation_0, frame.rotation()); |
29 } | 33 } |
30 | 34 |
31 TEST(TestVideoFrame, CopiesInitialFrameWithoutCrashing) { | 35 TEST(TestVideoFrame, CopiesInitialFrameWithoutCrashing) { |
32 VideoFrame frame; | 36 VideoFrame frame; |
33 VideoFrame frame2; | 37 VideoFrame frame2; |
34 frame2.CopyFrame(frame); | 38 frame2.CopyFrame(frame); |
35 } | 39 } |
36 | 40 |
37 TEST(TestVideoFrame, WidthHeightValues) { | 41 TEST(TestVideoFrame, WidthHeightValues) { |
38 VideoFrame frame; | 42 VideoFrame frame; |
39 const int valid_value = 10; | 43 const int valid_value = 10; |
40 frame.CreateEmptyFrame(10, 10, 10, 14, 90); | 44 EXPECT_EQ(0, frame.CreateEmptyFrame(10, 10, 10, 14, 90)); |
41 EXPECT_EQ(valid_value, frame.width()); | 45 EXPECT_EQ(valid_value, frame.width()); |
42 EXPECT_EQ(valid_value, frame.height()); | 46 EXPECT_EQ(valid_value, frame.height()); |
43 frame.set_timestamp(123u); | 47 frame.set_timestamp(123u); |
44 EXPECT_EQ(123u, frame.timestamp()); | 48 EXPECT_EQ(123u, frame.timestamp()); |
45 frame.set_ntp_time_ms(456); | 49 frame.set_ntp_time_ms(456); |
46 EXPECT_EQ(456, frame.ntp_time_ms()); | 50 EXPECT_EQ(456, frame.ntp_time_ms()); |
47 frame.set_render_time_ms(789); | 51 frame.set_render_time_ms(789); |
48 EXPECT_EQ(789, frame.render_time_ms()); | 52 EXPECT_EQ(789, frame.render_time_ms()); |
49 } | 53 } |
50 | 54 |
51 TEST(TestVideoFrame, SizeAllocation) { | 55 TEST(TestVideoFrame, SizeAllocation) { |
52 VideoFrame frame; | 56 VideoFrame frame; |
53 frame. CreateEmptyFrame(10, 10, 12, 14, 220); | 57 EXPECT_EQ(0, frame. CreateEmptyFrame(10, 10, 12, 14, 220)); |
54 int height = frame.height(); | 58 int height = frame.height(); |
55 int stride_y = frame.stride(kYPlane); | 59 int stride_y = frame.stride(kYPlane); |
56 int stride_u = frame.stride(kUPlane); | 60 int stride_u = frame.stride(kUPlane); |
57 int stride_v = frame.stride(kVPlane); | 61 int stride_v = frame.stride(kVPlane); |
58 // Verify that allocated size was computed correctly. | 62 // Verify that allocated size was computed correctly. |
59 EXPECT_EQ(ExpectedSize(stride_y, height, kYPlane), | 63 EXPECT_EQ(ExpectedSize(stride_y, height, kYPlane), |
60 frame.allocated_size(kYPlane)); | 64 frame.allocated_size(kYPlane)); |
61 EXPECT_EQ(ExpectedSize(stride_u, height, kUPlane), | 65 EXPECT_EQ(ExpectedSize(stride_u, height, kUPlane), |
62 frame.allocated_size(kUPlane)); | 66 frame.allocated_size(kUPlane)); |
63 EXPECT_EQ(ExpectedSize(stride_v, height, kVPlane), | 67 EXPECT_EQ(ExpectedSize(stride_v, height, kVPlane), |
64 frame.allocated_size(kVPlane)); | 68 frame.allocated_size(kVPlane)); |
65 } | 69 } |
66 | 70 |
67 TEST(TestVideoFrame, CopyFrame) { | 71 TEST(TestVideoFrame, CopyFrame) { |
68 uint32_t timestamp = 1; | 72 uint32_t timestamp = 1; |
69 int64_t ntp_time_ms = 2; | 73 int64_t ntp_time_ms = 2; |
70 int64_t render_time_ms = 3; | 74 int64_t render_time_ms = 3; |
71 int stride_y = 15; | 75 int stride_y = 15; |
72 int stride_u = 10; | 76 int stride_u = 10; |
73 int stride_v = 10; | 77 int stride_v = 10; |
74 int width = 15; | 78 int width = 15; |
75 int height = 15; | 79 int height = 15; |
76 // Copy frame. | 80 // Copy frame. |
77 VideoFrame small_frame; | 81 VideoFrame small_frame; |
78 small_frame.CreateEmptyFrame(width, height, | 82 EXPECT_EQ(0, small_frame.CreateEmptyFrame(width, height, |
79 stride_y, stride_u, stride_v); | 83 stride_y, stride_u, stride_v)); |
80 small_frame.set_timestamp(timestamp); | 84 small_frame.set_timestamp(timestamp); |
81 small_frame.set_ntp_time_ms(ntp_time_ms); | 85 small_frame.set_ntp_time_ms(ntp_time_ms); |
82 small_frame.set_render_time_ms(render_time_ms); | 86 small_frame.set_render_time_ms(render_time_ms); |
83 const int kSizeY = 400; | 87 const int kSizeY = 400; |
84 const int kSizeU = 100; | 88 const int kSizeU = 100; |
85 const int kSizeV = 100; | 89 const int kSizeV = 100; |
86 const VideoRotation kRotation = kVideoRotation_270; | 90 const VideoRotation kRotation = kVideoRotation_270; |
87 uint8_t buffer_y[kSizeY]; | 91 uint8_t buffer_y[kSizeY]; |
88 uint8_t buffer_u[kSizeU]; | 92 uint8_t buffer_u[kSizeU]; |
89 uint8_t buffer_v[kSizeV]; | 93 uint8_t buffer_v[kSizeV]; |
90 memset(buffer_y, 16, kSizeY); | 94 memset(buffer_y, 16, kSizeY); |
91 memset(buffer_u, 8, kSizeU); | 95 memset(buffer_u, 8, kSizeU); |
92 memset(buffer_v, 4, kSizeV); | 96 memset(buffer_v, 4, kSizeV); |
93 VideoFrame big_frame; | 97 VideoFrame big_frame; |
94 big_frame.CreateFrame(buffer_y, buffer_u, buffer_v, | 98 EXPECT_EQ(0, |
95 width + 5, height + 5, stride_y + 5, | 99 big_frame.CreateFrame(buffer_y, buffer_u, buffer_v, |
96 stride_u, stride_v, kRotation); | 100 width + 5, height + 5, stride_y + 5, |
| 101 stride_u, stride_v, kRotation)); |
97 // Frame of smaller dimensions. | 102 // Frame of smaller dimensions. |
98 small_frame.CopyFrame(big_frame); | 103 EXPECT_EQ(0, small_frame.CopyFrame(big_frame)); |
99 EXPECT_TRUE(test::FramesEqual(small_frame, big_frame)); | 104 EXPECT_TRUE(small_frame.EqualsFrame(big_frame)); |
100 EXPECT_EQ(kRotation, small_frame.rotation()); | 105 EXPECT_EQ(kRotation, small_frame.rotation()); |
101 | 106 |
102 // Frame of larger dimensions. | 107 // Frame of larger dimensions. |
103 small_frame.CreateEmptyFrame(width, height, | 108 EXPECT_EQ(0, small_frame.CreateEmptyFrame(width, height, |
104 stride_y, stride_u, stride_v); | 109 stride_y, stride_u, stride_v)); |
105 memset(small_frame.buffer(kYPlane), 1, small_frame.allocated_size(kYPlane)); | 110 memset(small_frame.buffer(kYPlane), 1, small_frame.allocated_size(kYPlane)); |
106 memset(small_frame.buffer(kUPlane), 2, small_frame.allocated_size(kUPlane)); | 111 memset(small_frame.buffer(kUPlane), 2, small_frame.allocated_size(kUPlane)); |
107 memset(small_frame.buffer(kVPlane), 3, small_frame.allocated_size(kVPlane)); | 112 memset(small_frame.buffer(kVPlane), 3, small_frame.allocated_size(kVPlane)); |
108 big_frame.CopyFrame(small_frame); | 113 EXPECT_EQ(0, big_frame.CopyFrame(small_frame)); |
109 EXPECT_TRUE(test::FramesEqual(small_frame, big_frame)); | 114 EXPECT_TRUE(small_frame.EqualsFrame(big_frame)); |
110 } | 115 } |
111 | 116 |
112 TEST(TestVideoFrame, ShallowCopy) { | 117 TEST(TestVideoFrame, ShallowCopy) { |
113 uint32_t timestamp = 1; | 118 uint32_t timestamp = 1; |
114 int64_t ntp_time_ms = 2; | 119 int64_t ntp_time_ms = 2; |
115 int64_t render_time_ms = 3; | 120 int64_t render_time_ms = 3; |
116 int stride_y = 15; | 121 int stride_y = 15; |
117 int stride_u = 10; | 122 int stride_u = 10; |
118 int stride_v = 10; | 123 int stride_v = 10; |
119 int width = 15; | 124 int width = 15; |
120 int height = 15; | 125 int height = 15; |
121 | 126 |
122 const int kSizeY = 400; | 127 const int kSizeY = 400; |
123 const int kSizeU = 100; | 128 const int kSizeU = 100; |
124 const int kSizeV = 100; | 129 const int kSizeV = 100; |
125 const VideoRotation kRotation = kVideoRotation_270; | 130 const VideoRotation kRotation = kVideoRotation_270; |
126 uint8_t buffer_y[kSizeY]; | 131 uint8_t buffer_y[kSizeY]; |
127 uint8_t buffer_u[kSizeU]; | 132 uint8_t buffer_u[kSizeU]; |
128 uint8_t buffer_v[kSizeV]; | 133 uint8_t buffer_v[kSizeV]; |
129 memset(buffer_y, 16, kSizeY); | 134 memset(buffer_y, 16, kSizeY); |
130 memset(buffer_u, 8, kSizeU); | 135 memset(buffer_u, 8, kSizeU); |
131 memset(buffer_v, 4, kSizeV); | 136 memset(buffer_v, 4, kSizeV); |
132 VideoFrame frame1; | 137 VideoFrame frame1; |
133 frame1.CreateFrame(buffer_y, buffer_u, buffer_v, width, height, | 138 EXPECT_EQ(0, frame1.CreateFrame(buffer_y, buffer_u, buffer_v, width, height, |
134 stride_y, stride_u, stride_v, kRotation); | 139 stride_y, stride_u, stride_v, kRotation)); |
135 frame1.set_timestamp(timestamp); | 140 frame1.set_timestamp(timestamp); |
136 frame1.set_ntp_time_ms(ntp_time_ms); | 141 frame1.set_ntp_time_ms(ntp_time_ms); |
137 frame1.set_render_time_ms(render_time_ms); | 142 frame1.set_render_time_ms(render_time_ms); |
138 VideoFrame frame2; | 143 VideoFrame frame2; |
139 frame2.ShallowCopy(frame1); | 144 frame2.ShallowCopy(frame1); |
140 | 145 |
141 // To be able to access the buffers, we need const pointers to the frames. | 146 // To be able to access the buffers, we need const pointers to the frames. |
142 const VideoFrame* const_frame1_ptr = &frame1; | 147 const VideoFrame* const_frame1_ptr = &frame1; |
143 const VideoFrame* const_frame2_ptr = &frame2; | 148 const VideoFrame* const_frame2_ptr = &frame2; |
144 | 149 |
(...skipping 15 matching lines...) Expand all Loading... |
160 frame2.set_rotation(kVideoRotation_90); | 165 frame2.set_rotation(kVideoRotation_90); |
161 | 166 |
162 EXPECT_NE(frame2.timestamp(), frame1.timestamp()); | 167 EXPECT_NE(frame2.timestamp(), frame1.timestamp()); |
163 EXPECT_NE(frame2.ntp_time_ms(), frame1.ntp_time_ms()); | 168 EXPECT_NE(frame2.ntp_time_ms(), frame1.ntp_time_ms()); |
164 EXPECT_NE(frame2.render_time_ms(), frame1.render_time_ms()); | 169 EXPECT_NE(frame2.render_time_ms(), frame1.render_time_ms()); |
165 EXPECT_NE(frame2.rotation(), frame1.rotation()); | 170 EXPECT_NE(frame2.rotation(), frame1.rotation()); |
166 } | 171 } |
167 | 172 |
168 TEST(TestVideoFrame, Reset) { | 173 TEST(TestVideoFrame, Reset) { |
169 VideoFrame frame; | 174 VideoFrame frame; |
170 frame.CreateEmptyFrame(5, 5, 5, 5, 5); | 175 ASSERT_EQ(frame.CreateEmptyFrame(5, 5, 5, 5, 5), 0); |
171 frame.set_ntp_time_ms(1); | 176 frame.set_ntp_time_ms(1); |
172 frame.set_timestamp(2); | 177 frame.set_timestamp(2); |
173 frame.set_render_time_ms(3); | 178 frame.set_render_time_ms(3); |
174 ASSERT_TRUE(frame.video_frame_buffer() != NULL); | 179 ASSERT_TRUE(frame.video_frame_buffer() != NULL); |
175 | 180 |
176 frame.Reset(); | 181 frame.Reset(); |
177 EXPECT_EQ(0u, frame.ntp_time_ms()); | 182 EXPECT_EQ(0u, frame.ntp_time_ms()); |
178 EXPECT_EQ(0u, frame.render_time_ms()); | 183 EXPECT_EQ(0u, frame.render_time_ms()); |
179 EXPECT_EQ(0u, frame.timestamp()); | 184 EXPECT_EQ(0u, frame.timestamp()); |
180 EXPECT_TRUE(frame.video_frame_buffer() == NULL); | 185 EXPECT_TRUE(frame.video_frame_buffer() == NULL); |
181 } | 186 } |
182 | 187 |
183 TEST(TestVideoFrame, CopyBuffer) { | 188 TEST(TestVideoFrame, CopyBuffer) { |
184 VideoFrame frame1, frame2; | 189 VideoFrame frame1, frame2; |
185 int width = 15; | 190 int width = 15; |
186 int height = 15; | 191 int height = 15; |
187 int stride_y = 15; | 192 int stride_y = 15; |
188 int stride_uv = 10; | 193 int stride_uv = 10; |
189 const int kSizeY = 225; | 194 const int kSizeY = 225; |
190 const int kSizeUv = 80; | 195 const int kSizeUv = 80; |
191 frame2.CreateEmptyFrame(width, height, | 196 EXPECT_EQ(0, frame2.CreateEmptyFrame(width, height, |
192 stride_y, stride_uv, stride_uv); | 197 stride_y, stride_uv, stride_uv)); |
193 uint8_t buffer_y[kSizeY]; | 198 uint8_t buffer_y[kSizeY]; |
194 uint8_t buffer_u[kSizeUv]; | 199 uint8_t buffer_u[kSizeUv]; |
195 uint8_t buffer_v[kSizeUv]; | 200 uint8_t buffer_v[kSizeUv]; |
196 memset(buffer_y, 16, kSizeY); | 201 memset(buffer_y, 16, kSizeY); |
197 memset(buffer_u, 8, kSizeUv); | 202 memset(buffer_u, 8, kSizeUv); |
198 memset(buffer_v, 4, kSizeUv); | 203 memset(buffer_v, 4, kSizeUv); |
199 frame2.CreateFrame(buffer_y, buffer_u, buffer_v, | 204 frame2.CreateFrame(buffer_y, buffer_u, buffer_v, |
200 width, height, stride_y, stride_uv, stride_uv, | 205 width, height, stride_y, stride_uv, stride_uv); |
201 kVideoRotation_0); | |
202 // Expect exactly the same pixel data. | 206 // Expect exactly the same pixel data. |
203 EXPECT_TRUE( | 207 EXPECT_TRUE(EqualPlane(buffer_y, frame2.buffer(kYPlane), stride_y, 15, 15)); |
204 test::EqualPlane(buffer_y, frame2.buffer(kYPlane), stride_y, 15, 15)); | 208 EXPECT_TRUE(EqualPlane(buffer_u, frame2.buffer(kUPlane), stride_uv, 8, 8)); |
205 EXPECT_TRUE( | 209 EXPECT_TRUE(EqualPlane(buffer_v, frame2.buffer(kVPlane), stride_uv, 8, 8)); |
206 test::EqualPlane(buffer_u, frame2.buffer(kUPlane), stride_uv, 8, 8)); | |
207 EXPECT_TRUE( | |
208 test::EqualPlane(buffer_v, frame2.buffer(kVPlane), stride_uv, 8, 8)); | |
209 | 210 |
210 // Compare size. | 211 // Compare size. |
211 EXPECT_LE(kSizeY, frame2.allocated_size(kYPlane)); | 212 EXPECT_LE(kSizeY, frame2.allocated_size(kYPlane)); |
212 EXPECT_LE(kSizeUv, frame2.allocated_size(kUPlane)); | 213 EXPECT_LE(kSizeUv, frame2.allocated_size(kUPlane)); |
213 EXPECT_LE(kSizeUv, frame2.allocated_size(kVPlane)); | 214 EXPECT_LE(kSizeUv, frame2.allocated_size(kVPlane)); |
214 } | 215 } |
215 | 216 |
216 TEST(TestVideoFrame, ReuseAllocation) { | 217 TEST(TestVideoFrame, ReuseAllocation) { |
217 VideoFrame frame; | 218 VideoFrame frame; |
218 frame.CreateEmptyFrame(640, 320, 640, 320, 320); | 219 frame.CreateEmptyFrame(640, 320, 640, 320, 320); |
(...skipping 30 matching lines...) Expand all Loading... |
249 EXPECT_EQ(10, frame.render_time_ms()); | 250 EXPECT_EQ(10, frame.render_time_ms()); |
250 EXPECT_EQ(handle, frame.native_handle()); | 251 EXPECT_EQ(handle, frame.native_handle()); |
251 | 252 |
252 frame.set_timestamp(200); | 253 frame.set_timestamp(200); |
253 EXPECT_EQ(200u, frame.timestamp()); | 254 EXPECT_EQ(200u, frame.timestamp()); |
254 frame.set_render_time_ms(20); | 255 frame.set_render_time_ms(20); |
255 EXPECT_EQ(20, frame.render_time_ms()); | 256 EXPECT_EQ(20, frame.render_time_ms()); |
256 } | 257 } |
257 | 258 |
258 } // namespace webrtc | 259 } // namespace webrtc |
OLD | NEW |