LeviLamina
Loading...
Searching...
No Matches
StreamStatistician.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace webrtc { struct RtpReceiveStats; }
8namespace webrtc { struct StreamDataCounters; }
9// clang-format on
10
11namespace webrtc {
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 // vIndex: 0
18 virtual ~StreamStatistician() = default;
19
20 // vIndex: 1
21 virtual ::webrtc::RtpReceiveStats GetStats() const = 0;
22
23 // vIndex: 2
24 virtual ::std::optional<int> GetFractionLostInPercent() const = 0;
25
26 // vIndex: 3
27 virtual ::webrtc::StreamDataCounters GetReceiveStreamDataCounters() const = 0;
28
29 // vIndex: 4
30 virtual uint BitrateReceived() const = 0;
31 // NOLINTEND
32
33public:
34 // destructor thunk
35 // NOLINTBEGIN
36
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42
43 // NOLINTEND
44};
45
46} // namespace webrtc
Definition StreamStatistician.h:13