LeviLamina
Loading...
Searching...
No Matches
LossNotification.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 LossNotification : public ::webrtc::rtcp::Psfb {
17public:
18 // member variables
19 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 LossNotification& operator=(LossNotification const&);
28 LossNotification(LossNotification const&);
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ~LossNotification() /*override*/;
34
35 virtual uint64 BlockLength() const /*override*/;
36
37 virtual bool Create(
38 uchar* packet,
39 uint64* index,
40 uint64 max_length,
42 ) const /*override*/;
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
49
50 MCNAPI bool Parse(::webrtc::rtcp::CommonHeader const& packet);
51
52 MCNAPI bool Set(ushort last_decoded, ushort last_received, bool decodability_flag);
53 // NOLINTEND
54
55public:
56 // constructor thunks
57 // NOLINTBEGIN
58 MCNAPI void* $ctor();
59 // NOLINTEND
60
61public:
62 // destructor thunk
63 // NOLINTBEGIN
64 MCNAPI void $dtor();
65 // NOLINTEND
66
67public:
68 // virtual function thunks
69 // NOLINTBEGIN
70 MCNAPI uint64 $BlockLength() const;
71
72 MCNAPI bool $Create(
73 uchar* packet,
74 uint64* index,
75 uint64 max_length,
77 ) const;
78
79
80 // NOLINTEND
81
82public:
83 // vftables
84 // NOLINTBEGIN
85 MCNAPI static void** $vftable();
86 // NOLINTEND
87};
88
89} // namespace webrtc::rtcp
Definition _HeaderOutputPredefine.h:311
Definition FunctionView.h:8
Definition CommonHeader.h:7
MCAPI bool Parse(::webrtc::rtcp::CommonHeader const &packet)
MCAPI bool Set(ushort last_decoded, ushort last_received, bool decodability_flag)
MCAPI bool $Create(uchar *packet, uint64 *index, uint64 max_length, ::rtc::FunctionView< void(::rtc::ArrayView< uchar const >)> callback) const
MCAPI uint64 $BlockLength() const
static MCAPI void ** $vftable()
Definition Psfb.h:10
Definition Alias.h:14