OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2011 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 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 | 59 |
60 // Create the new frame from the CapturedFrame. | 60 // Create the new frame from the CapturedFrame. |
61 cricket::WebRtcVideoFrame frame; | 61 cricket::WebRtcVideoFrame frame; |
62 EXPECT_TRUE( | 62 EXPECT_TRUE( |
63 frame.Init(&captured_frame, cropped_width, cropped_height, | 63 frame.Init(&captured_frame, cropped_width, cropped_height, |
64 apply_rotation)); | 64 apply_rotation)); |
65 | 65 |
66 // Verify the new frame. | 66 // Verify the new frame. |
67 EXPECT_EQ(5678, frame.GetTimeStamp()); | 67 EXPECT_EQ(5678, frame.GetTimeStamp()); |
68 if (apply_rotation) | 68 if (apply_rotation) |
69 EXPECT_EQ(webrtc::kVideoRotation_0, frame.GetRotation()); | 69 EXPECT_EQ(webrtc::kVideoRotation_0, frame.GetVideoRotation()); |
70 else | 70 else |
71 EXPECT_EQ(frame_rotation, frame.GetRotation()); | 71 EXPECT_EQ(frame_rotation, frame.GetVideoRotation()); |
72 // If |apply_rotation| and the frame rotation is 90 or 270, width and | 72 // If |apply_rotation| and the frame rotation is 90 or 270, width and |
73 // height are flipped. | 73 // height are flipped. |
74 if (apply_rotation && (frame_rotation == webrtc::kVideoRotation_90 | 74 if (apply_rotation && (frame_rotation == webrtc::kVideoRotation_90 |
75 || frame_rotation == webrtc::kVideoRotation_270)) { | 75 || frame_rotation == webrtc::kVideoRotation_270)) { |
76 EXPECT_EQ(static_cast<size_t>(cropped_width), frame.GetHeight()); | 76 EXPECT_EQ(static_cast<size_t>(cropped_width), frame.GetHeight()); |
77 EXPECT_EQ(static_cast<size_t>(cropped_height), frame.GetWidth()); | 77 EXPECT_EQ(static_cast<size_t>(cropped_height), frame.GetWidth()); |
78 } else { | 78 } else { |
79 EXPECT_EQ(static_cast<size_t>(cropped_width), frame.GetWidth()); | 79 EXPECT_EQ(static_cast<size_t>(cropped_width), frame.GetWidth()); |
80 EXPECT_EQ(static_cast<size_t>(cropped_height), frame.GetHeight()); | 80 EXPECT_EQ(static_cast<size_t>(cropped_height), frame.GetHeight()); |
81 } | 81 } |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 TEST_WEBRTCVIDEOFRAME(ConvertFromI400Buffer) | 226 TEST_WEBRTCVIDEOFRAME(ConvertFromI400Buffer) |
227 TEST_WEBRTCVIDEOFRAME(ConvertFromI400BufferStride) | 227 TEST_WEBRTCVIDEOFRAME(ConvertFromI400BufferStride) |
228 TEST_WEBRTCVIDEOFRAME(ConvertFromI400BufferInverted) | 228 TEST_WEBRTCVIDEOFRAME(ConvertFromI400BufferInverted) |
229 TEST_WEBRTCVIDEOFRAME(ConvertFromYUY2Buffer) | 229 TEST_WEBRTCVIDEOFRAME(ConvertFromYUY2Buffer) |
230 TEST_WEBRTCVIDEOFRAME(ConvertFromYUY2BufferStride) | 230 TEST_WEBRTCVIDEOFRAME(ConvertFromYUY2BufferStride) |
231 TEST_WEBRTCVIDEOFRAME(ConvertFromYUY2BufferInverted) | 231 TEST_WEBRTCVIDEOFRAME(ConvertFromYUY2BufferInverted) |
232 TEST_WEBRTCVIDEOFRAME(ConvertFromUYVYBuffer) | 232 TEST_WEBRTCVIDEOFRAME(ConvertFromUYVYBuffer) |
233 TEST_WEBRTCVIDEOFRAME(ConvertFromUYVYBufferStride) | 233 TEST_WEBRTCVIDEOFRAME(ConvertFromUYVYBufferStride) |
234 TEST_WEBRTCVIDEOFRAME(ConvertFromUYVYBufferInverted) | 234 TEST_WEBRTCVIDEOFRAME(ConvertFromUYVYBufferInverted) |
235 // TEST_WEBRTCVIDEOFRAME(ConvertToI422Buffer) | 235 // TEST_WEBRTCVIDEOFRAME(ConvertToI422Buffer) |
236 TEST_WEBRTCVIDEOFRAME(CopyToBuffer) | |
237 TEST_WEBRTCVIDEOFRAME(CopyToFrame) | 236 TEST_WEBRTCVIDEOFRAME(CopyToFrame) |
238 TEST_WEBRTCVIDEOFRAME(Write) | |
239 TEST_WEBRTCVIDEOFRAME(CopyToBuffer1Pixel) | |
240 // TEST_WEBRTCVIDEOFRAME(ConstructARGBBlackWhitePixel) | 237 // TEST_WEBRTCVIDEOFRAME(ConstructARGBBlackWhitePixel) |
241 | 238 |
242 TEST_WEBRTCVIDEOFRAME(StretchToFrame) | 239 TEST_WEBRTCVIDEOFRAME(StretchToFrame) |
243 TEST_WEBRTCVIDEOFRAME(Copy) | 240 TEST_WEBRTCVIDEOFRAME(Copy) |
244 TEST_WEBRTCVIDEOFRAME(CopyIsRef) | 241 TEST_WEBRTCVIDEOFRAME(CopyIsRef) |
245 TEST_WEBRTCVIDEOFRAME(MakeExclusive) | 242 TEST_WEBRTCVIDEOFRAME(MakeExclusive) |
246 | 243 |
247 // These functions test implementation-specific details. | 244 // These functions test implementation-specific details. |
248 // Tests the Init function with different cropped size. | 245 // Tests the Init function with different cropped size. |
249 TEST_F(WebRtcVideoFrameTest, InitEvenSize) { | 246 TEST_F(WebRtcVideoFrameTest, InitEvenSize) { |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 | 317 |
321 // Claim the frame 2 needs to be rotated for another 270 degree. The output | 318 // Claim the frame 2 needs to be rotated for another 270 degree. The output |
322 // from frame 2 rotation should be the same as frame 1. | 319 // from frame 2 rotation should be the same as frame 1. |
323 applied90->SetRotation(webrtc::kVideoRotation_270); | 320 applied90->SetRotation(webrtc::kVideoRotation_270); |
324 const cricket::VideoFrame* applied360 = | 321 const cricket::VideoFrame* applied360 = |
325 applied90->GetCopyWithRotationApplied(); | 322 applied90->GetCopyWithRotationApplied(); |
326 EXPECT_TRUE(applied360); | 323 EXPECT_TRUE(applied360); |
327 EXPECT_EQ(applied360->GetVideoRotation(), webrtc::kVideoRotation_0); | 324 EXPECT_EQ(applied360->GetVideoRotation(), webrtc::kVideoRotation_0); |
328 EXPECT_TRUE(IsEqual(applied0, *applied360, 0)); | 325 EXPECT_TRUE(IsEqual(applied0, *applied360, 0)); |
329 } | 326 } |
OLD | NEW |