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

Unified Diff: webrtc/modules/rtp_rtcp/source/rtcp_format_remb_unittest.cc

Issue 1368943002: Fix suspend below min bitrate in new API by making it possible to set min bitrate at the receive-si… (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Merge. Created 5 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
Index: webrtc/modules/rtp_rtcp/source/rtcp_format_remb_unittest.cc
diff --git a/webrtc/modules/rtp_rtcp/source/rtcp_format_remb_unittest.cc b/webrtc/modules/rtp_rtcp/source/rtcp_format_remb_unittest.cc
index eb6d35ed3e2708f357331b8651a02dab4e8e8004..ad7d66b76fbbf88199df6e78561e5f67177e872a 100644
--- a/webrtc/modules/rtp_rtcp/source/rtcp_format_remb_unittest.cc
+++ b/webrtc/modules/rtp_rtcp/source/rtcp_format_remb_unittest.cc
@@ -55,8 +55,6 @@ class TestTransport : public Transport {
class RtcpFormatRembTest : public ::testing::Test {
protected:
- static const uint32_t kRemoteBitrateEstimatorMinBitrateBps = 30000;
-
RtcpFormatRembTest()
: over_use_detector_options_(),
system_clock_(Clock::GetRealTimeClock()),
@@ -66,10 +64,9 @@ class RtcpFormatRembTest : public ::testing::Test {
rtcp_receiver_(nullptr),
test_transport_(nullptr),
remote_bitrate_observer_(),
- remote_bitrate_estimator_(new RemoteBitrateEstimatorSingleStream(
- &remote_bitrate_observer_,
- system_clock_,
- kRemoteBitrateEstimatorMinBitrateBps)) {}
+ remote_bitrate_estimator_(
+ new RemoteBitrateEstimatorSingleStream(&remote_bitrate_observer_,
+ system_clock_)) {}
void SetUp() override;
void TearDown() override;

Powered by Google App Engine
This is Rietveld 408576698