Skip to content

Commit

Permalink
update loss-based threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
wangyu- committed Oct 3, 2022
1 parent 68bfeca commit 352bd7e
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,14 @@ constexpr TimeDelta kRtcEventLogPeriod = TimeDelta::Millis(5000);
// Expecting that RTCP feedback is sent uniformly within [0.5, 1.5]s intervals.
constexpr TimeDelta kMaxRtcpFeedbackInterval = TimeDelta::Millis(5000);

#if ENABLE_WHIST_CHANGE
constexpr float kDefaultLowLossThreshold = 0.06f;
constexpr float kDefaultHighLossThreshold = 0.13f;
#else
constexpr float kDefaultLowLossThreshold = 0.02f;
constexpr float kDefaultHighLossThreshold = 0.1f;
#endif

constexpr DataRate kDefaultBitrateThreshold = DataRate::Zero();

struct UmaRampUpMetric {
Expand Down

0 comments on commit 352bd7e

Please sign in to comment.