LeviLamina
Loading...
Searching...
No Matches
VideoTrackInterface.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#include "mc/external/webrtc/MediaStreamTrackInterface.h"
9
10// auto generated forward declare list
11// clang-format off
12namespace rtc { struct VideoSinkWants; }
13namespace webrtc { class VideoFrame; }
14namespace webrtc { class VideoTrackSourceInterface; }
15// clang-format on
16
17namespace webrtc {
18
20 public ::rtc::VideoSourceInterface<::webrtc::VideoFrame> {
21public:
22 // VideoTrackInterface inner types define
23 enum class ContentHint : int {
24 KNone = 0,
25 KFluid = 1,
26 KDetailed = 2,
27 KText = 3,
28 };
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 1
34 virtual void
36
37 // vIndex: 2
38 virtual void RemoveSink(::rtc::VideoSinkInterface<::webrtc::VideoFrame>*) /*override*/;
39
40 // vIndex: 8
41 virtual ::webrtc::VideoTrackSourceInterface* GetSource() const = 0;
42
43 // vIndex: 9
44 virtual ::webrtc::VideoTrackInterface::ContentHint content_hint() const;
45
46 // vIndex: 10
47 virtual void set_content_hint(::webrtc::VideoTrackInterface::ContentHint);
48
49 // vIndex: 0
50 virtual ~VideoTrackInterface() /*override*/ = default;
51 // NOLINTEND
52
53public:
54 // destructor thunk
55 // NOLINTBEGIN
56
57 // NOLINTEND
58
59public:
60 // virtual function thunks
61 // NOLINTBEGIN
62
63 // NOLINTEND
64};
65
66} // namespace webrtc
Definition VideoSinkInterface.h:8
Definition VideoSourceInterface.h:8
Definition MediaStreamTrackInterface.h:11
Definition VideoTrackInterface.h:20
Definition VideoSinkWants.h:7