blob: 4799c4b153882c3c63e1bbcff193053582440b9d [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
Steve Anton10542f22019-01-11 09:11:00 -080011#ifndef API_RTP_TRANSCEIVER_INTERFACE_H_
12#define API_RTP_TRANSCEIVER_INTERFACE_H_
Steve Anton6e634bf2017-11-13 10:44:53 -080013
14#include <string>
Steve Anton9158ef62017-11-27 13:01:52 -080015#include <vector>
Steve Anton6e634bf2017-11-13 10:44:53 -080016
Danil Chapovalove9041612021-02-22 12:43:39 +010017#include "absl/base/attributes.h"
Danil Chapovalov0bc58cf2018-06-21 13:32:56 +020018#include "absl/types/optional.h"
Danil Chapovalov6e9d8952018-04-09 20:30:51 +020019#include "api/array_view.h"
Steve Anton10542f22019-01-11 09:11:00 -080020#include "api/media_types.h"
21#include "api/rtp_parameters.h"
22#include "api/rtp_receiver_interface.h"
23#include "api/rtp_sender_interface.h"
Markus Handell0357b3e2020-03-16 13:40:51 +010024#include "api/rtp_transceiver_direction.h"
Mirko Bonadeid9708072019-01-25 20:26:48 +010025#include "api/scoped_refptr.h"
Steve Anton10542f22019-01-11 09:11:00 -080026#include "rtc_base/ref_count.h"
Mirko Bonadei66e76792019-04-02 11:33:59 +020027#include "rtc_base/system/rtc_export.h"
Steve Anton6e634bf2017-11-13 10:44:53 -080028
29namespace webrtc {
30
Steve Anton9158ef62017-11-27 13:01:52 -080031// Structure for initializing an RtpTransceiver in a call to
32// PeerConnectionInterface::AddTransceiver.
33// https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiverinit
Mirko Bonadei66e76792019-04-02 11:33:59 +020034struct RTC_EXPORT RtpTransceiverInit final {
Mirko Bonadei79eb4dd2018-07-19 10:39:30 +020035 RtpTransceiverInit();
Mirko Bonadei2ffed6d2018-07-20 11:09:32 +020036 RtpTransceiverInit(const RtpTransceiverInit&);
Mirko Bonadei79eb4dd2018-07-19 10:39:30 +020037 ~RtpTransceiverInit();
Steve Anton9158ef62017-11-27 13:01:52 -080038 // Direction of the RtpTransceiver. See RtpTransceiverInterface::direction().
39 RtpTransceiverDirection direction = RtpTransceiverDirection::kSendRecv;
40
41 // The added RtpTransceiver will be added to these streams.
Seth Hampson513449e2018-03-06 09:35:56 -080042 std::vector<std::string> stream_ids;
Steve Anton9158ef62017-11-27 13:01:52 -080043
44 // TODO(bugs.webrtc.org/7600): Not implemented.
45 std::vector<RtpEncodingParameters> send_encodings;
46};
47
Steve Anton6e634bf2017-11-13 10:44:53 -080048// The RtpTransceiverInterface maps to the RTCRtpTransceiver defined by the
49// WebRTC specification. A transceiver represents a combination of an RtpSender
50// and an RtpReceiver than share a common mid. As defined in JSEP, an
51// RtpTransceiver is said to be associated with a media description if its mid
52// property is non-null; otherwise, it is said to be disassociated.
53// JSEP: https://tools.ietf.org/html/draft-ietf-rtcweb-jsep-24
54//
55// Note that RtpTransceivers are only supported when using PeerConnection with
56// Unified Plan SDP.
57//
58// This class is thread-safe.
59//
60// WebRTC specification for RTCRtpTransceiver, the JavaScript analog:
61// https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiver
Mirko Bonadei35214fc2019-09-23 14:54:28 +020062class RTC_EXPORT RtpTransceiverInterface : public rtc::RefCountInterface {
Steve Anton6e634bf2017-11-13 10:44:53 -080063 public:
Steve Anton69470252018-02-09 11:43:08 -080064 // Media type of the transceiver. Any sender(s)/receiver(s) will have this
65 // type as well.
66 virtual cricket::MediaType media_type() const = 0;
67
Steve Anton6e634bf2017-11-13 10:44:53 -080068 // The mid attribute is the mid negotiated and present in the local and
69 // remote descriptions. Before negotiation is complete, the mid value may be
70 // null. After rollbacks, the value may change from a non-null value to null.
71 // https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiver-mid
Danil Chapovalov0bc58cf2018-06-21 13:32:56 +020072 virtual absl::optional<std::string> mid() const = 0;
Steve Anton6e634bf2017-11-13 10:44:53 -080073
74 // The sender attribute exposes the RtpSender corresponding to the RTP media
75 // that may be sent with the transceiver's mid. The sender is always present,
76 // regardless of the direction of media.
77 // https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiver-sender
78 virtual rtc::scoped_refptr<RtpSenderInterface> sender() const = 0;
79
80 // The receiver attribute exposes the RtpReceiver corresponding to the RTP
81 // media that may be received with the transceiver's mid. The receiver is
82 // always present, regardless of the direction of media.
83 // https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiver-receiver
84 virtual rtc::scoped_refptr<RtpReceiverInterface> receiver() const = 0;
85
86 // The stopped attribute indicates that the sender of this transceiver will no
87 // longer send, and that the receiver will no longer receive. It is true if
88 // either stop has been called or if setting the local or remote description
89 // has caused the RtpTransceiver to be stopped.
90 // https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiver-stopped
91 virtual bool stopped() const = 0;
92
Harald Alvestrand6060df52020-08-11 09:54:02 +020093 // The stopping attribute indicates that the user has indicated that the
94 // sender of this transceiver will stop sending, and that the receiver will
95 // no longer receive. It is always true if stopped() is true.
96 // If stopping() is true and stopped() is false, it means that the
97 // transceiver's stop() method has been called, but the negotiation with
98 // the other end for shutting down the transceiver is not yet done.
99 // https://w3c.github.io/webrtc-pc/#dfn-stopping-0
Artem Titov226a2e32022-01-17 16:19:37 +0000100 // TODO(hta): Remove default implementation.
101 virtual bool stopping() const;
Harald Alvestrand6060df52020-08-11 09:54:02 +0200102
Steve Anton6e634bf2017-11-13 10:44:53 -0800103 // The direction attribute indicates the preferred direction of this
104 // transceiver, which will be used in calls to CreateOffer and CreateAnswer.
105 // https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiver-direction
106 virtual RtpTransceiverDirection direction() const = 0;
107
108 // Sets the preferred direction of this transceiver. An update of
109 // directionality does not take effect immediately. Instead, future calls to
110 // CreateOffer and CreateAnswer mark the corresponding media descriptions as
111 // sendrecv, sendonly, recvonly, or inactive.
112 // https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiver-direction
Harald Alvestrand6060df52020-08-11 09:54:02 +0200113 // TODO(hta): Deprecate SetDirection without error and rename
114 // SetDirectionWithError to SetDirection, remove default implementations.
Danil Chapovalove9041612021-02-22 12:43:39 +0100115 ABSL_DEPRECATED("Use SetDirectionWithError instead")
116 virtual void SetDirection(RtpTransceiverDirection new_direction);
Harald Alvestrand6060df52020-08-11 09:54:02 +0200117 virtual RTCError SetDirectionWithError(RtpTransceiverDirection new_direction);
Steve Anton6e634bf2017-11-13 10:44:53 -0800118
119 // The current_direction attribute indicates the current direction negotiated
120 // for this transceiver. If this transceiver has never been represented in an
121 // offer/answer exchange, or if the transceiver is stopped, the value is null.
122 // https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiver-currentdirection
Danil Chapovalov0bc58cf2018-06-21 13:32:56 +0200123 virtual absl::optional<RtpTransceiverDirection> current_direction() const = 0;
Steve Anton6e634bf2017-11-13 10:44:53 -0800124
Steve Anton0f5400a2018-07-17 14:25:36 -0700125 // An internal slot designating for which direction the relevant
126 // PeerConnection events have been fired. This is to ensure that events like
127 // OnAddTrack only get fired once even if the same session description is
128 // applied again.
129 // Exposed in the public interface for use by Chromium.
Mirko Bonadei79eb4dd2018-07-19 10:39:30 +0200130 virtual absl::optional<RtpTransceiverDirection> fired_direction() const;
Steve Anton0f5400a2018-07-17 14:25:36 -0700131
Harald Alvestrand6060df52020-08-11 09:54:02 +0200132 // Initiates a stop of the transceiver.
133 // The stop is complete when stopped() returns true.
134 // A stopped transceiver can be reused for a different track.
Steve Anton6e634bf2017-11-13 10:44:53 -0800135 // https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiver-stop
Harald Alvestrand6060df52020-08-11 09:54:02 +0200136 // TODO(hta): Rename to Stop() when users of the non-standard Stop() are
137 // updated.
138 virtual RTCError StopStandard();
139
140 // Stops a transceiver immediately, without waiting for signalling.
141 // This is an internal function, and is exposed for historical reasons.
142 // https://w3c.github.io/webrtc-pc/#dfn-stop-the-rtcrtptransceiver
143 virtual void StopInternal();
Danil Chapovalove9041612021-02-22 12:43:39 +0100144 ABSL_DEPRECATED("Use StopStandard instead") virtual void Stop();
Steve Anton6e634bf2017-11-13 10:44:53 -0800145
146 // The SetCodecPreferences method overrides the default codec preferences used
147 // by WebRTC for this transceiver.
148 // https://w3c.github.io/webrtc-pc/#dom-rtcrtptransceiver-setcodecpreferences
Florent Castelli2d9d82e2019-04-23 19:25:51 +0200149 virtual RTCError SetCodecPreferences(
Artem Titov226a2e32022-01-17 16:19:37 +0000150 rtc::ArrayView<RtpCodecCapability> codecs);
151 virtual std::vector<RtpCodecCapability> codec_preferences() const;
Steve Anton6e634bf2017-11-13 10:44:53 -0800152
Markus Handell0357b3e2020-03-16 13:40:51 +0100153 // Readonly attribute which contains the set of header extensions that was set
154 // with SetOfferedRtpHeaderExtensions, or a default set if it has not been
155 // called.
156 // https://w3c.github.io/webrtc-extensions/#rtcrtptransceiver-interface
157 virtual std::vector<RtpHeaderExtensionCapability> HeaderExtensionsToOffer()
Artem Titov226a2e32022-01-17 16:19:37 +0000158 const;
Markus Handell0357b3e2020-03-16 13:40:51 +0100159
Markus Handell5932fe12020-12-17 22:19:40 +0100160 // Readonly attribute which is either empty if negotation has not yet
161 // happened, or a vector of the negotiated header extensions.
162 // https://w3c.github.io/webrtc-extensions/#rtcrtptransceiver-interface
163 virtual std::vector<RtpHeaderExtensionCapability> HeaderExtensionsNegotiated()
Artem Titov226a2e32022-01-17 16:19:37 +0000164 const;
Markus Handell5932fe12020-12-17 22:19:40 +0100165
Markus Handell755c65d2020-06-24 01:06:10 +0200166 // The SetOfferedRtpHeaderExtensions method modifies the next SDP negotiation
167 // so that it negotiates use of header extensions which are not kStopped.
168 // https://w3c.github.io/webrtc-extensions/#rtcrtptransceiver-interface
169 virtual webrtc::RTCError SetOfferedRtpHeaderExtensions(
170 rtc::ArrayView<const RtpHeaderExtensionCapability>
Artem Titov226a2e32022-01-17 16:19:37 +0000171 header_extensions_to_offer);
Markus Handell755c65d2020-06-24 01:06:10 +0200172
Steve Anton6e634bf2017-11-13 10:44:53 -0800173 protected:
Mirko Bonadei79eb4dd2018-07-19 10:39:30 +0200174 ~RtpTransceiverInterface() override = default;
Steve Anton6e634bf2017-11-13 10:44:53 -0800175};
176
177} // namespace webrtc
178
Steve Anton10542f22019-01-11 09:11:00 -0800179#endif // API_RTP_TRANSCEIVER_INTERFACE_H_