Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(204)

Side by Side Diff: webrtc/media/engine/webrtcvideoframe_unittest.cc

Issue 2058043002: Delete GetExecutablePath and related unused code. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Trivial rebase. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/media/base/videoframe_unittest.h ('k') | webrtc/media/media.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 EXPECT_EQ(frame1.width(), frame2->width()); 306 EXPECT_EQ(frame1.width(), frame2->width());
307 EXPECT_EQ(frame1.height(), frame2->height()); 307 EXPECT_EQ(frame1.height(), frame2->height());
308 EXPECT_EQ(frame1.GetTimeStamp(), frame2->GetTimeStamp()); 308 EXPECT_EQ(frame1.GetTimeStamp(), frame2->GetTimeStamp());
309 EXPECT_EQ(frame1.timestamp_us(), frame2->timestamp_us()); 309 EXPECT_EQ(frame1.timestamp_us(), frame2->timestamp_us());
310 delete frame2; 310 delete frame2;
311 } 311 }
312 312
313 TEST_F(WebRtcVideoFrameTest, ApplyRotationToFrame) { 313 TEST_F(WebRtcVideoFrameTest, ApplyRotationToFrame) {
314 WebRtcVideoTestFrame applied0; 314 WebRtcVideoTestFrame applied0;
315 EXPECT_TRUE(IsNull(applied0)); 315 EXPECT_TRUE(IsNull(applied0));
316 std::unique_ptr<rtc::MemoryStream> ms(CreateYuvSample(kWidth, kHeight, 12)); 316 EXPECT_TRUE(LoadFrame(CreateYuvSample(kWidth, kHeight, 12).get(),
317 EXPECT_TRUE( 317 cricket::FOURCC_I420, kWidth, kHeight, &applied0));
318 LoadFrame(ms.get(), cricket::FOURCC_I420, kWidth, kHeight, &applied0));
319 318
320 // Claim that this frame needs to be rotated for 90 degree. 319 // Claim that this frame needs to be rotated for 90 degree.
321 applied0.set_rotation(webrtc::kVideoRotation_90); 320 applied0.set_rotation(webrtc::kVideoRotation_90);
322 321
323 // Apply rotation on frame 1. Output should be different from frame 1. 322 // Apply rotation on frame 1. Output should be different from frame 1.
324 WebRtcVideoTestFrame* applied90 = const_cast<WebRtcVideoTestFrame*>( 323 WebRtcVideoTestFrame* applied90 = const_cast<WebRtcVideoTestFrame*>(
325 static_cast<const WebRtcVideoTestFrame*>( 324 static_cast<const WebRtcVideoTestFrame*>(
326 applied0.GetCopyWithRotationApplied())); 325 applied0.GetCopyWithRotationApplied()));
327 EXPECT_TRUE(applied90); 326 EXPECT_TRUE(applied90);
328 EXPECT_EQ(applied90->rotation(), webrtc::kVideoRotation_0); 327 EXPECT_EQ(applied90->rotation(), webrtc::kVideoRotation_0);
329 EXPECT_FALSE(IsEqual(applied0, *applied90, 0)); 328 EXPECT_FALSE(IsEqual(applied0, *applied90, 0));
330 329
331 // Claim the frame 2 needs to be rotated for another 270 degree. The output 330 // Claim the frame 2 needs to be rotated for another 270 degree. The output
332 // from frame 2 rotation should be the same as frame 1. 331 // from frame 2 rotation should be the same as frame 1.
333 applied90->set_rotation(webrtc::kVideoRotation_270); 332 applied90->set_rotation(webrtc::kVideoRotation_270);
334 const cricket::VideoFrame* applied360 = 333 const cricket::VideoFrame* applied360 =
335 applied90->GetCopyWithRotationApplied(); 334 applied90->GetCopyWithRotationApplied();
336 EXPECT_TRUE(applied360); 335 EXPECT_TRUE(applied360);
337 EXPECT_EQ(applied360->rotation(), webrtc::kVideoRotation_0); 336 EXPECT_EQ(applied360->rotation(), webrtc::kVideoRotation_0);
338 EXPECT_TRUE(IsEqual(applied0, *applied360, 0)); 337 EXPECT_TRUE(IsEqual(applied0, *applied360, 0));
339 } 338 }
OLDNEW
« no previous file with comments | « webrtc/media/base/videoframe_unittest.h ('k') | webrtc/media/media.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698