LeviLamina
Loading...
Searching...
No Matches
VideoSourceBase.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 VideoSourceBase : public ::rtc::VideoSourceInterface<::webrtc::VideoFrame> {
18public:
19 // VideoSourceBase inner types declare
20 // clang-format off
21 struct SinkPair;
22 // clang-format on
23
24 // VideoSourceBase 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
56 // NOLINTEND
57
58public:
59 // prevent constructor by default
60 VideoSourceBase& operator=(VideoSourceBase const&);
62
63public:
64 // virtual functions
65 // NOLINTBEGIN
66 // vIndex: 0
67 virtual ~VideoSourceBase() /*override*/;
68
69 // vIndex: 1
70 virtual void AddOrUpdateSink(
72 ::rtc::VideoSinkWants const& wants
73 ) /*override*/;
74
75 // vIndex: 2
76 virtual void RemoveSink(::rtc::VideoSinkInterface<::webrtc::VideoFrame>* sink) /*override*/;
77 // NOLINTEND
78
79public:
80 // member functions
81 // NOLINTBEGIN
82 MCNAPI ::rtc::VideoSourceBase::SinkPair* FindSinkPair(::rtc::VideoSinkInterface<::webrtc::VideoFrame> const* sink);
83
85 // NOLINTEND
86
87public:
88 // constructor thunks
89 // NOLINTBEGIN
90 MCNAPI void* $ctor();
91 // NOLINTEND
92
93public:
94 // destructor thunk
95 // NOLINTBEGIN
96 MCNAPI void $dtor();
97 // NOLINTEND
98
99public:
100 // virtual function thunks
101 // NOLINTBEGIN
102 MCNAPI void
104
106 // NOLINTEND
107
108public:
109 // vftables
110 // NOLINTBEGIN
111 MCNAPI static void** $vftable();
112 // NOLINTEND
113};
114
115} // namespace rtc
Definition VideoSinkInterface.h:8
Definition VideoSourceBase.h:17
MCAPI void $AddOrUpdateSink(::rtc::VideoSinkInterface<::webrtc::VideoFrame > *sink, ::rtc::VideoSinkWants const &wants)
MCAPI void $dtor()
static MCAPI void ** $vftable()
MCAPI::rtc::VideoSourceBase::SinkPair * FindSinkPair(::rtc::VideoSinkInterface<::webrtc::VideoFrame > const *sink)
MCAPI void * $ctor()
MCAPI void $RemoveSink(::rtc::VideoSinkInterface<::webrtc::VideoFrame > *sink)
Definition VideoSourceInterface.h:8
Definition Alias.h:14
Definition VideoSinkWants.h:7
Definition VideoSourceBase.h:25