LeviLamina
Loading...
Searching...
No Matches
RobustThroughputEstimator.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/AcknowledgedBitrateEstimatorInterface.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace webrtc { class DataRate; }
11namespace webrtc { class Timestamp; }
12namespace webrtc { struct PacketResult; }
13namespace webrtc { struct RobustThroughputEstimatorSettings; }
14// clang-format on
15
16namespace webrtc {
17
18class RobustThroughputEstimator : public ::webrtc::AcknowledgedBitrateEstimatorInterface {
19public:
20 // member variables
21 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 RobustThroughputEstimator& operator=(RobustThroughputEstimator const&);
30 RobustThroughputEstimator(RobustThroughputEstimator const&);
31 RobustThroughputEstimator();
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 virtual ~RobustThroughputEstimator() /*override*/ = default;
37
38 virtual void
39 IncomingPacketFeedbackVector(::std::vector<::webrtc::PacketResult> const& packet_feedback_vector) /*override*/;
40
41 virtual ::std::optional<::webrtc::DataRate> bitrate() const /*override*/;
42
43 virtual ::std::optional<::webrtc::DataRate> PeekRate() const /*override*/;
44
45 virtual void SetAlr(bool) /*override*/;
46
47 virtual void SetAlrEndedTime(::webrtc::Timestamp) /*override*/;
48 // NOLINTEND
49
50public:
51 // member functions
52 // NOLINTBEGIN
54 // NOLINTEND
55
56public:
57 // constructor thunks
58 // NOLINTBEGIN
60 // NOLINTEND
61
62public:
63 // virtual function thunks
64 // NOLINTBEGIN
65 MCNAPI void $IncomingPacketFeedbackVector(::std::vector<::webrtc::PacketResult> const& packet_feedback_vector);
66
67 MCNAPI ::std::optional<::webrtc::DataRate> $bitrate() const;
68
69 MCNAPI ::std::optional<::webrtc::DataRate> $PeekRate() const;
70
71 MCNAPI void $SetAlr(bool);
72
74
75
76 // NOLINTEND
77
78public:
79 // vftables
80 // NOLINTBEGIN
81 MCNAPI static void** $vftable();
82 // NOLINTEND
83};
84
85} // namespace webrtc
Definition AcknowledgedBitrateEstimatorInterface.h:15
Definition DataRate.h:10
MCAPI ::std::optional<::webrtc::DataRate > $bitrate() const
MCAPI RobustThroughputEstimator(::webrtc::RobustThroughputEstimatorSettings const &settings)
MCAPI void $SetAlrEndedTime(::webrtc::Timestamp)
MCAPI void $IncomingPacketFeedbackVector(::std::vector<::webrtc::PacketResult > const &packet_feedback_vector)
MCAPI ::std::optional<::webrtc::DataRate > $PeekRate() const
MCAPI void * $ctor(::webrtc::RobustThroughputEstimatorSettings const &settings)
static MCAPI void ** $vftable()
Definition Timestamp.h:15
Definition Alias.h:14
Definition PacketResult.h:7
Definition RobustThroughputEstimatorSettings.h:12