Index: webrtc/video/video_send_stream_tests.cc |
diff --git a/webrtc/video/video_send_stream_tests.cc b/webrtc/video/video_send_stream_tests.cc |
index d138893ba4cc293155b8daa7595c0f3eb715ef61..1cb42a96de557a45fef1985af7f215f8bf4625c4 100644 |
--- a/webrtc/video/video_send_stream_tests.cc |
+++ b/webrtc/video/video_send_stream_tests.cc |
@@ -1656,7 +1656,8 @@ TEST_F(VideoSendStreamTest, CapturesTextureAndVideoFrames) { |
video_send_stream_->Start(); |
test::FrameForwarder forwarder; |
- video_send_stream_->SetSource(&forwarder); |
+ video_send_stream_->SetSource(&forwarder, |
+ false /* disable_resolution_scaling */); |
for (size_t i = 0; i < input_frames.size(); i++) { |
forwarder.IncomingCapturedFrame(input_frames[i]); |
// Wait until the output frame is received before sending the next input |
@@ -1664,7 +1665,7 @@ TEST_F(VideoSendStreamTest, CapturesTextureAndVideoFrames) { |
observer.WaitOutputFrame(); |
} |
video_send_stream_->Stop(); |
- video_send_stream_->SetSource(nullptr); |
+ video_send_stream_->SetSource(nullptr, false); |
// Test if the input and output frames are the same. render_time_ms and |
// timestamp are not compared because capturer sets those values. |