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 functions
15 // NOLINTBEGIN
17
18 MCAPI ::webrtc::DataRate LowerBound() const;
19
20 MCAPI void OnOveruseDetected(::webrtc::DataRate);
21
22 MCAPI void Reset();
23
24 MCAPI void Update(::webrtc::DataRate, double);
25
26 MCAPI ::webrtc::DataRate UpperBound() const;
27
28 MCAPI double deviation_estimate_kbps() const;
29
30 MCAPI ::webrtc::DataRate estimate() const;
31
32 MCAPI bool has_estimate() const;
33 // NOLINTEND
34
35public:
36 // constructor thunks
37 // NOLINTBEGIN
38 MCAPI void* $ctor();
39 // NOLINTEND
40};
41
42} // namespace webrtc
Definition DataRate.h:10
Definition LinkCapacityEstimator.h:12