LeviLamina
Loading...
Searching...
No Matches
ReceiverReport.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/rtc/FunctionView.h"
7#include "mc/external/webrtc/RtcpPacket.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace webrtc::rtcp { class CommonHeader; }
12namespace webrtc::rtcp { class ReportBlock; }
13// clang-format on
14
15namespace webrtc::rtcp {
16
18public:
19 // member variables
20 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 ReceiverReport& operator=(ReceiverReport const&);
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 0
33 virtual ~ReceiverReport() /*override*/;
34
35 // vIndex: 1
36 virtual uint64 BlockLength() const /*override*/;
37
38 // vIndex: 2
39 virtual bool Create(
40 uchar* packet,
41 uint64* index,
42 uint64 max_length,
44 ) const /*override*/;
45 // NOLINTEND
46
47public:
48 // member functions
49 // NOLINTBEGIN
50 MCNAPI bool Parse(::webrtc::rtcp::CommonHeader const& packet);
51
53
54 MCNAPI bool SetReportBlocks(::std::vector<::webrtc::rtcp::ReportBlock> blocks);
55 // NOLINTEND
56
57public:
58 // constructor thunks
59 // NOLINTBEGIN
60 MCNAPI void* $ctor();
61 // NOLINTEND
62
63public:
64 // destructor thunk
65 // NOLINTBEGIN
66 MCNAPI void $dtor();
67 // NOLINTEND
68
69public:
70 // virtual function thunks
71 // NOLINTBEGIN
72 MCNAPI uint64 $BlockLength() const;
73
74 MCNAPI bool $Create(
75 uchar* packet,
76 uint64* index,
77 uint64 max_length,
79 ) const;
80 // NOLINTEND
81
82public:
83 // vftables
84 // NOLINTBEGIN
85 MCNAPI static void** $vftable();
86 // NOLINTEND
87};
88
89} // namespace webrtc::rtcp
Definition _HeaderOutputPredefine.h:260
Definition FunctionView.h:8
Definition CommonHeader.h:7
Definition ReceiverReport.h:17
MCAPI bool Parse(::webrtc::rtcp::CommonHeader const &packet)
static MCAPI void ** $vftable()
MCAPI bool SetReportBlocks(::std::vector<::webrtc::rtcp::ReportBlock > blocks)
MCAPI bool $Create(uchar *packet, uint64 *index, uint64 max_length, ::rtc::FunctionView< void(::rtc::ArrayView< uchar const >)> callback) const
MCAPI uint64 $BlockLength() const
Definition RtcpPacket.h:10
Definition Alias.h:14