LeviLamina
Loading...
Searching...
No Matches
VideoSourceBaseGuarded.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/rtc/VideoSinkInterface.h"
7#include "mc/external/rtc/VideoSourceInterface.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace rtc { struct VideoSinkWants; }
12namespace webrtc { class VideoFrame; }
13// clang-format on
14
15namespace rtc {
16
17class VideoSourceBaseGuarded : public ::rtc::VideoSourceInterface<::webrtc::VideoFrame> {
18public:
19 // VideoSourceBaseGuarded inner types declare
20 // clang-format off
21 struct SinkPair;
22 // clang-format on
23
24 // VideoSourceBaseGuarded inner types define
25 struct SinkPair {
26 public:
27 // member variables
28 // NOLINTBEGIN
31 // NOLINTEND
32
33 public:
34 // prevent constructor by default
35 SinkPair& operator=(SinkPair const&);
36 SinkPair(SinkPair const&);
37 SinkPair();
38
39 public:
40 // member functions
41 // NOLINTBEGIN
42 MCNAPI ~SinkPair();
43 // NOLINTEND
44
45 public:
46 // destructor thunk
47 // NOLINTBEGIN
48 MCNAPI void $dtor();
49 // NOLINTEND
50 };
51
52public:
53 // member variables
54 // NOLINTBEGIN
57 // NOLINTEND
58
59public:
60 // prevent constructor by default
63
64public:
65 // virtual functions
66 // NOLINTBEGIN
67 // vIndex: 0
68 virtual ~VideoSourceBaseGuarded() /*override*/;
69
70 // vIndex: 1
71 virtual void AddOrUpdateSink(
73 ::rtc::VideoSinkWants const& wants
74 ) /*override*/;
75
76 // vIndex: 2
77 virtual void RemoveSink(::rtc::VideoSinkInterface<::webrtc::VideoFrame>* sink) /*override*/;
78 // NOLINTEND
79
80public:
81 // member functions
82 // NOLINTBEGIN
83 MCNAPI ::rtc::VideoSourceBaseGuarded::SinkPair*
85
87
88 MCNAPI ::std::vector<::rtc::VideoSourceBaseGuarded::SinkPair> const& sink_pairs() const;
89 // NOLINTEND
90
91public:
92 // constructor thunks
93 // NOLINTBEGIN
94 MCNAPI void* $ctor();
95 // NOLINTEND
96
97public:
98 // destructor thunk
99 // NOLINTBEGIN
100 MCNAPI void $dtor();
101 // NOLINTEND
102
103public:
104 // virtual function thunks
105 // NOLINTBEGIN
106 MCNAPI void
108
110 // NOLINTEND
111
112public:
113 // vftables
114 // NOLINTBEGIN
115 MCNAPI static void** $vftable();
116 // NOLINTEND
117};
118
119} // namespace rtc
Definition VideoSinkInterface.h:8
Definition VideoSourceBaseGuarded.h:17
MCAPI void $RemoveSink(::rtc::VideoSinkInterface<::webrtc::VideoFrame > *sink)
MCAPI void $AddOrUpdateSink(::rtc::VideoSinkInterface<::webrtc::VideoFrame > *sink, ::rtc::VideoSinkWants const &wants)
static MCAPI void ** $vftable()
MCAPI::rtc::VideoSourceBaseGuarded::SinkPair * FindSinkPair(::rtc::VideoSinkInterface<::webrtc::VideoFrame > const *sink)
MCAPI ::std::vector<::rtc::VideoSourceBaseGuarded::SinkPair > const & sink_pairs() const
Definition VideoSourceInterface.h:8
Definition Alias.h:14
Definition VideoSinkWants.h:7
Definition VideoSourceBaseGuarded.h:25