// This file contains classes that implement RtpSenderInterface. // An RtpSender associates a MediaStreamTrackInterface with an underlying // transport (provided by AudioProviderInterface/VideoProviderInterface)
// Internal interface used by PeerConnection. class RtpSenderInternal : public RtpSenderInterface { public: // Sets the underlying MediaEngine channel associated with this RtpSender. // A VoiceMediaChannel should be used for audio RtpSenders and // a VideoMediaChannel should be used for video RtpSenders. // Must call SetMediaChannel(nullptr) before the media channel is destroyed. virtualvoid SetMediaChannel(MediaSendChannelInterface* media_channel) = 0;
// Used to set the SSRC of the sender, once a local description has been set. // If `ssrc` is 0, this indiates that the sender should disconnect from the // underlying transport (this occurs if the sender isn't seen in a local // description).
PLAN_B_ONLY virtualvoid SetSsrc(uint32_t ssrc) = 0;
// Cleans up the state on the signaling thread, as `Stop()` does, but does // not perform the worker thread cleanup directly. Instead, returns a task // that the caller must invoke on the worker thread to perform that work. // Note that if no worker thread needs to be done, the retuned task will be // empty. virtual absl::AnyInvocable<void() &&> DetachTrackAndGetStopTask() = 0;
// `GetParameters` and `SetParameters` operate with a transactional model. // Allow access to get/set parameters without invalidating transaction id. virtual RtpParameters GetParametersInternal(bool may_use_cache, bool with_all_layers) const = 0; virtual RTCError SetParametersInternal(const RtpParameters& parameters,
SetParametersCallback, bool blocking) = 0; virtualvoid SetCachedParameters(std::optional<RtpParameters> parameters) = 0;
// GetParameters and SetParameters will remove deactivated simulcast layers // and restore them on SetParameters. This is probably a Bad Idea, but we // do not know who depends on this behavior virtual RtpParameters GetParametersInternalWithAllLayers() const = 0; virtual RTCError SetParametersInternalWithAllLayers( const RtpParameters& parameters) = 0;
// Returns an ID that changes every time SetTrack() is called, but // otherwise remains constant. Used to generate IDs for stats. // The special value zero means that no track is attached. virtual int AttachmentId() const = 0;
// Disables the layers identified by the specified RIDs. // If the specified list is empty, this is a no-op. virtual RTCError DisableEncodingLayers( const std::vector<std::string>& rid) = 0;
// Used by the owning transceiver to inform the sender on the currently // selected codecs. virtualvoid SetSendCodecs(std::vector<Codec> send_codecs) = 0; virtual std::vector<Codec> GetSendCodecs() const = 0;
virtualvoid NotifyFirstPacketSent() = 0;
};
// Shared implementation for RtpSenderInternal interface. class RtpSenderBase : public RtpSenderInternal, public ObserverInterface { public: class SetStreamsObserver { public: virtual ~SetStreamsObserver() = default; virtualvoid OnSetStreams() = 0;
};
~RtpSenderBase() override;
// Sets the underlying MediaEngine channel associated with this RtpSender. // A VoiceMediaChannel should be used for audio RtpSenders and // a VideoMediaChannel should be used for video RtpSenders. // Must call SetMediaChannel(nullptr) before the media channel is destroyed. void SetMediaChannel(MediaSendChannelInterface* media_channel) override;
// Used to set the SSRC of the sender, once a local description has been set. // If `ssrc` is 0, this indiates that the sender should disconnect from the // underlying transport (this occurs if the sender isn't seen in a local // description).
PLAN_B_ONLY void SetSsrc(uint32_t ssrc) override;
ScopedOperationsBatcher::BatchTaskWithFinalizer SetSsrcTask(
uint32_t ssrc) override;
// Returns an ID that changes every time SetTrack() is called, but // otherwise remains constant. Used to generate IDs for stats. // The special value zero means that no track is attached.
int AttachmentId() const override { return attachment_id_; }
// Disables the layers identified by the specified RIDs. // If the specified list is empty, this is a no-op.
RTCError DisableEncodingLayers(const std::vector<std::string>& rid) override;
// Called by the media channel when parameters change autonomously on the // worker thread (e.g., encoder fallback). void OnParametersChanged(); // If `set_streams_observer` is not null, it is invoked when SetStreams() // is called. `set_streams_observer` is not owned by this object. If not // null, it must be valid at least until this sender becomes stopped.
RtpSenderBase(const Environment& env,
Thread* signaling_thread,
Thread* worker_thread,
absl::string_view id,
MediaType media_type,
SetStreamsObserver* set_streams_observer,
absl::AnyInvocable<RTCError()> enable_sframe_at_owner,
MediaSendChannelInterface* media_channel);
// TODO(bugs.webrtc.org/8694): Since SSRC == 0 is technically valid, figure // out some other way to test if we have a valid SSRC. bool can_send_track() const RTC_RUN_ON(signaling_thread_) { return track_ && ssrc_;
}
virtual std::string track_kind() const = 0;
// Enable sending on the media channel. virtualvoid SetSend() = 0; // Disable sending on the media channel. virtualvoid ClearSend() = 0; virtualvoid ClearSend_w(uint32_t ssrc) RTC_RUN_ON(worker_thread_) = 0;
// Template method pattern to allow subclasses to add custom behavior for // when tracks are attached, detached, and for adding tracks to statistics. virtualvoid AttachTrack() RTC_RUN_ON(signaling_thread_) {} virtualvoid DetachTrack() RTC_RUN_ON(signaling_thread_) {} virtualvoid AddTrackToStats() RTC_RUN_ON(signaling_thread_) {} virtualvoid RemoveTrackFromStats() RTC_RUN_ON(signaling_thread_) {}
// Special case for downstream code that calls into this code with a // configuration where the signaling, worker and network threads are all // configured to be the same thread.
RTCError SetParametersInternalWorkaround(const RtpParameters& parameters);
const Environment env_;
TaskQueueBase* const signaling_thread_;
Thread* const worker_thread_; // TODO(tommi): The type for ssrc_ should be `std::optional<uint32_t>` // since 0 is a legal SSRC value.
uint32_t ssrc_ RTC_GUARDED_BY(signaling_thread_) = 0; bool stopped_ RTC_GUARDED_BY(signaling_thread_) = false;
int attachment_id_ = 0; const std::string id_; const MediaType media_type_;
// TODO(tommi): Several member variables in this class (ssrc_, stopped_, etc) // are accessed from more than one thread without a guard or lock. Internally // there are also several Invoke()s that we could remove since the upstream // code may already be performing several operations on the worker thread. Add // RTC_GUARDED_BY(worker_thread_).
MediaSendChannelInterface* media_channel_ RTC_GUARDED_BY(worker_thread_) =
nullptr; // Apply RTC_GUARDED_BY(signaling_thread_) when not accessed from worker.
scoped_refptr<MediaStreamTrackInterface> track_;
scoped_refptr<DtlsTransportInterface> dtls_transport_; // Apply RTC_GUARDED_BY(worker_thread_) when no longer accessed from unknown // threads. Alternatively make const.
scoped_refptr<FrameEncryptorInterface> frame_encryptor_; // `last_transaction_id_` is used to verify that `SetParameters` is receiving // the parameters object that was last returned from `GetParameters`. // As such, it is used for internal verification and is not observable by the // the client. It is marked as mutable to enable `GetParameters` to be a // const method.
mutable std::optional<std::string> last_transaction_id_
RTC_GUARDED_BY(signaling_thread_);
std::vector<std::string> disabled_rids_;
// LocalAudioSinkAdapter receives data callback as a sink to the local // AudioTrack, and passes the data to the sink of AudioSource. class LocalAudioSinkAdapter : public AudioTrackSinkInterface, public AudioSource { public:
LocalAudioSinkAdapter();
~LocalAudioSinkAdapter() override;
private: // AudioSinkInterface implementation. void OnData(constvoid* audio_data,
int bits_per_sample,
int sample_rate,
size_t number_of_channels,
size_t number_of_frames,
std::optional<int64_t> absolute_capture_timestamp_ms) override;
class AudioRtpSender : public DtmfProviderInterface, public RtpSenderBase { public: // Construct an RtpSender for audio with the given sender ID. // The sender is initialized with no track to send and no associated streams. // StatsCollector provided so that Add/RemoveLocalAudioTrack can be called // at the appropriate times. // If `set_streams_observer` is not null, it is invoked when SetStreams() // is called. `set_streams_observer` is not owned by this object. If not // null, it must be valid at least until this sender becomes stopped. static scoped_refptr<AudioRtpSender> Create( const Environment& env,
Thread* signaling_thread,
Thread* worker_thread,
absl::string_view id,
LegacyStatsCollectorInterface* stats,
SetStreamsObserver* set_streams_observer,
absl::AnyInvocable<RTCError()> enable_sframe_at_owner,
MediaSendChannelInterface* media_channel);
~AudioRtpSender() override;
// Used to pass the data callback from the `track_` to the other end of // webrtc::AudioSource. const std::unique_ptr<LocalAudioSinkAdapter> sink_adapter_;
};
class VideoRtpSender : public RtpSenderBase { public: // Construct an RtpSender for video with the given sender ID. // The sender is initialized with no track to send and no associated streams. // If `set_streams_observer` is not null, it is invoked when SetStreams() // is called. `set_streams_observer` is not owned by this object. If not // null, it must be valid at least until this sender becomes stopped. // `initial_simulcast_layers` filters the initial encodings by RID and sets // their active state. Works with `simulcast_rejected` to determine the final // set of layers. static scoped_refptr<VideoRtpSender> Create( const Environment& env,
Thread* signaling_thread,
Thread* worker_thread,
absl::string_view id,
SetStreamsObserver* set_streams_observer,
absl::AnyInvocable<RTCError()> enable_sframe_at_owner,
MediaSendChannelInterface* media_channel, const std::vector<RtpEncodingParameters>& init_send_encodings, bool simulcast_rejected, const std::vector<SimulcastLayer>& initial_simulcast_layers);
~VideoRtpSender() override;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.