blob: 7053fad5e7f12614f8fccd8a3510612493429b24 [file] [log] [blame]
Steve Anton6e634bf2017-11-13 10:44:53 -08001/*
2 * Copyright 2017 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#ifndef PC_RTPTRANSCEIVER_H_
12#define PC_RTPTRANSCEIVER_H_
13
14#include <string>
15#include <vector>
16
17#include "api/rtptransceiverinterface.h"
18#include "pc/rtpreceiver.h"
19#include "pc/rtpsender.h"
20
21namespace webrtc {
22
23// Implementation of the public RtpTransceiverInterface.
24//
25// The RtpTransceiverInterface is only intended to be used with a PeerConnection
26// that enables Unified Plan SDP. Thus, the methods that only need to implement
27// public API features and are not used internally can assume exactly one sender
28// and receiver.
29//
30// Since the RtpTransceiver is used internally by PeerConnection for tracking
31// RtpSenders, RtpReceivers, and BaseChannels, and PeerConnection needs to be
32// backwards compatible with Plan B SDP, this implementation is more flexible
33// than that required by the WebRTC specification.
34//
35// With Plan B SDP, an RtpTransceiver can have any number of senders and
36// receivers which map to a=ssrc lines in the m= section.
37// With Unified Plan SDP, an RtpTransceiver will have exactly one sender and one
38// receiver which are encapsulated by the m= section.
39//
40// This class manages the RtpSenders, RtpReceivers, and BaseChannel associated
41// with this m= section. Since the transceiver, senders, and receivers are
42// reference counted and can be referenced from JavaScript (in Chromium), these
43// objects must be ready to live for an arbitrary amount of time. The
44// BaseChannel is not reference counted and is owned by the ChannelManager, so
45// the PeerConnection must take care of creating/deleting the BaseChannel and
46// setting the channel reference in the transceiver to null when it has been
47// deleted.
48//
49// The RtpTransceiver is specialized to either audio or video according to the
50// MediaType specified in the constructor. Audio RtpTransceivers will have
51// AudioRtpSenders, AudioRtpReceivers, and a VoiceChannel. Video RtpTransceivers
52// will have VideoRtpSenders, VideoRtpReceivers, and a VideoChannel.
53class RtpTransceiver final
54 : public rtc::RefCountedObject<RtpTransceiverInterface> {
55 public:
Steve Anton79e79602017-11-20 10:25:56 -080056 // Construct a Plan B-style RtpTransceiver with no senders, receivers, or
57 // channel set.
Steve Anton6e634bf2017-11-13 10:44:53 -080058 // |media_type| specifies the type of RtpTransceiver (and, by transitivity,
59 // the type of senders, receivers, and channel). Can either by audio or video.
60 explicit RtpTransceiver(cricket::MediaType media_type);
Steve Anton79e79602017-11-20 10:25:56 -080061 // Construct a Unified Plan-style RtpTransceiver with the given sender and
62 // receiver. The media type will be derived from the media types of the sender
63 // and receiver. The sender and receiver should have the same media type.
64 RtpTransceiver(
65 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> sender,
66 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
67 receiver);
Steve Anton6e634bf2017-11-13 10:44:53 -080068 ~RtpTransceiver() override;
69
70 cricket::MediaType media_type() const { return media_type_; }
71
72 // Returns the Voice/VideoChannel set for this transceiver. May be null if
73 // the transceiver is not in the currently set local/remote description.
74 cricket::BaseChannel* channel() const { return channel_; }
75
76 // Sets the Voice/VideoChannel. The caller must pass in the correct channel
77 // implementation based on the type of the transceiver.
78 void SetChannel(cricket::BaseChannel* channel);
79
80 // Adds an RtpSender of the appropriate type to be owned by this transceiver.
81 // Must not be null.
82 void AddSender(
83 rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>> sender);
84
85 // Removes the given RtpSender. Returns false if the sender is not owned by
86 // this transceiver.
87 bool RemoveSender(RtpSenderInterface* sender);
88
89 // Returns a vector of the senders owned by this transceiver.
90 std::vector<rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>>
91 senders() const {
92 return senders_;
93 }
94
95 // Adds an RtpReceiver of the appropriate type to be owned by this
96 // transceiver. Must not be null.
97 void AddReceiver(
98 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>
99 receiver);
100
101 // Removes the given RtpReceiver. Returns false if the sender is not owned by
102 // this transceiver.
103 bool RemoveReceiver(RtpReceiverInterface* receiver);
104
105 // Returns a vector of the receivers owned by this transceiver.
106 std::vector<
107 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>>
108 receivers() const {
109 return receivers_;
110 }
111
112 // RtpTransceiverInterface implementation.
113 rtc::Optional<std::string> mid() const override;
114 rtc::scoped_refptr<RtpSenderInterface> sender() const override;
115 rtc::scoped_refptr<RtpReceiverInterface> receiver() const override;
116 bool stopped() const override;
117 RtpTransceiverDirection direction() const override;
118 void SetDirection(RtpTransceiverDirection new_direction) override;
119 rtc::Optional<RtpTransceiverDirection> current_direction() const override;
120 void Stop() override;
121 void SetCodecPreferences(rtc::ArrayView<RtpCodecCapability> codecs) override;
122
123 private:
124 const bool unified_plan_;
125 const cricket::MediaType media_type_;
126 std::vector<rtc::scoped_refptr<RtpSenderProxyWithInternal<RtpSenderInternal>>>
127 senders_;
128 std::vector<
129 rtc::scoped_refptr<RtpReceiverProxyWithInternal<RtpReceiverInternal>>>
130 receivers_;
131
132 bool stopped_ = false;
133 RtpTransceiverDirection direction_ = RtpTransceiverDirection::kInactive;
134 rtc::Optional<RtpTransceiverDirection> current_direction_;
135 rtc::Optional<std::string> mid_;
136
137 cricket::BaseChannel* channel_ = nullptr;
138};
139
140BEGIN_SIGNALING_PROXY_MAP(RtpTransceiver)
141PROXY_SIGNALING_THREAD_DESTRUCTOR()
142PROXY_CONSTMETHOD0(rtc::Optional<std::string>, mid);
143PROXY_CONSTMETHOD0(rtc::scoped_refptr<RtpSenderInterface>, sender);
144PROXY_CONSTMETHOD0(rtc::scoped_refptr<RtpReceiverInterface>, receiver);
145PROXY_CONSTMETHOD0(bool, stopped);
146PROXY_CONSTMETHOD0(RtpTransceiverDirection, direction);
147PROXY_METHOD1(void, SetDirection, RtpTransceiverDirection);
148PROXY_CONSTMETHOD0(rtc::Optional<RtpTransceiverDirection>, current_direction);
149PROXY_METHOD0(void, Stop);
150PROXY_METHOD1(void, SetCodecPreferences, rtc::ArrayView<RtpCodecCapability>);
151END_PROXY_MAP();
152
153} // namespace webrtc
154
155#endif // PC_RTPTRANSCEIVER_H_