LeviLamina
Loading...
Searching...
No Matches
RtpCodec.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
7struct RtpCodec {
8public:
9 // member variables
10 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 0
23 virtual ~RtpCodec() = default;
24 // NOLINTEND
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCAPI bool IsMediaCodec() const;
30
31 MCAPI bool IsResiliencyCodec() const;
32
33 MCAPI RtpCodec();
34
35 MCAPI RtpCodec(::webrtc::RtpCodec const&);
36
37 MCAPI ::std::string mime_type() const;
38
39 MCAPI ::webrtc::RtpCodec& operator=(::webrtc::RtpCodec const&);
40
41 MCAPI bool operator==(::webrtc::RtpCodec const&) const;
42 // NOLINTEND
43
44public:
45 // constructor thunks
46 // NOLINTBEGIN
47 MCAPI void* $ctor();
48
49 MCAPI void* $ctor(::webrtc::RtpCodec const&);
50 // NOLINTEND
51
52public:
53 // destructor thunk
54 // NOLINTBEGIN
55
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCAPI static void** $vftable();
62 // NOLINTEND
63};
64
65} // namespace webrtc
Definition Alias.h:14
Definition RtpCodec.h:7