LeviLamina
Loading...
Searching...
No Matches
VideoLayersAllocation.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
8public:
9 // VideoLayersAllocation inner types declare
10 // clang-format off
11 struct SpatialLayer;
12 // clang-format on
13
14 // VideoLayersAllocation inner types define
15 struct SpatialLayer {
16 public:
17 // prevent constructor by default
18 SpatialLayer& operator=(SpatialLayer const&);
19
20 public:
21 // member functions
22 // NOLINTBEGIN
24 // NOLINTEND
25
26 public:
27 // constructor thunks
28 // NOLINTBEGIN
29 MCAPI void* $ctor(::webrtc::VideoLayersAllocation::SpatialLayer const&);
30 // NOLINTEND
31 };
32
33public:
34 // prevent constructor by default
36
37public:
38 // member functions
39 // NOLINTBEGIN
41
43
45 // NOLINTEND
46
47public:
48 // constructor thunks
49 // NOLINTBEGIN
50 MCAPI void* $ctor(::webrtc::VideoLayersAllocation&&);
51
52 MCAPI void* $ctor(::webrtc::VideoLayersAllocation const&);
53 // NOLINTEND
54
55public:
56 // destructor thunk
57 // NOLINTBEGIN
58 MCAPI void $dtor();
59 // NOLINTEND
60};
61
62} // namespace webrtc
Definition VideoLayersAllocation.h:15
Definition VideoLayersAllocation.h:7