LeviLamina
Loading...
Searching...
No Matches
VideoDecoder.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
8public:
9 // VideoDecoder inner types declare
10 // clang-format off
11 struct DecoderInfo;
12 // clang-format on
13
14 // VideoDecoder inner types define
15 struct DecoderInfo {
16 public:
17 // member variables
18 // NOLINTBEGIN
21 // NOLINTEND
22
23 public:
24 // prevent constructor by default
25 DecoderInfo& operator=(DecoderInfo const&);
26 DecoderInfo(DecoderInfo const&);
27 DecoderInfo();
28 };
29};
30
31} // namespace webrtc
Definition VideoDecoder.h:7
Definition Alias.h:14
Definition VideoDecoder.h:15