LeviLamina
Loading...
Searching...
No Matches
RateControlSettings.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace webrtc { class DataSize; }
8namespace webrtc { class FieldTrialsView; }
9// clang-format on
10
11namespace webrtc {
12
14public:
15 // member functions
16 // NOLINTBEGIN
17 MCAPI ::std::optional<::webrtc::DataSize> CongestionWindowInitialDataWindow() const;
18
19 MCAPI uint CongestionWindowMinPushbackTargetBitrateBps() const;
20
21 MCAPI int64 GetCongestionWindowAdditionalTimeMs() const;
22
23 MCAPI explicit RateControlSettings(::webrtc::FieldTrialsView const* const);
24
25 MCAPI bool UseCongestionWindow() const;
26
27 MCAPI bool UseCongestionWindowDropFrameOnly() const;
28
29 MCAPI bool UseCongestionWindowPushback() const;
30
32 // NOLINTEND
33
34public:
35 // static functions
36 // NOLINTBEGIN
37 MCAPI static ::webrtc::RateControlSettings ParseFromKeyValueConfig(::webrtc::FieldTrialsView const* const);
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor(::webrtc::FieldTrialsView const* const);
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCAPI void $dtor();
50 // NOLINTEND
51};
52
53} // namespace webrtc
Definition FieldTrialsView.h:7
Definition RateControlSettings.h:13