Existing code was inconsistent about whether to use uint16_t, int, unsigned int, or uint32_t, and sometimes silently truncated one to another, or truncated int64_t. Because most core time-handling functions use int64_t, being consistent about using int64_t unless otherwise necessary minimizes the number of explicit or implicit casts. BUG=chromium:81439 TEST=none R=henrik.lundin@webrtc.org, holmer@google.com, tommi@webrtc.org Review URL: https://webrtc-codereview.appspot.com/31349004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@8045 4adac7df-926f-26a2-2b94-8c16560cd09d
81 lines
3.1 KiB
C++
81 lines
3.1 KiB
C++
/*
|
|
* Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_MIMD_RATE_CONTROL_H_
|
|
#define WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_MIMD_RATE_CONTROL_H_
|
|
|
|
#include "webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h"
|
|
#include "webrtc/modules/remote_bitrate_estimator/remote_rate_control.h"
|
|
|
|
namespace webrtc {
|
|
|
|
// A RemoteRateControl implementation based on multiplicative increases of
|
|
// bitrate when no over-use is detected and multiplicative decreases when
|
|
// over-uses are detected.
|
|
class MimdRateControl : public RemoteRateControl {
|
|
public:
|
|
explicit MimdRateControl(uint32_t min_bitrate_bps);
|
|
virtual ~MimdRateControl() {}
|
|
|
|
// Implements RemoteRateControl.
|
|
virtual RateControlType GetControlType() const OVERRIDE;
|
|
virtual uint32_t GetMinBitrate() const OVERRIDE;
|
|
virtual bool ValidEstimate() const OVERRIDE;
|
|
virtual int64_t GetFeedbackInterval() const OVERRIDE;
|
|
virtual bool TimeToReduceFurther(
|
|
int64_t time_now, uint32_t incoming_bitrate_bps) const OVERRIDE;
|
|
virtual uint32_t LatestEstimate() const OVERRIDE;
|
|
virtual uint32_t UpdateBandwidthEstimate(int64_t now_ms) OVERRIDE;
|
|
virtual void SetRtt(int64_t rtt) OVERRIDE;
|
|
virtual RateControlRegion Update(const RateControlInput* input,
|
|
int64_t now_ms) OVERRIDE;
|
|
virtual void SetEstimate(int bitrate_bps, int64_t now_ms) OVERRIDE;
|
|
|
|
private:
|
|
uint32_t ChangeBitRate(uint32_t current_bit_rate,
|
|
uint32_t incoming_bit_rate,
|
|
double delay_factor,
|
|
int64_t now_ms);
|
|
double RateIncreaseFactor(int64_t now_ms,
|
|
int64_t last_ms,
|
|
int64_t reaction_time_ms,
|
|
double noise_var) const;
|
|
void UpdateChangePeriod(int64_t now_ms);
|
|
void UpdateMaxBitRateEstimate(float incoming_bit_rate_kbps);
|
|
void ChangeState(const RateControlInput& input, int64_t now_ms);
|
|
void ChangeState(RateControlState new_state);
|
|
void ChangeRegion(RateControlRegion region);
|
|
|
|
uint32_t min_configured_bit_rate_;
|
|
uint32_t max_configured_bit_rate_;
|
|
uint32_t current_bit_rate_;
|
|
uint32_t max_hold_rate_;
|
|
float avg_max_bit_rate_;
|
|
float var_max_bit_rate_;
|
|
RateControlState rate_control_state_;
|
|
RateControlState came_from_state_;
|
|
RateControlRegion rate_control_region_;
|
|
int64_t last_bit_rate_change_;
|
|
RateControlInput current_input_;
|
|
bool updated_;
|
|
int64_t time_first_incoming_estimate_;
|
|
bool initialized_bit_rate_;
|
|
float avg_change_period_;
|
|
int64_t last_change_ms_;
|
|
float beta_;
|
|
int64_t rtt_;
|
|
int64_t time_of_last_log_;
|
|
|
|
DISALLOW_IMPLICIT_CONSTRUCTORS(MimdRateControl);
|
|
};
|
|
} // namespace webrtc
|
|
|
|
#endif // WEBRTC_MODULES_REMOTE_BITRATE_ESTIMATOR_MIMD_RATE_CONTROL_H_
|