| Index: webrtc/video/receive_statistics_proxy_unittest.cc
|
| diff --git a/webrtc/video/receive_statistics_proxy_unittest.cc b/webrtc/video/receive_statistics_proxy_unittest.cc
|
| index ba4ad3aed7b9a7ea96ff00e83dba9b7e765e7e19..0c6095105661e89ed22dcc14a3ea0ea5695ff0bc 100644
|
| --- a/webrtc/video/receive_statistics_proxy_unittest.cc
|
| +++ b/webrtc/video/receive_statistics_proxy_unittest.cc
|
| @@ -94,8 +94,9 @@ TEST_F(ReceiveStatisticsProxyTest, OnDecodedFrameWithoutQpResetsQpSum) {
|
|
|
| TEST_F(ReceiveStatisticsProxyTest, OnRenderedFrameIncreasesFramesRendered) {
|
| EXPECT_EQ(0u, statistics_proxy_->GetStats().frames_rendered);
|
| - webrtc::VideoFrame frame(
|
| - webrtc::I420Buffer::Create(1, 1), 0, 0, webrtc::kVideoRotation_0);
|
| + webrtc::VideoFrame frame(webrtc::I420Buffer::Create(1, 1), 0, 0,
|
| + webrtc::kVideoRotation_0,
|
| + webrtc::kVideoContent_Default);
|
| for (uint32_t i = 1; i <= 3; ++i) {
|
| statistics_proxy_->OnRenderedFrame(frame);
|
| EXPECT_EQ(i, statistics_proxy_->GetStats().frames_rendered);
|
|
|