| Index: webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc
 | 
| diff --git a/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc b/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc
 | 
| index 7e0ac312c804df4cb4a0c67e135ed7c1f4397b93..86df1838c0f4d6c1b622d35f712102d574506e1c 100644
 | 
| --- a/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc
 | 
| +++ b/webrtc/modules/rtp_rtcp/source/rtp_rtcp_impl_unittest.cc
 | 
| @@ -194,14 +194,11 @@ class RtpRtcpImplTest : public ::testing::Test {
 | 
|  
 | 
|    void SendFrame(const RtpRtcpModule* module, uint8_t tid) {
 | 
|      RTPVideoHeaderVP8 vp8_header = {};
 | 
| +    PlayoutDelay playout_delay = {-1, -1};
 | 
|      vp8_header.temporalIdx = tid;
 | 
| -    RTPVideoHeader rtp_video_header = {codec_.width,
 | 
| -                                       codec_.height,
 | 
| -                                       kVideoRotation_0,
 | 
| -                                       true,
 | 
| -                                       0,
 | 
| -                                       kRtpVideoVp8,
 | 
| -                                       {vp8_header}};
 | 
| +    RTPVideoHeader rtp_video_header = {
 | 
| +        codec_.width, codec_.height, kVideoRotation_0, {playout_delay}, true, 0,
 | 
| +        kRtpVideoVp8, {vp8_header}};
 | 
|  
 | 
|      const uint8_t payload[100] = {0};
 | 
|      EXPECT_EQ(0, module->impl_->SendOutgoingData(kVideoFrameKey,
 | 
| 
 |