| Index: webrtc/media/webrtc/webrtcvideoframe_unittest.cc
|
| diff --git a/webrtc/media/webrtc/webrtcvideoframe_unittest.cc b/webrtc/media/webrtc/webrtcvideoframe_unittest.cc
|
| index 38a6a7f2cd6711c269483999c79719d57ab1d2a8..215a4846d7608d599316e2406403fe7d0b23cbad 100644
|
| --- a/webrtc/media/webrtc/webrtcvideoframe_unittest.cc
|
| +++ b/webrtc/media/webrtc/webrtcvideoframe_unittest.cc
|
| @@ -66,9 +66,9 @@
|
| // Verify the new frame.
|
| EXPECT_EQ(5678, frame.GetTimeStamp());
|
| if (apply_rotation)
|
| - EXPECT_EQ(webrtc::kVideoRotation_0, frame.GetVideoRotation());
|
| + EXPECT_EQ(webrtc::kVideoRotation_0, frame.GetRotation());
|
| else
|
| - EXPECT_EQ(frame_rotation, frame.GetVideoRotation());
|
| + EXPECT_EQ(frame_rotation, frame.GetRotation());
|
| // If |apply_rotation| and the frame rotation is 90 or 270, width and
|
| // height are flipped.
|
| if (apply_rotation && (frame_rotation == webrtc::kVideoRotation_90
|
| @@ -233,7 +233,10 @@
|
| TEST_WEBRTCVIDEOFRAME(ConvertFromUYVYBufferStride)
|
| TEST_WEBRTCVIDEOFRAME(ConvertFromUYVYBufferInverted)
|
| // TEST_WEBRTCVIDEOFRAME(ConvertToI422Buffer)
|
| +TEST_WEBRTCVIDEOFRAME(CopyToBuffer)
|
| TEST_WEBRTCVIDEOFRAME(CopyToFrame)
|
| +TEST_WEBRTCVIDEOFRAME(Write)
|
| +TEST_WEBRTCVIDEOFRAME(CopyToBuffer1Pixel)
|
| // TEST_WEBRTCVIDEOFRAME(ConstructARGBBlackWhitePixel)
|
|
|
| TEST_WEBRTCVIDEOFRAME(StretchToFrame)
|
|
|