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

Unified Diff: webrtc/media/engine/webrtcvideoengine2_unittest.cc

Issue 2246313002: If encoding is inactive, don't start sending when stream is reconfigured. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Making a test assertion better (don't compare pointer addresses). Created 4 years, 3 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
« no previous file with comments | « webrtc/media/engine/webrtcvideoengine2.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/media/engine/webrtcvideoengine2_unittest.cc
diff --git a/webrtc/media/engine/webrtcvideoengine2_unittest.cc b/webrtc/media/engine/webrtcvideoengine2_unittest.cc
index 260fca6eaac28e584afdbc4928dafc4366af0610..b9c6604d5208b8fdb04e6d6fc2e8c2e8daa6490c 100644
--- a/webrtc/media/engine/webrtcvideoengine2_unittest.cc
+++ b/webrtc/media/engine/webrtcvideoengine2_unittest.cc
@@ -3459,8 +3459,8 @@ TEST_F(WebRtcVideoChannel2Test,
EXPECT_FALSE(channel_->SetRtpSendParameters(last_ssrc_, parameters));
}
-// Test that a stream will not be sending if its encoding is made
-// inactive through SetRtpSendParameters.
+// Test that a stream will not be sending if its encoding is made inactive
+// through SetRtpSendParameters.
// TODO(deadbeef): Update this test when we start supporting setting parameters
// for each encoding individually.
TEST_F(WebRtcVideoChannel2Test, SetRtpSendParametersEncodingsActive) {
@@ -3482,6 +3482,46 @@ TEST_F(WebRtcVideoChannel2Test, SetRtpSendParametersEncodingsActive) {
EXPECT_TRUE(stream->IsSending());
}
+// Test that if a stream is reconfigured (due to a codec change or other
+// change) while its encoding is still inactive, it doesn't start sending.
+TEST_F(WebRtcVideoChannel2Test,
+ InactiveStreamDoesntStartSendingWhenReconfigured) {
+ // Set an initial codec list, which will be modified later.
+ cricket::VideoSendParameters parameters1;
+ parameters1.codecs.push_back(kVp8Codec);
+ parameters1.codecs.push_back(kVp9Codec);
+ EXPECT_TRUE(channel_->SetSendParameters(parameters1));
+
+ FakeVideoSendStream* stream = AddSendStream();
+ EXPECT_TRUE(channel_->SetSend(true));
+ EXPECT_TRUE(stream->IsSending());
+
+ // Get current parameters and change "active" to false.
+ webrtc::RtpParameters parameters = channel_->GetRtpSendParameters(last_ssrc_);
+ ASSERT_EQ(1u, parameters.encodings.size());
+ ASSERT_TRUE(parameters.encodings[0].active);
+ parameters.encodings[0].active = false;
+ EXPECT_EQ(1u, GetFakeSendStreams().size());
+ EXPECT_EQ(1, fake_call_->GetNumCreatedSendStreams());
+ EXPECT_TRUE(channel_->SetRtpSendParameters(last_ssrc_, parameters));
+ EXPECT_FALSE(stream->IsSending());
+
+ // Reorder the codec list, causing the stream to be reconfigured.
+ cricket::VideoSendParameters parameters2;
+ parameters2.codecs.push_back(kVp9Codec);
+ parameters2.codecs.push_back(kVp8Codec);
+ EXPECT_TRUE(channel_->SetSendParameters(parameters2));
+ auto new_streams = GetFakeSendStreams();
+ // Assert that a new underlying stream was created due to the codec change.
+ // Otherwise, this test isn't testing what it set out to test.
+ EXPECT_EQ(1u, GetFakeSendStreams().size());
+ EXPECT_EQ(2, fake_call_->GetNumCreatedSendStreams());
+
+ // Verify that we still are not sending anything, due to the inactive
+ // encoding.
+ EXPECT_FALSE(new_streams[0]->IsSending());
+}
+
// Test that GetRtpSendParameters returns the currently configured codecs.
TEST_F(WebRtcVideoChannel2Test, GetRtpSendParametersCodecs) {
AddSendStream();
« no previous file with comments | « webrtc/media/engine/webrtcvideoengine2.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698