LeviLamina
Loading...
Searching...
No Matches
Pli.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/Psfb.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace webrtc::rtcp { class CommonHeader; }
12// clang-format on
13
14namespace webrtc::rtcp {
15
16class Pli : public ::webrtc::rtcp::Psfb {
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 0
21 virtual ~Pli() /*override*/;
22
23 // vIndex: 1
24 virtual uint64 BlockLength() const /*override*/;
25
26 // vIndex: 2
27 virtual bool Create(
28 uchar* packet,
29 uint64* index,
30 uint64 max_length,
32 ) const /*override*/;
33 // NOLINTEND
34
35public:
36 // member functions
37 // NOLINTBEGIN
38 MCNAPI bool Parse(::webrtc::rtcp::CommonHeader const& packet);
39
40 MCNAPI Pli();
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCNAPI void* $ctor();
47 // NOLINTEND
48
49public:
50 // destructor thunk
51 // NOLINTBEGIN
52 MCNAPI void $dtor();
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58 MCNAPI uint64 $BlockLength() const;
59
60 MCNAPI bool $Create(
61 uchar* packet,
62 uint64* index,
63 uint64 max_length,
65 ) const;
66 // NOLINTEND
67
68public:
69 // vftables
70 // NOLINTBEGIN
71 MCNAPI static void** $vftable();
72 // NOLINTEND
73};
74
75} // namespace webrtc::rtcp
Definition _HeaderOutputPredefine.h:260
Definition FunctionView.h:8
Definition CommonHeader.h:7
Definition Pli.h:16
MCAPI bool Parse(::webrtc::rtcp::CommonHeader const &packet)
MCAPI bool $Create(uchar *packet, uint64 *index, uint64 max_length, ::rtc::FunctionView< void(::rtc::ArrayView< uchar const >)> callback) const
MCAPI void * $ctor()
MCAPI uint64 $BlockLength() const
MCAPI void $dtor()
static MCAPI void ** $vftable()
Definition Psfb.h:10