LeviLamina
Loading...
Searching...
No Matches
TmmbItem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc::rtcp {
6
7class TmmbItem {
8public:
9 // prevent constructor by default
10 TmmbItem();
11
12public:
13 // member functions
14 // NOLINTBEGIN
15 MCNAPI void Create(uchar*) const;
16
17 MCNAPI bool Parse(uchar const*);
18
19 MCNAPI TmmbItem(uint, uint64, ushort);
20
21 MCNAPI void set_packet_overhead(ushort);
22 // NOLINTEND
23
24public:
25 // constructor thunks
26 // NOLINTBEGIN
27 MCNAPI void* $ctor(uint, uint64, ushort);
28 // NOLINTEND
29};
30
31} // namespace webrtc::rtcp
Definition TmmbItem.h:7
MCAPI bool Parse(uchar const *)
MCAPI TmmbItem(uint, uint64, ushort)
MCAPI void * $ctor(uint, uint64, ushort)
MCAPI void set_packet_overhead(ushort)
MCAPI void Create(uchar *) const