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 4ef33abe72c69f53f650463a62d97a9e36b40ef0..8d39d153f198f81a53bde766a778d345f6fea35c 100644 |
--- a/webrtc/video/video_send_stream_tests.cc |
+++ b/webrtc/video/video_send_stream_tests.cc |
@@ -1581,7 +1581,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 |
@@ -1589,7 +1590,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. |