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

Unified Diff: webrtc/video/video_quality_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/video/video_quality_test.cc
diff --git a/webrtc/video/video_quality_test.cc b/webrtc/video/video_quality_test.cc
index dabe50067697b11dd0901d0d2a47113341bcf65b..1a1411a77b1e31ffde0150962e3a6f5a11e5c319 100644
--- a/webrtc/video/video_quality_test.cc
+++ b/webrtc/video/video_quality_test.cc
@@ -1212,7 +1212,7 @@ void VideoQualityTest::RunWithAnalyzer(const Params& params) {
CreateVideoStreams();
analyzer.SetSendStream(video_send_stream_);
- video_send_stream_->SetSource(analyzer.OutputInterface());
+ video_send_stream_->SetSource(analyzer.OutputInterface(), false);
CreateCapturer();
rtc::VideoSinkWants wants;
@@ -1312,7 +1312,7 @@ void VideoQualityTest::RunWithRenderers(const Params& params) {
VideoReceiveStream* video_receive_stream =
call->CreateVideoReceiveStream(video_receive_configs_[stream_id].Copy());
CreateCapturer();
- video_send_stream_->SetSource(capturer_.get());
+ video_send_stream_->SetSource(capturer_.get(), false);
AudioReceiveStream* audio_receive_stream = nullptr;
if (params_.audio) {

Powered by Google App Engine
This is Rietveld 408576698