Index: webrtc/media/engine/webrtcvideoengine2_unittest.cc |
diff --git a/webrtc/media/engine/webrtcvideoengine2_unittest.cc b/webrtc/media/engine/webrtcvideoengine2_unittest.cc |
index f3f1ee855e7ba4768d71e64342c02771c306e1f0..b5e837a75dd76b2eb8038f0805b14225a57e32ad 100644 |
--- a/webrtc/media/engine/webrtcvideoengine2_unittest.cc |
+++ b/webrtc/media/engine/webrtcvideoengine2_unittest.cc |
@@ -2021,7 +2021,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()); |
@@ -2030,7 +2030,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()); |
@@ -3299,4 +3299,3 @@ TEST_F(WebRtcVideoChannel2SimulcastTest, SetSendCodecsWithOddSizeInSimulcast) { |
VerifySimulcastSettings(codec, 2, 2); |
} |
} // namespace cricket |
- |