LeviLamina
Loading...
Searching...
No Matches
LinkCapacityEstimator.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace webrtc { class DataRate; }
8// clang-format on
9
10namespace webrtc {
11
12class LinkCapacityEstimator {
13public:
14 // member variables
15 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 LinkCapacityEstimator& operator=(LinkCapacityEstimator const&);
23 LinkCapacityEstimator(LinkCapacityEstimator const&);
24
25public:
26 // member functions
27 // NOLINTBEGIN
29
30 MCNAPI ::webrtc::DataRate LowerBound() const;
31
32 MCNAPI void OnOveruseDetected(::webrtc::DataRate acknowledged_rate);
33
34 MCNAPI void Reset();
35
36 MCNAPI void Update(::webrtc::DataRate capacity_sample, double alpha);
37
38 MCNAPI ::webrtc::DataRate UpperBound() const;
39
40 MCNAPI ::webrtc::DataRate estimate() const;
41
42 MCNAPI bool has_estimate() const;
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48 MCNAPI void* $ctor();
49 // NOLINTEND
50};
51
52} // namespace webrtc
Definition DataRate.h:10
MCAPI void OnOveruseDetected(::webrtc::DataRate acknowledged_rate)
MCAPI void Update(::webrtc::DataRate capacity_sample, double alpha)
MCAPI bool has_estimate() const
MCAPI::webrtc::DataRate UpperBound() const
MCAPI::webrtc::DataRate LowerBound() const
MCAPI::webrtc::DataRate estimate() const
Definition Alias.h:14