LeviLamina
Loading...
Searching...
No Matches
VideoCodec.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
7class VideoCodec {
8public:
9 // VideoCodec inner types declare
10 // clang-format off
12 // clang-format on
13
14 // VideoCodec inner types define
16 public:
17 // member variables
18 // NOLINTBEGIN
21 // NOLINTEND
22
23 public:
24 // prevent constructor by default
28 };
29
30public:
31 // member variables
32 // NOLINTBEGIN
53 // NOLINTEND
54
55public:
56 // prevent constructor by default
57 VideoCodec& operator=(VideoCodec const&);
58 VideoCodec(VideoCodec const&);
59 VideoCodec();
60};
61
62} // namespace webrtc
Definition VideoCodec.h:7
Definition Alias.h:14