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