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

Unified Diff: webrtc/video/video_quality_test.cc

Issue 2453243003: Remove voe::Channel::StopReceive() and associated logic. (Closed)
Patch Set: 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 ab082d17b97e8b7e16a302ff033a7028436ac249..4f6ef8045b2fe904b06a9711636758097caa9f0f 100644
--- a/webrtc/video/video_quality_test.cc
+++ b/webrtc/video/video_quality_test.cc
@@ -1362,7 +1362,6 @@ void VideoQualityTest::RunWithRenderers(const Params& params) {
// Start receiving audio.
audio_receive_stream->Start();
EXPECT_EQ(0, voe.base->StartPlayout(voe.receive_channel_id));
- EXPECT_EQ(0, voe.base->StartReceive(voe.receive_channel_id));
// Start sending audio.
audio_send_stream_->Start();
@@ -1377,7 +1376,6 @@ void VideoQualityTest::RunWithRenderers(const Params& params) {
audio_send_stream_->Stop();
// Stop receiving audio.
- EXPECT_EQ(0, voe.base->StopReceive(voe.receive_channel_id));
EXPECT_EQ(0, voe.base->StopPlayout(voe.receive_channel_id));
audio_receive_stream->Stop();
}

Powered by Google App Engine
This is Rietveld 408576698