LeviLamina
Loading...
Searching...
No Matches
PacketMaskTable.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/FecMaskType.h"
7
8namespace webrtc::internal {
9
10class PacketMaskTable {
11public:
12 // member variables
13 // NOLINTBEGIN
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
20 PacketMaskTable& operator=(PacketMaskTable const&);
21 PacketMaskTable(PacketMaskTable const&);
22 PacketMaskTable();
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCNAPI ::rtc::ArrayView<uchar const> LookUp(int num_media_packets, int num_fec_packets);
28
29 MCNAPI PacketMaskTable(::webrtc::FecMaskType fec_mask_type, int num_media_packets);
30
32 // NOLINTEND
33
34public:
35 // constructor thunks
36 // NOLINTBEGIN
37 MCNAPI void* $ctor(::webrtc::FecMaskType fec_mask_type, int num_media_packets);
38 // NOLINTEND
39
40public:
41 // destructor thunk
42 // NOLINTBEGIN
43 MCNAPI void $dtor();
44 // NOLINTEND
45};
46
47} // namespace webrtc::internal
MCAPI void * $ctor(::webrtc::FecMaskType fec_mask_type, int num_media_packets)
MCAPI ::rtc::ArrayView< uchar const > LookUp(int num_media_packets, int num_fec_packets)
MCAPI PacketMaskTable(::webrtc::FecMaskType fec_mask_type, int num_media_packets)
Definition Alias.h:14