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
61 VideoSourceBaseGuarded& operator=(VideoSourceBaseGuarded const&);
62 VideoSourceBaseGuarded(VideoSourceBaseGuarded const&);
63
64public:
65 // virtual functions
66 // NOLINTBEGIN
67 virtual ~VideoSourceBaseGuarded() /*override*/;
68
69 virtual void AddOrUpdateSink(
71 ::rtc::VideoSinkWants const& wants
72 ) /*override*/;
73
74 virtual void RemoveSink(::rtc::VideoSinkInterface<::webrtc::VideoFrame>* sink) /*override*/;
75 // NOLINTEND
76
77public:
78 // member functions
79 // NOLINTBEGIN
81
82 MCNAPI ::std::vector<::rtc::VideoSourceBaseGuarded::SinkPair> const& sink_pairs() const;
83 // NOLINTEND
84
85public:
86 // constructor thunks
87 // NOLINTBEGIN
88 MCNAPI void* $ctor();
89 // NOLINTEND
90
91public:
92 // destructor thunk
93 // NOLINTBEGIN
94 MCNAPI void $dtor();
95 // NOLINTEND
96
97public:
98 // virtual function thunks
99 // NOLINTBEGIN
100 MCNAPI void
102
104
105
106 // NOLINTEND
107
108public:
109 // vftables
110 // NOLINTBEGIN
111 MCNAPI static void** $vftable();
112 // NOLINTEND
113};
114
115} // namespace rtc
Definition VideoSinkInterface.h:8
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 ::std::vector<::rtc::VideoSourceBaseGuarded::SinkPair > const & sink_pairs() const
Definition VideoSourceInterface.h:8
Definition VideoFrame.h:16
Definition Alias.h:14
Definition VideoSinkWants.h:7
Definition VideoSourceBaseGuarded.h:25