LeviLamina
Loading...
Searching...
No Matches
RtpTransceiverInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/cricket/MediaType.h"
7#include "mc/external/webrtc/RefCountInterface.h"
8#include "mc/external/webrtc/RtpTransceiverDirection.h"
9#include "mc/external/webrtc/scoped_refptr.h"
10
11// auto generated forward declare list
12// clang-format off
13namespace webrtc { class RTCError; }
14namespace webrtc { class RtpReceiverInterface; }
15namespace webrtc { class RtpSenderInterface; }
16namespace webrtc { struct RtpCodecCapability; }
17namespace webrtc { struct RtpHeaderExtensionCapability; }
18// clang-format on
19
20namespace webrtc {
21
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 // vIndex: 3
27 virtual ::cricket::MediaType media_type() const = 0;
28
29 // vIndex: 4
30 virtual ::std::optional<::std::string> mid() const = 0;
31
32 // vIndex: 5
33 virtual ::webrtc::scoped_refptr<::webrtc::RtpSenderInterface> sender() const = 0;
34
35 // vIndex: 6
36 virtual ::webrtc::scoped_refptr<::webrtc::RtpReceiverInterface> receiver() const = 0;
37
38 // vIndex: 7
39 virtual bool stopped() const = 0;
40
41 // vIndex: 8
42 virtual bool stopping() const = 0;
43
44 // vIndex: 9
45 virtual ::webrtc::RtpTransceiverDirection direction() const = 0;
46
47 // vIndex: 10
48 virtual void SetDirection(::webrtc::RtpTransceiverDirection);
49
50 // vIndex: 11
51 virtual ::webrtc::RTCError SetDirectionWithError(::webrtc::RtpTransceiverDirection);
52
53 // vIndex: 12
54 virtual ::std::optional<::webrtc::RtpTransceiverDirection> current_direction() const = 0;
55
56 // vIndex: 13
57 virtual ::std::optional<::webrtc::RtpTransceiverDirection> fired_direction() const;
58
59 // vIndex: 14
60 virtual ::webrtc::RTCError StopStandard();
61
62 // vIndex: 15
63 virtual void StopInternal();
64
65 // vIndex: 16
66 virtual void Stop();
67
68 // vIndex: 17
69 virtual ::webrtc::RTCError SetCodecPreferences(::rtc::ArrayView<::webrtc::RtpCodecCapability>) = 0;
70
71 // vIndex: 18
72 virtual ::std::vector<::webrtc::RtpCodecCapability> codec_preferences() const = 0;
73
74 // vIndex: 19
75 virtual ::std::vector<::webrtc::RtpHeaderExtensionCapability> GetHeaderExtensionsToNegotiate() const = 0;
76
77 // vIndex: 20
78 virtual ::std::vector<::webrtc::RtpHeaderExtensionCapability> GetNegotiatedHeaderExtensions() const = 0;
79
80 // vIndex: 21
81 virtual ::webrtc::RTCError
83
84 // vIndex: 2
85 virtual ~RtpTransceiverInterface() /*override*/ = default;
86 // NOLINTEND
87
88public:
89 // destructor thunk
90 // NOLINTBEGIN
91
92 // NOLINTEND
93
94public:
95 // virtual function thunks
96 // NOLINTBEGIN
97
98 // NOLINTEND
99};
100
101} // namespace webrtc
Definition _HeaderOutputPredefine.h:238
Definition RefCountInterface.h:10
Definition RtpTransceiverInterface.h:22