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

Unified Diff: webrtc/media/base/videoengine_unittest.h

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/media/base/rtpdataengine_unittest.cc ('k') | webrtc/media/engine/simulcast.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/media/base/videoengine_unittest.h
diff --git a/webrtc/media/base/videoengine_unittest.h b/webrtc/media/base/videoengine_unittest.h
index 01a4f76ca766183ba12564515ae661009998b535..77714d4da7735876a27a582836a154ccf6915be7 100644
--- a/webrtc/media/base/videoengine_unittest.h
+++ b/webrtc/media/base/videoengine_unittest.h
@@ -610,9 +610,9 @@ class VideoMediaChannelTest : public testing::Test,
void SetSendBandwidth() {
cricket::VideoSendParameters parameters;
parameters.codecs.push_back(DefaultCodec());
- parameters.max_bandwidth_bps = -1; // <= 0 means unlimited.
+ parameters.max_bitrate_bps = rtc::Optional<int>(); // unlimited.
EXPECT_TRUE(channel_->SetSendParameters(parameters));
- parameters.max_bandwidth_bps = 128 * 1024;
+ parameters.max_bitrate_bps = rtc::Optional<int>(128 * 1024);
EXPECT_TRUE(channel_->SetSendParameters(parameters));
}
// Test that we can set the SSRC for the default send source.
« no previous file with comments | « webrtc/media/base/rtpdataengine_unittest.cc ('k') | webrtc/media/engine/simulcast.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698