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
|
|
|
*/
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "pc/rtpsender.h"
|
2015-09-24 16:47:53 -07:00
|
|
|
|
2018-08-29 17:02:10 -07:00
|
|
|
#include <utility>
|
2017-10-30 09:57:42 -07:00
|
|
|
#include <vector>
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "api/mediastreaminterface.h"
|
|
|
|
|
#include "pc/localaudiosource.h"
|
2018-01-23 16:38:46 -08:00
|
|
|
#include "pc/statscollector.h"
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "rtc_base/checks.h"
|
|
|
|
|
#include "rtc_base/helpers.h"
|
|
|
|
|
#include "rtc_base/trace_event.h"
|
2015-09-28 16:53:55 -07:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
2018-01-11 17:18:19 +01:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
// This function is only expected to be called on the signalling thread.
|
|
|
|
|
int GenerateUniqueId() {
|
|
|
|
|
static int g_unique_id = 0;
|
|
|
|
|
|
|
|
|
|
return ++g_unique_id;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-16 16:02:32 -07:00
|
|
|
// Returns an true if any RtpEncodingParameters member that isn't implemented
|
|
|
|
|
// contains a value.
|
|
|
|
|
bool UnimplementedRtpEncodingParameterHasValue(
|
|
|
|
|
const RtpEncodingParameters& encoding_params) {
|
|
|
|
|
if (encoding_params.codec_payload_type.has_value() ||
|
|
|
|
|
encoding_params.fec.has_value() || encoding_params.rtx.has_value() ||
|
|
|
|
|
encoding_params.dtx.has_value() || encoding_params.ptime.has_value() ||
|
2018-08-14 07:23:21 +00:00
|
|
|
encoding_params.max_framerate.has_value() ||
|
2018-05-16 16:02:32 -07:00
|
|
|
!encoding_params.rid.empty() ||
|
|
|
|
|
encoding_params.scale_resolution_down_by.has_value() ||
|
|
|
|
|
encoding_params.scale_framerate_down_by.has_value() ||
|
|
|
|
|
!encoding_params.dependency_rids.empty()) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Returns true if a "per-sender" encoding parameter contains a value that isn't
|
|
|
|
|
// its default. Currently max_bitrate_bps and bitrate_priority both are
|
|
|
|
|
// implemented "per-sender," meaning that these encoding parameters
|
|
|
|
|
// are used for the RtpSender as a whole, not for a specific encoding layer.
|
|
|
|
|
// This is done by setting these encoding parameters at index 0 of
|
|
|
|
|
// RtpParameters.encodings. This function can be used to check if these
|
|
|
|
|
// parameters are set at any index other than 0 of RtpParameters.encodings,
|
|
|
|
|
// because they are currently unimplemented to be used for a specific encoding
|
|
|
|
|
// layer.
|
|
|
|
|
bool PerSenderRtpEncodingParameterHasValue(
|
|
|
|
|
const RtpEncodingParameters& encoding_params) {
|
2018-06-18 17:51:32 +02:00
|
|
|
if (encoding_params.bitrate_priority != kDefaultBitratePriority) {
|
2018-05-16 16:02:32 -07:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Returns true if any RtpParameters member that isn't implemented contains a
|
|
|
|
|
// value.
|
|
|
|
|
bool UnimplementedRtpParameterHasValue(const RtpParameters& parameters) {
|
2018-07-18 16:00:28 +02:00
|
|
|
if (!parameters.mid.empty()) {
|
2018-05-16 16:02:32 -07:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
for (size_t i = 0; i < parameters.encodings.size(); ++i) {
|
|
|
|
|
if (UnimplementedRtpEncodingParameterHasValue(parameters.encodings[i])) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
// Encoding parameters that are per-sender should only contain value at
|
|
|
|
|
// index 0.
|
|
|
|
|
if (i != 0 &&
|
|
|
|
|
PerSenderRtpEncodingParameterHasValue(parameters.encodings[i])) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-11 17:18:19 +01:00
|
|
|
} // namespace
|
|
|
|
|
|
2015-09-28 16:53:55 -07:00
|
|
|
LocalAudioSinkAdapter::LocalAudioSinkAdapter() : sink_(nullptr) {}
|
|
|
|
|
|
|
|
|
|
LocalAudioSinkAdapter::~LocalAudioSinkAdapter() {
|
|
|
|
|
rtc::CritScope lock(&lock_);
|
|
|
|
|
if (sink_)
|
|
|
|
|
sink_->OnClose();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void LocalAudioSinkAdapter::OnData(const void* audio_data,
|
|
|
|
|
int bits_per_sample,
|
|
|
|
|
int sample_rate,
|
Convert channel counts to size_t.
IIRC, this was originally requested by ajm during review of the other size_t conversions I did over the past year, and I agreed it made sense, but wanted to do it separately since those changes were already gargantuan.
BUG=chromium:81439
TEST=none
R=henrik.lundin@webrtc.org, henrika@webrtc.org, kjellander@webrtc.org, minyue@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org
Review URL: https://codereview.webrtc.org/1316523002 .
Cr-Commit-Position: refs/heads/master@{#11229}
2016-01-12 16:26:35 -08:00
|
|
|
size_t number_of_channels,
|
2015-09-28 16:53:55 -07:00
|
|
|
size_t number_of_frames) {
|
|
|
|
|
rtc::CritScope lock(&lock_);
|
|
|
|
|
if (sink_) {
|
|
|
|
|
sink_->OnData(audio_data, bits_per_sample, sample_rate, number_of_channels,
|
|
|
|
|
number_of_frames);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-08 12:37:39 -08:00
|
|
|
void LocalAudioSinkAdapter::SetSink(cricket::AudioSource::Sink* sink) {
|
2015-09-28 16:53:55 -07:00
|
|
|
rtc::CritScope lock(&lock_);
|
2017-01-12 05:15:36 -08:00
|
|
|
RTC_DCHECK(!sink || !sink_);
|
2015-09-28 16:53:55 -07:00
|
|
|
sink_ = sink;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-12 10:49:35 -08:00
|
|
|
AudioRtpSender::AudioRtpSender(rtc::Thread* worker_thread,
|
2018-06-25 13:03:36 -07:00
|
|
|
const std::string& id,
|
2016-01-14 15:35:42 -08:00
|
|
|
StatsCollector* stats)
|
2018-01-12 10:49:35 -08:00
|
|
|
: worker_thread_(worker_thread),
|
2018-06-25 13:03:36 -07:00
|
|
|
id_(id),
|
2016-01-14 15:35:42 -08:00
|
|
|
stats_(stats),
|
2018-01-10 16:26:06 -08:00
|
|
|
dtmf_sender_proxy_(DtmfSenderProxy::Create(
|
|
|
|
|
rtc::Thread::Current(),
|
2018-06-20 11:16:53 -07:00
|
|
|
DtmfSender::Create(rtc::Thread::Current(), this))),
|
2018-06-25 13:03:36 -07:00
|
|
|
sink_adapter_(new LocalAudioSinkAdapter()) {
|
2018-01-12 10:49:35 -08:00
|
|
|
RTC_DCHECK(worker_thread);
|
2017-02-01 20:27:00 -08:00
|
|
|
}
|
2015-11-25 11:26:01 -08:00
|
|
|
|
2015-09-28 16:53:55 -07:00
|
|
|
AudioRtpSender::~AudioRtpSender() {
|
2017-02-01 20:27:00 -08:00
|
|
|
// For DtmfSender.
|
|
|
|
|
SignalDestroyed();
|
2015-09-28 16:53:55 -07:00
|
|
|
Stop();
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-01 20:27:00 -08:00
|
|
|
bool AudioRtpSender::CanInsertDtmf() {
|
2018-01-12 10:49:35 -08:00
|
|
|
if (!media_channel_) {
|
2017-11-09 11:09:25 +01:00
|
|
|
RTC_LOG(LS_ERROR) << "CanInsertDtmf: No audio channel exists.";
|
2017-02-01 20:27:00 -08:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
// Check that this RTP sender is active (description has been applied that
|
|
|
|
|
// matches an SSRC to its ID).
|
|
|
|
|
if (!ssrc_) {
|
2017-11-09 11:09:25 +01:00
|
|
|
RTC_LOG(LS_ERROR) << "CanInsertDtmf: Sender does not have SSRC.";
|
2017-02-01 20:27:00 -08:00
|
|
|
return false;
|
|
|
|
|
}
|
2018-01-12 10:49:35 -08:00
|
|
|
return worker_thread_->Invoke<bool>(
|
|
|
|
|
RTC_FROM_HERE, [&] { return media_channel_->CanInsertDtmf(); });
|
2017-02-01 20:27:00 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool AudioRtpSender::InsertDtmf(int code, int duration) {
|
2018-01-12 10:49:35 -08:00
|
|
|
if (!media_channel_) {
|
2018-02-13 10:37:07 +01:00
|
|
|
RTC_LOG(LS_ERROR) << "InsertDtmf: No audio channel exists.";
|
2017-02-01 20:27:00 -08:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (!ssrc_) {
|
2018-02-13 10:37:07 +01:00
|
|
|
RTC_LOG(LS_ERROR) << "InsertDtmf: Sender does not have SSRC.";
|
2017-02-01 20:27:00 -08:00
|
|
|
return false;
|
|
|
|
|
}
|
2018-01-12 10:49:35 -08:00
|
|
|
bool success = worker_thread_->Invoke<bool>(RTC_FROM_HERE, [&] {
|
|
|
|
|
return media_channel_->InsertDtmf(ssrc_, code, duration);
|
|
|
|
|
});
|
|
|
|
|
if (!success) {
|
2017-11-09 11:09:25 +01:00
|
|
|
RTC_LOG(LS_ERROR) << "Failed to insert DTMF to channel.";
|
2017-02-01 20:27:00 -08:00
|
|
|
}
|
2018-01-12 10:49:35 -08:00
|
|
|
return success;
|
2017-02-01 20:27:00 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sigslot::signal0<>* AudioRtpSender::GetOnDestroyedSignal() {
|
|
|
|
|
return &SignalDestroyed;
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-28 16:53:55 -07:00
|
|
|
void AudioRtpSender::OnChanged() {
|
2016-04-11 11:45:14 +02:00
|
|
|
TRACE_EVENT0("webrtc", "AudioRtpSender::OnChanged");
|
2015-11-25 11:26:01 -08:00
|
|
|
RTC_DCHECK(!stopped_);
|
2015-09-28 16:53:55 -07:00
|
|
|
if (cached_track_enabled_ != track_->enabled()) {
|
|
|
|
|
cached_track_enabled_ = track_->enabled();
|
2015-11-25 11:26:01 -08:00
|
|
|
if (can_send_track()) {
|
|
|
|
|
SetAudioSend();
|
|
|
|
|
}
|
2015-09-28 16:53:55 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool AudioRtpSender::SetTrack(MediaStreamTrackInterface* track) {
|
2016-04-11 11:45:14 +02:00
|
|
|
TRACE_EVENT0("webrtc", "AudioRtpSender::SetTrack");
|
2015-11-25 11:26:01 -08:00
|
|
|
if (stopped_) {
|
2017-11-09 11:09:25 +01:00
|
|
|
RTC_LOG(LS_ERROR) << "SetTrack can't be called on a stopped RtpSender.";
|
2015-11-25 11:26:01 -08:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (track && track->kind() != MediaStreamTrackInterface::kAudioKind) {
|
2017-11-09 11:09:25 +01:00
|
|
|
RTC_LOG(LS_ERROR) << "SetTrack called on audio RtpSender with "
|
|
|
|
|
<< track->kind() << " track.";
|
2015-09-28 16:53:55 -07:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
AudioTrackInterface* audio_track = static_cast<AudioTrackInterface*>(track);
|
|
|
|
|
|
|
|
|
|
// Detach from old track.
|
2015-11-25 11:26:01 -08:00
|
|
|
if (track_) {
|
|
|
|
|
track_->RemoveSink(sink_adapter_.get());
|
|
|
|
|
track_->UnregisterObserver(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (can_send_track() && stats_) {
|
|
|
|
|
stats_->RemoveLocalAudioTrack(track_.get(), ssrc_);
|
|
|
|
|
}
|
2015-09-28 16:53:55 -07:00
|
|
|
|
|
|
|
|
// Attach to new track.
|
2015-11-25 11:26:01 -08:00
|
|
|
bool prev_can_send_track = can_send_track();
|
2016-05-02 16:20:01 -07:00
|
|
|
// Keep a reference to the old track to keep it alive until we call
|
|
|
|
|
// SetAudioSend.
|
|
|
|
|
rtc::scoped_refptr<AudioTrackInterface> old_track = track_;
|
2015-09-28 16:53:55 -07:00
|
|
|
track_ = audio_track;
|
2015-11-25 11:26:01 -08:00
|
|
|
if (track_) {
|
|
|
|
|
cached_track_enabled_ = track_->enabled();
|
|
|
|
|
track_->RegisterObserver(this);
|
|
|
|
|
track_->AddSink(sink_adapter_.get());
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-27 16:30:35 -07:00
|
|
|
// Update audio channel.
|
2015-11-25 11:26:01 -08:00
|
|
|
if (can_send_track()) {
|
|
|
|
|
SetAudioSend();
|
|
|
|
|
if (stats_) {
|
|
|
|
|
stats_->AddLocalAudioTrack(track_.get(), ssrc_);
|
|
|
|
|
}
|
|
|
|
|
} else if (prev_can_send_track) {
|
2016-06-27 16:30:35 -07:00
|
|
|
ClearAudioSend();
|
2015-11-25 11:26:01 -08:00
|
|
|
}
|
2018-06-25 13:03:36 -07:00
|
|
|
attachment_id_ = (track_ ? GenerateUniqueId() : 0);
|
2015-09-28 16:53:55 -07:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-03 15:31:53 +02:00
|
|
|
RtpParameters AudioRtpSender::GetParameters() {
|
2018-01-12 10:49:35 -08:00
|
|
|
if (!media_channel_ || stopped_) {
|
2016-06-27 16:30:35 -07:00
|
|
|
return RtpParameters();
|
|
|
|
|
}
|
2018-01-12 10:49:35 -08:00
|
|
|
return worker_thread_->Invoke<RtpParameters>(RTC_FROM_HERE, [&] {
|
2018-05-03 15:31:53 +02:00
|
|
|
RtpParameters result = media_channel_->GetRtpSendParameters(ssrc_);
|
|
|
|
|
last_transaction_id_ = rtc::CreateRandomUuid();
|
|
|
|
|
result.transaction_id = last_transaction_id_.value();
|
|
|
|
|
return result;
|
2018-01-12 10:49:35 -08:00
|
|
|
});
|
2016-06-06 14:27:39 -07:00
|
|
|
}
|
|
|
|
|
|
2018-01-23 15:02:36 -08:00
|
|
|
RTCError AudioRtpSender::SetParameters(const RtpParameters& parameters) {
|
2016-06-06 14:27:39 -07:00
|
|
|
TRACE_EVENT0("webrtc", "AudioRtpSender::SetParameters");
|
2018-01-12 10:49:35 -08:00
|
|
|
if (!media_channel_ || stopped_) {
|
2018-01-23 15:02:36 -08:00
|
|
|
return RTCError(RTCErrorType::INVALID_STATE);
|
2016-06-27 16:30:35 -07:00
|
|
|
}
|
2018-05-03 15:31:53 +02:00
|
|
|
if (!last_transaction_id_) {
|
|
|
|
|
LOG_AND_RETURN_ERROR(
|
|
|
|
|
RTCErrorType::INVALID_STATE,
|
|
|
|
|
"Failed to set parameters since getParameters() has never been called"
|
|
|
|
|
" on this sender");
|
|
|
|
|
}
|
|
|
|
|
if (last_transaction_id_ != parameters.transaction_id) {
|
|
|
|
|
LOG_AND_RETURN_ERROR(
|
|
|
|
|
RTCErrorType::INVALID_MODIFICATION,
|
|
|
|
|
"Failed to set parameters since the transaction_id doesn't match"
|
|
|
|
|
" the last value returned from getParameters()");
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-16 16:02:32 -07:00
|
|
|
if (UnimplementedRtpParameterHasValue(parameters)) {
|
|
|
|
|
LOG_AND_RETURN_ERROR(
|
|
|
|
|
RTCErrorType::UNSUPPORTED_PARAMETER,
|
|
|
|
|
"Attempted to set an unimplemented parameter of RtpParameters.");
|
|
|
|
|
}
|
2018-01-23 15:02:36 -08:00
|
|
|
return worker_thread_->Invoke<RTCError>(RTC_FROM_HERE, [&] {
|
2018-05-03 15:31:53 +02:00
|
|
|
RTCError result = media_channel_->SetRtpSendParameters(ssrc_, parameters);
|
|
|
|
|
last_transaction_id_.reset();
|
|
|
|
|
return result;
|
2018-01-12 10:49:35 -08:00
|
|
|
});
|
2016-06-06 14:27:39 -07:00
|
|
|
}
|
|
|
|
|
|
2017-02-01 20:27:00 -08:00
|
|
|
rtc::scoped_refptr<DtmfSenderInterface> AudioRtpSender::GetDtmfSender() const {
|
|
|
|
|
return dtmf_sender_proxy_;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-29 17:02:10 -07:00
|
|
|
void AudioRtpSender::SetFrameEncryptor(
|
|
|
|
|
rtc::scoped_refptr<FrameEncryptorInterface> frame_encryptor) {
|
|
|
|
|
frame_encryptor_ = std::move(frame_encryptor);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rtc::scoped_refptr<FrameEncryptorInterface> AudioRtpSender::GetFrameEncryptor()
|
|
|
|
|
const {
|
|
|
|
|
return frame_encryptor_;
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-25 11:26:01 -08:00
|
|
|
void AudioRtpSender::SetSsrc(uint32_t ssrc) {
|
2016-04-11 11:45:14 +02:00
|
|
|
TRACE_EVENT0("webrtc", "AudioRtpSender::SetSsrc");
|
2015-11-25 11:26:01 -08:00
|
|
|
if (stopped_ || ssrc == ssrc_) {
|
2015-10-26 14:11:17 -07:00
|
|
|
return;
|
|
|
|
|
}
|
2015-11-25 11:26:01 -08:00
|
|
|
// If we are already sending with a particular SSRC, stop sending.
|
|
|
|
|
if (can_send_track()) {
|
2016-06-27 16:30:35 -07:00
|
|
|
ClearAudioSend();
|
2015-11-25 11:26:01 -08:00
|
|
|
if (stats_) {
|
|
|
|
|
stats_->RemoveLocalAudioTrack(track_.get(), ssrc_);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ssrc_ = ssrc;
|
|
|
|
|
if (can_send_track()) {
|
|
|
|
|
SetAudioSend();
|
|
|
|
|
if (stats_) {
|
|
|
|
|
stats_->AddLocalAudioTrack(track_.get(), ssrc_);
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-11-20 09:49:59 -08:00
|
|
|
}
|
|
|
|
|
|
2015-11-25 11:26:01 -08:00
|
|
|
void AudioRtpSender::Stop() {
|
2016-04-11 11:45:14 +02:00
|
|
|
TRACE_EVENT0("webrtc", "AudioRtpSender::Stop");
|
2015-11-25 11:26:01 -08:00
|
|
|
// TODO(deadbeef): Need to do more here to fully stop sending packets.
|
|
|
|
|
if (stopped_) {
|
2015-11-20 11:43:22 -08:00
|
|
|
return;
|
|
|
|
|
}
|
2015-11-25 11:26:01 -08:00
|
|
|
if (track_) {
|
|
|
|
|
track_->RemoveSink(sink_adapter_.get());
|
|
|
|
|
track_->UnregisterObserver(this);
|
|
|
|
|
}
|
|
|
|
|
if (can_send_track()) {
|
2016-06-27 16:30:35 -07:00
|
|
|
ClearAudioSend();
|
2015-11-25 11:26:01 -08:00
|
|
|
if (stats_) {
|
|
|
|
|
stats_->RemoveLocalAudioTrack(track_.get(), ssrc_);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-03-19 19:05:06 +01:00
|
|
|
media_channel_ = nullptr;
|
2015-11-25 11:26:01 -08:00
|
|
|
stopped_ = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AudioRtpSender::SetAudioSend() {
|
2017-08-09 17:22:01 -07:00
|
|
|
RTC_DCHECK(!stopped_);
|
|
|
|
|
RTC_DCHECK(can_send_track());
|
2018-01-12 10:49:35 -08:00
|
|
|
if (!media_channel_) {
|
2017-11-09 11:09:25 +01:00
|
|
|
RTC_LOG(LS_ERROR) << "SetAudioSend: No audio channel exists.";
|
2016-06-27 16:30:35 -07:00
|
|
|
return;
|
|
|
|
|
}
|
2015-09-28 16:53:55 -07:00
|
|
|
cricket::AudioOptions options;
|
2017-02-03 06:37:05 -08:00
|
|
|
#if !defined(WEBRTC_CHROMIUM_BUILD) && !defined(WEBRTC_WEBKIT_BUILD)
|
2016-01-21 16:12:17 +01:00
|
|
|
// TODO(tommi): Remove this hack when we move CreateAudioSource out of
|
|
|
|
|
// PeerConnection. This is a bit of a strange way to apply local audio
|
|
|
|
|
// options since it is also applied to all streams/channels, local or remote.
|
2015-12-15 04:27:11 -08:00
|
|
|
if (track_->enabled() && track_->GetSource() &&
|
|
|
|
|
!track_->GetSource()->remote()) {
|
2015-09-28 16:53:55 -07:00
|
|
|
// TODO(xians): Remove this static_cast since we should be able to connect
|
2015-11-25 11:26:01 -08:00
|
|
|
// a remote audio track to a peer connection.
|
2015-09-28 16:53:55 -07:00
|
|
|
options = static_cast<LocalAudioSource*>(track_->GetSource())->options();
|
|
|
|
|
}
|
2016-01-21 16:12:17 +01:00
|
|
|
#endif
|
2015-09-28 16:53:55 -07:00
|
|
|
|
2018-01-12 10:49:35 -08:00
|
|
|
// |track_->enabled()| hops to the signaling thread, so call it before we hop
|
|
|
|
|
// to the worker thread or else it will deadlock.
|
|
|
|
|
bool track_enabled = track_->enabled();
|
|
|
|
|
bool success = worker_thread_->Invoke<bool>(RTC_FROM_HERE, [&] {
|
|
|
|
|
return media_channel_->SetAudioSend(ssrc_, track_enabled, &options,
|
|
|
|
|
sink_adapter_.get());
|
|
|
|
|
});
|
|
|
|
|
if (!success) {
|
2017-11-09 11:09:25 +01:00
|
|
|
RTC_LOG(LS_ERROR) << "SetAudioSend: ssrc is incorrect: " << ssrc_;
|
2016-06-27 16:30:35 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void AudioRtpSender::ClearAudioSend() {
|
|
|
|
|
RTC_DCHECK(ssrc_ != 0);
|
|
|
|
|
RTC_DCHECK(!stopped_);
|
2018-01-12 10:49:35 -08:00
|
|
|
if (!media_channel_) {
|
2017-11-09 11:09:25 +01:00
|
|
|
RTC_LOG(LS_WARNING) << "ClearAudioSend: No audio channel exists.";
|
2016-06-27 16:30:35 -07:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
cricket::AudioOptions options;
|
2018-01-12 10:49:35 -08:00
|
|
|
bool success = worker_thread_->Invoke<bool>(RTC_FROM_HERE, [&] {
|
|
|
|
|
return media_channel_->SetAudioSend(ssrc_, false, &options, nullptr);
|
|
|
|
|
});
|
|
|
|
|
if (!success) {
|
2017-11-09 11:09:25 +01:00
|
|
|
RTC_LOG(LS_WARNING) << "ClearAudioSend: ssrc is incorrect: " << ssrc_;
|
2016-06-27 16:30:35 -07:00
|
|
|
}
|
2015-09-28 16:53:55 -07:00
|
|
|
}
|
|
|
|
|
|
2018-01-12 10:49:35 -08:00
|
|
|
VideoRtpSender::VideoRtpSender(rtc::Thread* worker_thread,
|
2018-06-25 13:03:36 -07:00
|
|
|
const std::string& id)
|
|
|
|
|
: worker_thread_(worker_thread), id_(id) {
|
2018-01-12 10:49:35 -08:00
|
|
|
RTC_DCHECK(worker_thread);
|
2016-01-14 15:35:42 -08:00
|
|
|
}
|
|
|
|
|
|
2015-09-28 16:53:55 -07:00
|
|
|
VideoRtpSender::~VideoRtpSender() {
|
|
|
|
|
Stop();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void VideoRtpSender::OnChanged() {
|
2016-04-11 11:45:14 +02:00
|
|
|
TRACE_EVENT0("webrtc", "VideoRtpSender::OnChanged");
|
2015-11-25 11:26:01 -08:00
|
|
|
RTC_DCHECK(!stopped_);
|
2018-04-09 08:49:14 +02:00
|
|
|
if (cached_track_content_hint_ != track_->content_hint()) {
|
2016-12-16 15:39:11 -08:00
|
|
|
cached_track_content_hint_ = track_->content_hint();
|
2015-11-25 11:26:01 -08:00
|
|
|
if (can_send_track()) {
|
|
|
|
|
SetVideoSend();
|
|
|
|
|
}
|
2015-09-28 16:53:55 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool VideoRtpSender::SetTrack(MediaStreamTrackInterface* track) {
|
2016-04-11 11:45:14 +02:00
|
|
|
TRACE_EVENT0("webrtc", "VideoRtpSender::SetTrack");
|
2015-11-25 11:26:01 -08:00
|
|
|
if (stopped_) {
|
2017-11-09 11:09:25 +01:00
|
|
|
RTC_LOG(LS_ERROR) << "SetTrack can't be called on a stopped RtpSender.";
|
2015-11-25 11:26:01 -08:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (track && track->kind() != MediaStreamTrackInterface::kVideoKind) {
|
2017-11-09 11:09:25 +01:00
|
|
|
RTC_LOG(LS_ERROR) << "SetTrack called on video RtpSender with "
|
|
|
|
|
<< track->kind() << " track.";
|
2015-09-28 16:53:55 -07:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
VideoTrackInterface* video_track = static_cast<VideoTrackInterface*>(track);
|
|
|
|
|
|
|
|
|
|
// Detach from old track.
|
2015-11-25 11:26:01 -08:00
|
|
|
if (track_) {
|
|
|
|
|
track_->UnregisterObserver(this);
|
|
|
|
|
}
|
2015-09-28 16:53:55 -07:00
|
|
|
|
|
|
|
|
// Attach to new track.
|
2015-11-25 11:26:01 -08:00
|
|
|
bool prev_can_send_track = can_send_track();
|
2016-05-02 16:20:01 -07:00
|
|
|
// Keep a reference to the old track to keep it alive until we call
|
2016-06-02 16:23:38 -07:00
|
|
|
// SetVideoSend.
|
2016-05-02 16:20:01 -07:00
|
|
|
rtc::scoped_refptr<VideoTrackInterface> old_track = track_;
|
2015-09-28 16:53:55 -07:00
|
|
|
track_ = video_track;
|
2015-11-25 11:26:01 -08:00
|
|
|
if (track_) {
|
2016-12-16 15:39:11 -08:00
|
|
|
cached_track_content_hint_ = track_->content_hint();
|
2015-11-25 11:26:01 -08:00
|
|
|
track_->RegisterObserver(this);
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-27 16:30:35 -07:00
|
|
|
// Update video channel.
|
2015-11-25 11:26:01 -08:00
|
|
|
if (can_send_track()) {
|
|
|
|
|
SetVideoSend();
|
|
|
|
|
} else if (prev_can_send_track) {
|
2016-06-02 16:23:38 -07:00
|
|
|
ClearVideoSend();
|
2015-11-25 11:26:01 -08:00
|
|
|
}
|
2018-06-25 13:03:36 -07:00
|
|
|
attachment_id_ = (track_ ? GenerateUniqueId() : 0);
|
2015-09-28 16:53:55 -07:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-03 15:31:53 +02:00
|
|
|
RtpParameters VideoRtpSender::GetParameters() {
|
2018-01-12 10:49:35 -08:00
|
|
|
if (!media_channel_ || stopped_) {
|
2016-06-27 16:30:35 -07:00
|
|
|
return RtpParameters();
|
|
|
|
|
}
|
2018-01-12 10:49:35 -08:00
|
|
|
return worker_thread_->Invoke<RtpParameters>(RTC_FROM_HERE, [&] {
|
2018-05-03 15:31:53 +02:00
|
|
|
RtpParameters result = media_channel_->GetRtpSendParameters(ssrc_);
|
|
|
|
|
last_transaction_id_ = rtc::CreateRandomUuid();
|
|
|
|
|
result.transaction_id = last_transaction_id_.value();
|
|
|
|
|
return result;
|
2018-01-12 10:49:35 -08:00
|
|
|
});
|
2016-06-06 14:27:39 -07:00
|
|
|
}
|
|
|
|
|
|
2018-01-23 15:02:36 -08:00
|
|
|
RTCError VideoRtpSender::SetParameters(const RtpParameters& parameters) {
|
2016-06-06 14:27:39 -07:00
|
|
|
TRACE_EVENT0("webrtc", "VideoRtpSender::SetParameters");
|
2018-01-12 10:49:35 -08:00
|
|
|
if (!media_channel_ || stopped_) {
|
2018-01-23 15:02:36 -08:00
|
|
|
return RTCError(RTCErrorType::INVALID_STATE);
|
2016-06-27 16:30:35 -07:00
|
|
|
}
|
2018-05-03 15:31:53 +02:00
|
|
|
if (!last_transaction_id_) {
|
|
|
|
|
LOG_AND_RETURN_ERROR(
|
|
|
|
|
RTCErrorType::INVALID_STATE,
|
|
|
|
|
"Failed to set parameters since getParameters() has never been called"
|
|
|
|
|
" on this sender");
|
|
|
|
|
}
|
|
|
|
|
if (last_transaction_id_ != parameters.transaction_id) {
|
|
|
|
|
LOG_AND_RETURN_ERROR(
|
|
|
|
|
RTCErrorType::INVALID_MODIFICATION,
|
|
|
|
|
"Failed to set parameters since the transaction_id doesn't match"
|
|
|
|
|
" the last value returned from getParameters()");
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-16 16:02:32 -07:00
|
|
|
if (UnimplementedRtpParameterHasValue(parameters)) {
|
|
|
|
|
LOG_AND_RETURN_ERROR(
|
|
|
|
|
RTCErrorType::UNSUPPORTED_PARAMETER,
|
|
|
|
|
"Attempted to set an unimplemented parameter of RtpParameters.");
|
|
|
|
|
}
|
2018-01-23 15:02:36 -08:00
|
|
|
return worker_thread_->Invoke<RTCError>(RTC_FROM_HERE, [&] {
|
2018-05-03 15:31:53 +02:00
|
|
|
RTCError result = media_channel_->SetRtpSendParameters(ssrc_, parameters);
|
|
|
|
|
last_transaction_id_.reset();
|
|
|
|
|
return result;
|
2018-01-12 10:49:35 -08:00
|
|
|
});
|
2016-06-06 14:27:39 -07:00
|
|
|
}
|
|
|
|
|
|
2017-02-01 20:27:00 -08:00
|
|
|
rtc::scoped_refptr<DtmfSenderInterface> VideoRtpSender::GetDtmfSender() const {
|
2017-11-09 11:09:25 +01:00
|
|
|
RTC_LOG(LS_ERROR) << "Tried to get DTMF sender from video sender.";
|
2017-02-01 20:27:00 -08:00
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-29 17:02:10 -07:00
|
|
|
void VideoRtpSender::SetFrameEncryptor(
|
|
|
|
|
rtc::scoped_refptr<FrameEncryptorInterface> frame_encryptor) {
|
|
|
|
|
frame_encryptor_ = std::move(frame_encryptor);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
rtc::scoped_refptr<FrameEncryptorInterface> VideoRtpSender::GetFrameEncryptor()
|
|
|
|
|
const {
|
|
|
|
|
return frame_encryptor_;
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-25 11:26:01 -08:00
|
|
|
void VideoRtpSender::SetSsrc(uint32_t ssrc) {
|
2016-04-11 11:45:14 +02:00
|
|
|
TRACE_EVENT0("webrtc", "VideoRtpSender::SetSsrc");
|
2015-11-25 11:26:01 -08:00
|
|
|
if (stopped_ || ssrc == ssrc_) {
|
2015-10-26 14:11:17 -07:00
|
|
|
return;
|
|
|
|
|
}
|
2015-11-25 11:26:01 -08:00
|
|
|
// If we are already sending with a particular SSRC, stop sending.
|
|
|
|
|
if (can_send_track()) {
|
2016-06-02 16:23:38 -07:00
|
|
|
ClearVideoSend();
|
2015-11-25 11:26:01 -08:00
|
|
|
}
|
|
|
|
|
ssrc_ = ssrc;
|
|
|
|
|
if (can_send_track()) {
|
|
|
|
|
SetVideoSend();
|
|
|
|
|
}
|
2015-11-20 09:49:59 -08:00
|
|
|
}
|
|
|
|
|
|
2015-11-25 11:26:01 -08:00
|
|
|
void VideoRtpSender::Stop() {
|
2016-04-11 11:45:14 +02:00
|
|
|
TRACE_EVENT0("webrtc", "VideoRtpSender::Stop");
|
2015-11-25 11:26:01 -08:00
|
|
|
// TODO(deadbeef): Need to do more here to fully stop sending packets.
|
|
|
|
|
if (stopped_) {
|
2015-11-20 11:43:22 -08:00
|
|
|
return;
|
|
|
|
|
}
|
2015-11-25 11:26:01 -08:00
|
|
|
if (track_) {
|
|
|
|
|
track_->UnregisterObserver(this);
|
|
|
|
|
}
|
|
|
|
|
if (can_send_track()) {
|
2016-06-02 16:23:38 -07:00
|
|
|
ClearVideoSend();
|
2015-11-25 11:26:01 -08:00
|
|
|
}
|
2018-03-19 19:05:06 +01:00
|
|
|
media_channel_ = nullptr;
|
2015-11-25 11:26:01 -08:00
|
|
|
stopped_ = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void VideoRtpSender::SetVideoSend() {
|
2017-08-09 17:22:01 -07:00
|
|
|
RTC_DCHECK(!stopped_);
|
|
|
|
|
RTC_DCHECK(can_send_track());
|
2018-01-12 10:49:35 -08:00
|
|
|
if (!media_channel_) {
|
2017-11-09 11:09:25 +01:00
|
|
|
RTC_LOG(LS_ERROR) << "SetVideoSend: No video channel exists.";
|
2016-06-27 16:30:35 -07:00
|
|
|
return;
|
|
|
|
|
}
|
2016-03-09 02:39:17 +01:00
|
|
|
cricket::VideoOptions options;
|
2016-03-08 01:27:48 +01:00
|
|
|
VideoTrackSourceInterface* source = track_->GetSource();
|
2016-03-09 02:39:17 +01:00
|
|
|
if (source) {
|
2017-11-16 10:54:27 +01:00
|
|
|
options.is_screencast = source->is_screencast();
|
2016-03-31 17:23:39 +02:00
|
|
|
options.video_noise_reduction = source->needs_denoising();
|
2015-09-28 16:53:55 -07:00
|
|
|
}
|
2016-12-16 15:39:11 -08:00
|
|
|
switch (cached_track_content_hint_) {
|
|
|
|
|
case VideoTrackInterface::ContentHint::kNone:
|
|
|
|
|
break;
|
|
|
|
|
case VideoTrackInterface::ContentHint::kFluid:
|
2017-11-16 10:54:27 +01:00
|
|
|
options.is_screencast = false;
|
2016-12-16 15:39:11 -08:00
|
|
|
break;
|
|
|
|
|
case VideoTrackInterface::ContentHint::kDetailed:
|
2018-06-18 08:53:10 +02:00
|
|
|
case VideoTrackInterface::ContentHint::kText:
|
2017-11-16 10:54:27 +01:00
|
|
|
options.is_screencast = true;
|
2016-12-16 15:39:11 -08:00
|
|
|
break;
|
|
|
|
|
}
|
2018-01-12 10:49:35 -08:00
|
|
|
bool success = worker_thread_->Invoke<bool>(RTC_FROM_HERE, [&] {
|
2018-04-09 08:49:14 +02:00
|
|
|
return media_channel_->SetVideoSend(ssrc_, &options, track_);
|
2018-01-12 10:49:35 -08:00
|
|
|
});
|
|
|
|
|
RTC_DCHECK(success);
|
2016-06-02 16:23:38 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void VideoRtpSender::ClearVideoSend() {
|
|
|
|
|
RTC_DCHECK(ssrc_ != 0);
|
2016-06-27 16:30:35 -07:00
|
|
|
RTC_DCHECK(!stopped_);
|
2018-01-12 10:49:35 -08:00
|
|
|
if (!media_channel_) {
|
2017-11-09 11:09:25 +01:00
|
|
|
RTC_LOG(LS_WARNING) << "SetVideoSend: No video channel exists.";
|
2016-06-27 16:30:35 -07:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// Allow SetVideoSend to fail since |enable| is false and |source| is null.
|
|
|
|
|
// This the normal case when the underlying media channel has already been
|
|
|
|
|
// deleted.
|
2018-01-12 10:49:35 -08:00
|
|
|
worker_thread_->Invoke<bool>(RTC_FROM_HERE, [&] {
|
2018-04-09 08:49:14 +02:00
|
|
|
return media_channel_->SetVideoSend(ssrc_, nullptr, nullptr);
|
2018-01-12 10:49:35 -08:00
|
|
|
});
|
2015-09-28 16:53:55 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace webrtc
|