Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Unified Diff: webrtc/test/call_test.cc

Issue 2304363002: Let ViEEncoder express resolution requests as Sinkwants (Closed)
Patch Set: Fix broken test RunOnTqNormalUsage. Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/test/call_test.cc
diff --git a/webrtc/test/call_test.cc b/webrtc/test/call_test.cc
index 57aca89dc7849deb90a628a8a961c0fddca62cf7..9586211a4f9765788b1a34122ceab4fc47cbd5e7 100644
--- a/webrtc/test/call_test.cc
+++ b/webrtc/test/call_test.cc
@@ -247,7 +247,7 @@ void CallTest::CreateFrameGeneratorCapturerWithDrift(Clock* clock,
int height) {
frame_generator_capturer_.reset(test::FrameGeneratorCapturer::Create(
width, height, framerate * speed, clock));
- video_send_stream_->SetSource(frame_generator_capturer_.get());
+ video_send_stream_->SetSource(frame_generator_capturer_.get(), false);
}
void CallTest::CreateFrameGeneratorCapturer(int framerate,
@@ -255,7 +255,7 @@ void CallTest::CreateFrameGeneratorCapturer(int framerate,
int height) {
frame_generator_capturer_.reset(
test::FrameGeneratorCapturer::Create(width, height, framerate, clock_));
- video_send_stream_->SetSource(frame_generator_capturer_.get());
+ video_send_stream_->SetSource(frame_generator_capturer_.get(), false);
}
void CallTest::CreateFakeAudioDevices() {

Powered by Google App Engine
This is Rietveld 408576698