LeviLamina
Loading...
Searching...
No Matches
FecHeaderWriter.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/ForwardErrorCorrection.h"
7
8namespace webrtc {
9
11public:
12 // FecHeaderWriter inner types declare
13 // clang-format off
14 struct ProtectedStream;
15 // clang-format on
16
17 // FecHeaderWriter inner types define
19 public:
20 // member variables
21 // NOLINTBEGIN
25 // NOLINTEND
26
27 public:
28 // prevent constructor by default
29 ProtectedStream& operator=(ProtectedStream const&);
32 };
33
34public:
35 // member variables
36 // NOLINTBEGIN
40 // NOLINTEND
41
42public:
43 // prevent constructor by default
44 FecHeaderWriter& operator=(FecHeaderWriter const&);
47
48public:
49 // virtual functions
50 // NOLINTBEGIN
51 // vIndex: 0
52 virtual ~FecHeaderWriter();
53
54 // vIndex: 1
55 virtual uint64 MinPacketMaskSize(uchar const*, uint64) const = 0;
56
57 // vIndex: 2
58 virtual uint64 FecHeaderSize(uint64) const = 0;
59
60 // vIndex: 3
61 virtual void FinalizeFecHeader(
64 ) const = 0;
65 // NOLINTEND
66
67public:
68 // member functions
69 // NOLINTBEGIN
70 MCNAPI FecHeaderWriter(uint64 max_media_packets, uint64 max_fec_packets, uint64 max_packet_overhead);
71
72 MCNAPI uint64 MaxFecPackets() const;
73
74 MCNAPI uint64 MaxMediaPackets() const;
75
76 MCNAPI uint64 MaxPacketOverhead() const;
77 // NOLINTEND
78
79public:
80 // constructor thunks
81 // NOLINTBEGIN
82 MCNAPI void* $ctor(uint64 max_media_packets, uint64 max_fec_packets, uint64 max_packet_overhead);
83 // NOLINTEND
84
85public:
86 // destructor thunk
87 // NOLINTBEGIN
88 MCNAPI void $dtor();
89 // NOLINTEND
90
91public:
92 // virtual function thunks
93 // NOLINTBEGIN
94
95 // NOLINTEND
96
97public:
98 // vftables
99 // NOLINTBEGIN
100 MCNAPI static void** $vftable();
101 // NOLINTEND
102};
103
104} // namespace webrtc
Definition _HeaderOutputPredefine.h:260
Definition FecHeaderWriter.h:10
MCAPI uint64 MaxFecPackets() const
MCAPI uint64 MaxMediaPackets() const
static MCAPI void ** $vftable()
MCAPI FecHeaderWriter(uint64 max_media_packets, uint64 max_fec_packets, uint64 max_packet_overhead)
MCAPI void * $ctor(uint64 max_media_packets, uint64 max_fec_packets, uint64 max_packet_overhead)
MCAPI uint64 MaxPacketOverhead() const
Definition ForwardErrorCorrection.h:31
Definition Alias.h:14
Definition FecHeaderWriter.h:18