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
13public:
14 // member variables
15 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
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 double deviation_estimate_kbps() const;
41
42 MCNAPI ::webrtc::DataRate estimate() const;
43
44 MCNAPI bool has_estimate() const;
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50 MCNAPI void* $ctor();
51 // NOLINTEND
52};
53
54} // namespace webrtc
Definition DataRate.h:10
Definition LinkCapacityEstimator.h:12
MCAPI double deviation_estimate_kbps() const
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