LeviLamina
Loading...
Searching...
No Matches
RtpBitrateConfigurator.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; }
8namespace webrtc { struct BitrateConstraints; }
9namespace webrtc { struct BitrateSettings; }
10// clang-format on
11
12namespace webrtc {
13
15public:
16 // member functions
17 // NOLINTBEGIN
18 MCAPI ::webrtc::BitrateConstraints GetConfig() const;
19
21
22 MCAPI ::std::optional<::webrtc::BitrateConstraints> UpdateConstraints(::std::optional<int> const&);
23
24 MCAPI ::std::optional<::webrtc::BitrateConstraints> UpdateWithClientPreferences(::webrtc::BitrateSettings const&);
25
26 MCAPI ::std::optional<::webrtc::BitrateConstraints> UpdateWithRelayCap(::webrtc::DataRate);
27
28 MCAPI ::std::optional<::webrtc::BitrateConstraints> UpdateWithSdpParameters(::webrtc::BitrateConstraints const&);
29
31 // NOLINTEND
32
33public:
34 // constructor thunks
35 // NOLINTBEGIN
36 MCAPI void* $ctor(::webrtc::BitrateConstraints const&);
37 // NOLINTEND
38
39public:
40 // destructor thunk
41 // NOLINTBEGIN
42 MCAPI void $dtor();
43 // NOLINTEND
44};
45
46} // namespace webrtc
Definition DataRate.h:10
Definition BitrateConstraints.h:7
Definition BitrateSettings.h:7
Definition RtpBitrateConfigurator.h:14