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

Unified Diff: webrtc/api/webrtcsession_unittest.cc

Issue 1813763005: Updated structures and functions for setting the max bitrate limit to take rtc::Optional<int> Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Code review feedback Created 4 years, 9 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/api/webrtcsdp_unittest.cc ('k') | webrtc/base/optional.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/api/webrtcsession_unittest.cc
diff --git a/webrtc/api/webrtcsession_unittest.cc b/webrtc/api/webrtcsession_unittest.cc
index 18c1a95116e5e812c0f784137c5fb28a463e895c..77584a03ba14a1c109896bd2ff9fe0ed46b33dd7 100644
--- a/webrtc/api/webrtcsession_unittest.cc
+++ b/webrtc/api/webrtcsession_unittest.cc
@@ -3477,25 +3477,25 @@ TEST_F(WebRtcSessionTest, SetVideoMaxSendBitrate) {
cricket::FakeVideoMediaChannel* channel = media_engine_->GetVideoChannel(0);
ASSERT_TRUE(channel != NULL);
uint32_t send_ssrc = channel->send_streams()[0].first_ssrc();
- EXPECT_EQ(-1, channel->max_bps());
+ EXPECT_EQ(rtc::Optional<int>(), channel->max_bps());
webrtc::RtpParameters params = session_->GetVideoRtpParameters(send_ssrc);
EXPECT_EQ(1, params.encodings.size());
- EXPECT_EQ(-1, params.encodings[0].max_bitrate_bps);
- params.encodings[0].max_bitrate_bps = 1000;
+ EXPECT_EQ(rtc::Optional<int>(), params.encodings[0].max_bitrate_bps);
+ params.encodings[0].max_bitrate_bps = rtc::Optional<int>(1000);
EXPECT_TRUE(session_->SetVideoRtpParameters(send_ssrc, params));
// Read back the parameters and verify they have been changed.
params = session_->GetVideoRtpParameters(send_ssrc);
EXPECT_EQ(1, params.encodings.size());
- EXPECT_EQ(1000, params.encodings[0].max_bitrate_bps);
+ EXPECT_EQ(rtc::Optional<int>(1000), params.encodings[0].max_bitrate_bps);
// Verify that the video channel received the new parameters.
params = channel->GetRtpParameters(send_ssrc);
EXPECT_EQ(1, params.encodings.size());
- EXPECT_EQ(1000, params.encodings[0].max_bitrate_bps);
+ EXPECT_EQ(rtc::Optional<int>(1000), params.encodings[0].max_bitrate_bps);
// Verify that the global bitrate limit has not been changed.
- EXPECT_EQ(-1, channel->max_bps());
+ EXPECT_EQ(rtc::Optional<int>(), channel->max_bps());
}
TEST_F(WebRtcSessionTest, SetVideoSend) {
« no previous file with comments | « webrtc/api/webrtcsdp_unittest.cc ('k') | webrtc/base/optional.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698