LeviLamina
Loading...
Searching...
No Matches
SdpVideoFormat.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
8public:
9 // member variables
10 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 SdpVideoFormat& operator=(SdpVideoFormat const&);
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI bool IsSameCodec(::webrtc::SdpVideoFormat const&) const;
26
27 MCAPI SdpVideoFormat(::std::string const&, ::std::map<::std::string, ::std::string> const&);
28
29 MCAPI ~SdpVideoFormat();
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCAPI void* $ctor(::std::string const&, ::std::map<::std::string, ::std::string> const&);
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCAPI void $dtor();
42 // NOLINTEND
43};
44
45} // namespace webrtc
Definition Alias.h:14
Definition SdpVideoFormat.h:7