LeviLamina
Loading...
Searching...
No Matches
MediaStreamInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/NotifierInterface.h"
7#include "mc/external/webrtc/RefCountInterface.h"
8#include "mc/external/webrtc/scoped_refptr.h"
9
10// auto generated forward declare list
11// clang-format off
12namespace webrtc { class AudioTrackInterface; }
13namespace webrtc { class VideoTrackInterface; }
14// clang-format on
15
16namespace webrtc {
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 3
23 virtual ::std::string id() const = 0;
24
25 // vIndex: 4
26 virtual ::std::vector<::webrtc::scoped_refptr<::webrtc::AudioTrackInterface>> GetAudioTracks() = 0;
27
28 // vIndex: 5
29 virtual ::std::vector<::webrtc::scoped_refptr<::webrtc::VideoTrackInterface>> GetVideoTracks() = 0;
30
31 // vIndex: 6
32 virtual ::webrtc::scoped_refptr<::webrtc::AudioTrackInterface> FindAudioTrack(::std::string const&) = 0;
33
34 // vIndex: 7
35 virtual ::webrtc::scoped_refptr<::webrtc::VideoTrackInterface> FindVideoTrack(::std::string const&) = 0;
36
37 // vIndex: 11
39
40 // vIndex: 10
42
43 // vIndex: 9
44 virtual bool AddTrack(::webrtc::AudioTrackInterface*);
45
46 // vIndex: 8
47 virtual bool AddTrack(::webrtc::VideoTrackInterface*);
48
49 // vIndex: 15
51
52 // vIndex: 14
54
55 // vIndex: 13
56 virtual bool RemoveTrack(::webrtc::AudioTrackInterface*);
57
58 // vIndex: 12
59 virtual bool RemoveTrack(::webrtc::VideoTrackInterface*);
60
61 // vIndex: 2
62 virtual ~MediaStreamInterface() /*override*/ = default;
63 // NOLINTEND
64
65public:
66 // destructor thunk
67 // NOLINTBEGIN
68
69 // NOLINTEND
70
71public:
72 // virtual function thunks
73 // NOLINTBEGIN
74
75 // NOLINTEND
76};
77
78} // namespace webrtc
Definition AudioTrackInterface.h:18
Definition MediaStreamInterface.h:18
Definition NotifierInterface.h:12
Definition RefCountInterface.h:10
Definition VideoTrackInterface.h:20
Definition scoped_refptr.h:8