2015-09-24 16:47:53 -07:00
|
|
|
/*
|
2016-02-10 07:54:43 -08:00
|
|
|
* Copyright 2015 The WebRTC project authors. All Rights Reserved.
|
2015-09-24 16:47:53 -07:00
|
|
|
*
|
2016-02-10 07:54:43 -08:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2015-09-24 16:47:53 -07:00
|
|
|
*/
|
|
|
|
|
|
2015-09-28 16:53:55 -07:00
|
|
|
// This file contains interfaces for RtpSenders
|
|
|
|
|
// http://w3c.github.io/webrtc-pc/#rtcrtpsender-interface
|
|
|
|
|
|
2019-01-11 09:11:00 -08:00
|
|
|
#ifndef API_RTP_SENDER_INTERFACE_H_
|
|
|
|
|
#define API_RTP_SENDER_INTERFACE_H_
|
2015-09-28 16:53:55 -07:00
|
|
|
|
|
|
|
|
#include <string>
|
2016-06-06 14:27:39 -07:00
|
|
|
#include <vector>
|
2015-09-28 16:53:55 -07:00
|
|
|
|
2019-01-11 09:11:00 -08:00
|
|
|
#include "api/crypto/frame_encryptor_interface.h"
|
2019-01-17 10:39:40 +01:00
|
|
|
#include "api/dtls_transport_interface.h"
|
2019-01-11 09:11:00 -08:00
|
|
|
#include "api/dtmf_sender_interface.h"
|
2020-02-27 16:16:55 +01:00
|
|
|
#include "api/frame_transformer_interface.h"
|
2019-01-11 09:11:00 -08:00
|
|
|
#include "api/media_stream_interface.h"
|
|
|
|
|
#include "api/media_types.h"
|
|
|
|
|
#include "api/rtc_error.h"
|
|
|
|
|
#include "api/rtp_parameters.h"
|
2019-01-25 20:26:48 +01:00
|
|
|
#include "api/scoped_refptr.h"
|
2019-01-11 09:11:00 -08:00
|
|
|
#include "rtc_base/ref_count.h"
|
2019-09-23 14:54:28 +02:00
|
|
|
#include "rtc_base/system/rtc_export.h"
|
2015-09-28 16:53:55 -07:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
2019-09-23 14:54:28 +02:00
|
|
|
class RTC_EXPORT RtpSenderInterface : public rtc::RefCountInterface {
|
2015-09-28 16:53:55 -07:00
|
|
|
public:
|
|
|
|
|
// Returns true if successful in setting the track.
|
|
|
|
|
// Fails if an audio track is set on a video RtpSender, or vice-versa.
|
|
|
|
|
virtual bool SetTrack(MediaStreamTrackInterface* track) = 0;
|
|
|
|
|
virtual rtc::scoped_refptr<MediaStreamTrackInterface> track() const = 0;
|
|
|
|
|
|
2019-01-17 10:39:40 +01:00
|
|
|
// The dtlsTransport attribute exposes the DTLS transport on which the
|
|
|
|
|
// media is sent. It may be null.
|
|
|
|
|
// https://w3c.github.io/webrtc-pc/#dom-rtcrtpsender-transport
|
|
|
|
|
// TODO(https://bugs.webrtc.org/907849) remove default implementation
|
|
|
|
|
virtual rtc::scoped_refptr<DtlsTransportInterface> dtls_transport() const;
|
|
|
|
|
|
2016-06-06 14:27:39 -07:00
|
|
|
// Returns primary SSRC used by this sender for sending media.
|
|
|
|
|
// Returns 0 if not yet determined.
|
2018-06-21 13:32:56 +02:00
|
|
|
// TODO(deadbeef): Change to absl::optional.
|
2016-06-06 14:27:39 -07:00
|
|
|
// TODO(deadbeef): Remove? With GetParameters this should be redundant.
|
2015-11-25 11:26:01 -08:00
|
|
|
virtual uint32_t ssrc() const = 0;
|
|
|
|
|
|
|
|
|
|
// Audio or video sender?
|
|
|
|
|
virtual cricket::MediaType media_type() const = 0;
|
|
|
|
|
|
2015-09-28 16:53:55 -07:00
|
|
|
// Not to be confused with "mid", this is a field we can temporarily use
|
|
|
|
|
// to uniquely identify a receiver until we implement Unified Plan SDP.
|
|
|
|
|
virtual std::string id() const = 0;
|
|
|
|
|
|
2018-04-02 16:31:36 -07:00
|
|
|
// Returns a list of media stream ids associated with this sender's track.
|
|
|
|
|
// These are signalled in the SDP so that the remote side can associate
|
|
|
|
|
// tracks.
|
2016-06-06 14:27:39 -07:00
|
|
|
virtual std::vector<std::string> stream_ids() const = 0;
|
2015-09-28 16:53:55 -07:00
|
|
|
|
2019-05-20 19:31:53 +02:00
|
|
|
// Sets the IDs of the media streams associated with this sender's track.
|
|
|
|
|
// These are signalled in the SDP so that the remote side can associate
|
|
|
|
|
// tracks.
|
|
|
|
|
virtual void SetStreams(const std::vector<std::string>& stream_ids) {}
|
|
|
|
|
|
2018-10-01 22:47:20 +02:00
|
|
|
// Returns the list of encoding parameters that will be applied when the SDP
|
|
|
|
|
// local description is set. These initial encoding parameters can be set by
|
|
|
|
|
// PeerConnection::AddTransceiver, and later updated with Get/SetParameters.
|
|
|
|
|
// TODO(orphis): Make it pure virtual once Chrome has updated
|
|
|
|
|
virtual std::vector<RtpEncodingParameters> init_send_encodings() const;
|
|
|
|
|
|
2019-02-20 10:40:12 -08:00
|
|
|
virtual RtpParameters GetParameters() const = 0;
|
2017-02-08 01:38:21 -08:00
|
|
|
// Note that only a subset of the parameters can currently be changed. See
|
|
|
|
|
// rtpparameters.h
|
2018-06-18 17:51:32 +02:00
|
|
|
// The encodings are in increasing quality order for simulcast.
|
2018-01-23 15:02:36 -08:00
|
|
|
virtual RTCError SetParameters(const RtpParameters& parameters) = 0;
|
2016-03-16 19:07:43 -07:00
|
|
|
|
2017-02-01 20:27:00 -08:00
|
|
|
// Returns null for a video sender.
|
|
|
|
|
virtual rtc::scoped_refptr<DtmfSenderInterface> GetDtmfSender() const = 0;
|
|
|
|
|
|
2018-08-29 17:02:10 -07:00
|
|
|
// Sets a user defined frame encryptor that will encrypt the entire frame
|
|
|
|
|
// before it is sent across the network. This will encrypt the entire frame
|
|
|
|
|
// using the user provided encryption mechanism regardless of whether SRTP is
|
|
|
|
|
// enabled or not.
|
|
|
|
|
virtual void SetFrameEncryptor(
|
|
|
|
|
rtc::scoped_refptr<FrameEncryptorInterface> frame_encryptor);
|
|
|
|
|
|
|
|
|
|
// Returns a pointer to the frame encryptor set previously by the
|
|
|
|
|
// user. This can be used to update the state of the object.
|
|
|
|
|
virtual rtc::scoped_refptr<FrameEncryptorInterface> GetFrameEncryptor() const;
|
|
|
|
|
|
2020-02-27 16:16:55 +01:00
|
|
|
virtual void SetEncoderToPacketizerFrameTransformer(
|
|
|
|
|
rtc::scoped_refptr<FrameTransformerInterface> frame_transformer);
|
|
|
|
|
|
2015-09-28 16:53:55 -07:00
|
|
|
protected:
|
2018-07-19 10:39:30 +02:00
|
|
|
~RtpSenderInterface() override = default;
|
2015-09-28 16:53:55 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace webrtc
|
|
|
|
|
|
2019-01-11 09:11:00 -08:00
|
|
|
#endif // API_RTP_SENDER_INTERFACE_H_
|