Lines Matching refs:BandwidthEstimator
36 BandwidthEstimator::BandwidthEstimator(int max_packets_per_timeslice, in BandwidthEstimator() function in openscreen::cast::BandwidthEstimator
48 BandwidthEstimator::~BandwidthEstimator() = default;
50 void BandwidthEstimator::OnBurstComplete(int num_packets_sent, in OnBurstComplete()
56 void BandwidthEstimator::OnRtcpReceived( in OnRtcpReceived()
66 void BandwidthEstimator::OnPayloadReceived( in OnPayloadReceived()
77 int BandwidthEstimator::ComputeNetworkBandwidth() const { in ComputeNetworkBandwidth()
104 constexpr int BandwidthEstimator::kNumTimeslices;
106 BandwidthEstimator::FlowTracker::FlowTracker(Clock::duration timeslice_duration, in FlowTracker()
110 BandwidthEstimator::FlowTracker::~FlowTracker() = default;
112 void BandwidthEstimator::FlowTracker::AdvanceToIncludeTime( in AdvanceToIncludeTime()
130 void BandwidthEstimator::FlowTracker::Accumulate(int32_t amount, in Accumulate()
147 int32_t BandwidthEstimator::FlowTracker::Sum() const { in Sum()