LeviLamina
Loading...
Searching...
No Matches
ReceiveStatistics.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/ReceiveStatisticsProvider.h"
7#include "mc/external/webrtc/RtpPacketSinkInterface.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace webrtc { class StreamStatistician; }
12// clang-format on
13
14namespace webrtc {
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 virtual ~ReceiveStatistics() /*override*/ = default;
21
22 virtual ::webrtc::StreamStatistician* GetStatistician(uint) const = 0;
23
24 virtual void SetMaxReorderingThreshold(int) = 0;
25
26 virtual void SetMaxReorderingThreshold(uint, int) = 0;
27
28 virtual void EnableRetransmitDetection(uint, bool) = 0;
29 // NOLINTEND
30
31public:
32 // virtual function thunks
33 // NOLINTBEGIN
34
35 // NOLINTEND
36};
37
38} // namespace webrtc
Definition ReceiveStatisticsProvider.h:12
Definition ReceiveStatistics.h:16
Definition RtpPacketSinkInterface.h:12
Definition StreamStatistician.h:13