Index: webrtc/media/engine/webrtcvideoengine2_unittest.cc |
diff --git a/webrtc/media/engine/webrtcvideoengine2_unittest.cc b/webrtc/media/engine/webrtcvideoengine2_unittest.cc |
index b44eb9907d7a2a2bacb731532dee1aab0f4f3533..fa3be9946d5e6343b65b7b8d093ae416afe3b4ba 100644 |
--- a/webrtc/media/engine/webrtcvideoengine2_unittest.cc |
+++ b/webrtc/media/engine/webrtcvideoengine2_unittest.cc |
@@ -2061,7 +2061,7 @@ TEST_F(WebRtcVideoChannel2Test, EstimatesNtpStartTimeCorrectly) { |
video_frame.set_timestamp(kInitialTimestamp); |
// Initial NTP time is not available on the first frame, but should still be |
// able to be estimated. |
- stream->InjectFrame(video_frame, 0); |
+ stream->InjectFrame(video_frame); |
EXPECT_EQ(1, renderer.num_rendered_frames()); |
@@ -2070,7 +2070,7 @@ TEST_F(WebRtcVideoChannel2Test, EstimatesNtpStartTimeCorrectly) { |
// here. |
video_frame.set_timestamp(kFrameOffsetMs * 90 - 1); |
video_frame.set_ntp_time_ms(kInitialNtpTimeMs + kFrameOffsetMs); |
- stream->InjectFrame(video_frame, 0); |
+ stream->InjectFrame(video_frame); |
EXPECT_EQ(2, renderer.num_rendered_frames()); |