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

Unified Diff: webrtc/media/webrtc/webrtcvideoframefactory_unittest.cc

Issue 1688953003: Revert of Initial cleanup of cricket::VideoFrame. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/media/webrtc/webrtcvideoframe_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/media/webrtc/webrtcvideoframefactory_unittest.cc
diff --git a/webrtc/media/webrtc/webrtcvideoframefactory_unittest.cc b/webrtc/media/webrtc/webrtcvideoframefactory_unittest.cc
index fe743a784c81375137b9485f0024c20c1ee2de6c..12b04fc6b819efaba2e83b9491ce2e8fbb5ca416 100644
--- a/webrtc/media/webrtc/webrtcvideoframefactory_unittest.cc
+++ b/webrtc/media/webrtc/webrtcvideoframefactory_unittest.cc
@@ -46,11 +46,11 @@
int src_height,
bool apply_rotation) {
if (!apply_rotation) {
- EXPECT_EQ(dest_frame->GetVideoRotation(), src_rotation);
+ EXPECT_EQ(dest_frame->GetRotation(), src_rotation);
EXPECT_EQ(dest_frame->GetWidth(), src_width);
EXPECT_EQ(dest_frame->GetHeight(), src_height);
} else {
- EXPECT_EQ(dest_frame->GetVideoRotation(), webrtc::kVideoRotation_0);
+ EXPECT_EQ(dest_frame->GetRotation(), webrtc::kVideoRotation_0);
if (src_rotation == webrtc::kVideoRotation_90 ||
src_rotation == webrtc::kVideoRotation_270) {
EXPECT_EQ(dest_frame->GetWidth(), src_height);
« no previous file with comments | « webrtc/media/webrtc/webrtcvideoframe_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698