LeviLamina
Loading...
Searching...
No Matches
Nack.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace webrtc::rtcp { class CommonHeader; }
8// clang-format on
9
10namespace webrtc::rtcp {
11
12class Nack {
13public:
14 // member functions
15 // NOLINTBEGIN
16 MCAPI Nack();
17
18 MCAPI void Pack();
19
20 MCAPI bool Parse(::webrtc::rtcp::CommonHeader const&);
21
22 MCAPI void SetPacketIds(::std::vector<ushort>);
23
24 MCAPI void SetPacketIds(ushort const*, uint64);
25
26 MCAPI void Unpack();
27 // NOLINTEND
28
29public:
30 // constructor thunks
31 // NOLINTBEGIN
32 MCAPI void* $ctor();
33 // NOLINTEND
34
35public:
36 // vftables
37 // NOLINTBEGIN
38 MCAPI static void** $vftable();
39 // NOLINTEND
40};
41
42} // namespace webrtc::rtcp
Definition Pack.h:26
Definition CommonHeader.h:7
Definition Nack.h:12