LeviLamina
Loading...
Searching...
No Matches
MediaReceiveStreamInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/ReceiveStreamInterface.h"
7#include "mc/external/webrtc/scoped_refptr.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace webrtc { class FrameDecryptorInterface; }
12namespace webrtc { class FrameTransformerInterface; }
13namespace webrtc { class RtpSource; }
14// clang-format on
15
16namespace webrtc {
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 1
23 virtual void Start() = 0;
24
25 // vIndex: 2
26 virtual void Stop() = 0;
27
28 // vIndex: 3
29 virtual void
30 SetDepacketizerToDecoderFrameTransformer(::webrtc::scoped_refptr<::webrtc::FrameTransformerInterface>) = 0;
31
32 // vIndex: 4
33 virtual void SetFrameDecryptor(::webrtc::scoped_refptr<::webrtc::FrameDecryptorInterface>) = 0;
34
35 // vIndex: 5
36 virtual ::std::vector<::webrtc::RtpSource> GetSources() const = 0;
37
38 // vIndex: 0
39 virtual ~MediaReceiveStreamInterface() /*override*/ = default;
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51
52 // NOLINTEND
53};
54
55} // namespace webrtc
Definition MediaReceiveStreamInterface.h:18
Definition ReceiveStreamInterface.h:7
Definition scoped_refptr.h:8