deadbeef | 6979b02 | 2015-09-24 16:47:53 -0700 | [diff] [blame] | 1 | /* |
kjellander | b24317b | 2016-02-10 07:54:43 -0800 | [diff] [blame] | 2 | * Copyright 2015 The WebRTC project authors. All Rights Reserved. |
deadbeef | 6979b02 | 2015-09-24 16:47:53 -0700 | [diff] [blame] | 3 | * |
kjellander | b24317b | 2016-02-10 07:54:43 -0800 | [diff] [blame] | 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. |
deadbeef | 6979b02 | 2015-09-24 16:47:53 -0700 | [diff] [blame] | 9 | */ |
| 10 | |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 11 | // This file contains interfaces for RtpSenders |
| 12 | // http://w3c.github.io/webrtc-pc/#rtcrtpsender-interface |
| 13 | |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 14 | #ifndef API_RTP_SENDER_INTERFACE_H_ |
| 15 | #define API_RTP_SENDER_INTERFACE_H_ |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 16 | |
| 17 | #include <string> |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 18 | #include <vector> |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 19 | |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 20 | #include "api/crypto/frame_encryptor_interface.h" |
Harald Alvestrand | 4a7b3ac | 2019-01-17 10:39:40 +0100 | [diff] [blame] | 21 | #include "api/dtls_transport_interface.h" |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 22 | #include "api/dtmf_sender_interface.h" |
Marina Ciocea | e77912b | 2020-02-27 16:16:55 +0100 | [diff] [blame] | 23 | #include "api/frame_transformer_interface.h" |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 24 | #include "api/media_stream_interface.h" |
| 25 | #include "api/media_types.h" |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 26 | #include "api/rtc_error.h" |
| 27 | #include "api/rtp_parameters.h" |
Mirko Bonadei | d970807 | 2019-01-25 20:26:48 +0100 | [diff] [blame] | 28 | #include "api/scoped_refptr.h" |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 29 | #include "rtc_base/ref_count.h" |
Mirko Bonadei | 35214fc | 2019-09-23 14:54:28 +0200 | [diff] [blame] | 30 | #include "rtc_base/system/rtc_export.h" |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 31 | |
| 32 | namespace webrtc { |
| 33 | |
Mirko Bonadei | 35214fc | 2019-09-23 14:54:28 +0200 | [diff] [blame] | 34 | class RTC_EXPORT RtpSenderInterface : public rtc::RefCountInterface { |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 35 | public: |
| 36 | // Returns true if successful in setting the track. |
| 37 | // Fails if an audio track is set on a video RtpSender, or vice-versa. |
| 38 | virtual bool SetTrack(MediaStreamTrackInterface* track) = 0; |
| 39 | virtual rtc::scoped_refptr<MediaStreamTrackInterface> track() const = 0; |
| 40 | |
Harald Alvestrand | 4a7b3ac | 2019-01-17 10:39:40 +0100 | [diff] [blame] | 41 | // The dtlsTransport attribute exposes the DTLS transport on which the |
| 42 | // media is sent. It may be null. |
| 43 | // https://w3c.github.io/webrtc-pc/#dom-rtcrtpsender-transport |
| 44 | // TODO(https://bugs.webrtc.org/907849) remove default implementation |
| 45 | virtual rtc::scoped_refptr<DtlsTransportInterface> dtls_transport() const; |
| 46 | |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 47 | // Returns primary SSRC used by this sender for sending media. |
| 48 | // Returns 0 if not yet determined. |
Danil Chapovalov | 0bc58cf | 2018-06-21 13:32:56 +0200 | [diff] [blame] | 49 | // TODO(deadbeef): Change to absl::optional. |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 50 | // TODO(deadbeef): Remove? With GetParameters this should be redundant. |
deadbeef | fac0655 | 2015-11-25 11:26:01 -0800 | [diff] [blame] | 51 | virtual uint32_t ssrc() const = 0; |
| 52 | |
| 53 | // Audio or video sender? |
| 54 | virtual cricket::MediaType media_type() const = 0; |
| 55 | |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 56 | // Not to be confused with "mid", this is a field we can temporarily use |
| 57 | // to uniquely identify a receiver until we implement Unified Plan SDP. |
| 58 | virtual std::string id() const = 0; |
| 59 | |
Seth Hampson | 5b4f075 | 2018-04-02 16:31:36 -0700 | [diff] [blame] | 60 | // Returns a list of media stream ids associated with this sender's track. |
| 61 | // These are signalled in the SDP so that the remote side can associate |
| 62 | // tracks. |
deadbeef | a601f5c | 2016-06-06 14:27:39 -0700 | [diff] [blame] | 63 | virtual std::vector<std::string> stream_ids() const = 0; |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 64 | |
Guido Urdaneta | 1ff16c8 | 2019-05-20 19:31:53 +0200 | [diff] [blame] | 65 | // Sets the IDs of the media streams associated with this sender's track. |
| 66 | // These are signalled in the SDP so that the remote side can associate |
| 67 | // tracks. |
| 68 | virtual void SetStreams(const std::vector<std::string>& stream_ids) {} |
| 69 | |
Florent Castelli | 892acf0 | 2018-10-01 22:47:20 +0200 | [diff] [blame] | 70 | // Returns the list of encoding parameters that will be applied when the SDP |
| 71 | // local description is set. These initial encoding parameters can be set by |
| 72 | // PeerConnection::AddTransceiver, and later updated with Get/SetParameters. |
| 73 | // TODO(orphis): Make it pure virtual once Chrome has updated |
| 74 | virtual std::vector<RtpEncodingParameters> init_send_encodings() const; |
| 75 | |
Amit Hilbuch | e1e789b | 2019-02-20 10:40:12 -0800 | [diff] [blame] | 76 | virtual RtpParameters GetParameters() const = 0; |
deadbeef | b10f32f | 2017-02-08 01:38:21 -0800 | [diff] [blame] | 77 | // Note that only a subset of the parameters can currently be changed. See |
| 78 | // rtpparameters.h |
Åsa Persson | 5565981 | 2018-06-18 17:51:32 +0200 | [diff] [blame] | 79 | // The encodings are in increasing quality order for simulcast. |
Zach Stein | ba37b4b | 2018-01-23 15:02:36 -0800 | [diff] [blame] | 80 | virtual RTCError SetParameters(const RtpParameters& parameters) = 0; |
skvlad | dc1c62c | 2016-03-16 19:07:43 -0700 | [diff] [blame] | 81 | |
deadbeef | 20cb0c1 | 2017-02-01 20:27:00 -0800 | [diff] [blame] | 82 | // Returns null for a video sender. |
| 83 | virtual rtc::scoped_refptr<DtmfSenderInterface> GetDtmfSender() const = 0; |
| 84 | |
Benjamin Wright | d81ac95 | 2018-08-29 17:02:10 -0700 | [diff] [blame] | 85 | // Sets a user defined frame encryptor that will encrypt the entire frame |
| 86 | // before it is sent across the network. This will encrypt the entire frame |
| 87 | // using the user provided encryption mechanism regardless of whether SRTP is |
| 88 | // enabled or not. |
| 89 | virtual void SetFrameEncryptor( |
| 90 | rtc::scoped_refptr<FrameEncryptorInterface> frame_encryptor); |
| 91 | |
| 92 | // Returns a pointer to the frame encryptor set previously by the |
| 93 | // user. This can be used to update the state of the object. |
| 94 | virtual rtc::scoped_refptr<FrameEncryptorInterface> GetFrameEncryptor() const; |
| 95 | |
Marina Ciocea | e77912b | 2020-02-27 16:16:55 +0100 | [diff] [blame] | 96 | virtual void SetEncoderToPacketizerFrameTransformer( |
| 97 | rtc::scoped_refptr<FrameTransformerInterface> frame_transformer); |
| 98 | |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 99 | protected: |
Mirko Bonadei | 79eb4dd | 2018-07-19 10:39:30 +0200 | [diff] [blame] | 100 | ~RtpSenderInterface() override = default; |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 101 | }; |
| 102 | |
deadbeef | 70ab1a1 | 2015-09-28 16:53:55 -0700 | [diff] [blame] | 103 | } // namespace webrtc |
| 104 | |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 105 | #endif // API_RTP_SENDER_INTERFACE_H_ |