Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(720)

Unified Diff: webrtc/call/call.cc

Issue 2867943003: New class RtpDemuxer and RtpPacketSinkInterface, use in Call. (Closed)
Patch Set: Fix Flexfec recursion issue in a different way. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/call/call.cc
diff --git a/webrtc/call/call.cc b/webrtc/call/call.cc
index d178406b2972307b3d77998ebaa303b31c1aef35..802778eb4d6eda4cf55c642fb6f35aaa85074de5 100644
--- a/webrtc/call/call.cc
+++ b/webrtc/call/call.cc
@@ -34,6 +34,7 @@
#include "webrtc/call/bitrate_allocator.h"
#include "webrtc/call/call.h"
#include "webrtc/call/flexfec_receive_stream_impl.h"
+#include "webrtc/call/rtp_demuxer.h"
#include "webrtc/call/rtp_transport_controller_send.h"
#include "webrtc/config.h"
#include "webrtc/logging/rtc_event_log/rtc_event_log.h"
@@ -204,23 +205,19 @@ class Call : public webrtc::Call,
std::unique_ptr<RWLockWrapper> receive_crit_;
// Audio, Video, and FlexFEC receive streams are owned by the client that
// creates them.
- std::map<uint32_t, AudioReceiveStream*> audio_receive_ssrcs_
- GUARDED_BY(receive_crit_);
- std::map<uint32_t, VideoReceiveStream*> video_receive_ssrcs_
+ std::set<AudioReceiveStream*> audio_receive_streams_
GUARDED_BY(receive_crit_);
std::set<VideoReceiveStream*> video_receive_streams_
GUARDED_BY(receive_crit_);
- // Each media stream could conceivably be protected by multiple FlexFEC
- // streams.
- std::multimap<uint32_t, FlexfecReceiveStreamImpl*>
- flexfec_receive_ssrcs_media_ GUARDED_BY(receive_crit_);
- std::map<uint32_t, FlexfecReceiveStreamImpl*>
- flexfec_receive_ssrcs_protection_ GUARDED_BY(receive_crit_);
- std::set<FlexfecReceiveStreamImpl*> flexfec_receive_streams_
- GUARDED_BY(receive_crit_);
+
std::map<std::string, AudioReceiveStream*> sync_stream_mapping_
GUARDED_BY(receive_crit_);
+ // TODO(nisse): Should eventually be part of injected
+ // RtpTransportControllerReceive, with a single demuxer in the bundled case.
+ RtpDemuxer audio_rtp_demuxer_ GUARDED_BY(receive_crit_);
+ RtpDemuxer video_rtp_demuxer_ GUARDED_BY(receive_crit_);
+
// This extra map is used for receive processing which is
// independent of media type.
@@ -377,8 +374,7 @@ Call::~Call() {
RTC_CHECK(audio_send_ssrcs_.empty());
RTC_CHECK(video_send_ssrcs_.empty());
RTC_CHECK(video_send_streams_.empty());
- RTC_CHECK(audio_receive_ssrcs_.empty());
- RTC_CHECK(video_receive_ssrcs_.empty());
+ RTC_CHECK(audio_receive_streams_.empty());
RTC_CHECK(video_receive_streams_.empty());
pacer_thread_->Stop();
@@ -520,9 +516,9 @@ webrtc::AudioSendStream* Call::CreateAudioSendStream(
}
{
ReadLockScoped read_lock(*receive_crit_);
- for (const auto& kv : audio_receive_ssrcs_) {
- if (kv.second->config().rtp.local_ssrc == config.rtp.ssrc) {
- kv.second->AssociateSendStream(send_stream);
+ for (AudioReceiveStream* stream : audio_receive_streams_) {
+ if (stream->config().rtp.local_ssrc == config.rtp.ssrc) {
+ stream->AssociateSendStream(send_stream);
}
}
}
@@ -548,9 +544,9 @@ void Call::DestroyAudioSendStream(webrtc::AudioSendStream* send_stream) {
}
{
ReadLockScoped read_lock(*receive_crit_);
- for (const auto& kv : audio_receive_ssrcs_) {
- if (kv.second->config().rtp.local_ssrc == ssrc) {
- kv.second->AssociateSendStream(nullptr);
+ for (AudioReceiveStream* stream : audio_receive_streams_) {
+ if (stream->config().rtp.local_ssrc == ssrc) {
+ stream->AssociateSendStream(nullptr);
}
}
}
@@ -568,11 +564,10 @@ webrtc::AudioReceiveStream* Call::CreateAudioReceiveStream(
config_.audio_state, event_log_);
{
WriteLockScoped write_lock(*receive_crit_);
- RTC_DCHECK(audio_receive_ssrcs_.find(config.rtp.remote_ssrc) ==
- audio_receive_ssrcs_.end());
- audio_receive_ssrcs_[config.rtp.remote_ssrc] = receive_stream;
+ audio_rtp_demuxer_.AddSink(config.rtp.remote_ssrc, receive_stream);
receive_rtp_config_[config.rtp.remote_ssrc] =
ReceiveRtpConfig(config.rtp.extensions, UseSendSideBwe(config));
+ audio_receive_streams_.insert(receive_stream);
ConfigureSync(config.sync_group);
}
@@ -601,8 +596,9 @@ void Call::DestroyAudioReceiveStream(
uint32_t ssrc = config.rtp.remote_ssrc;
receive_side_cc_.GetRemoteBitrateEstimator(UseSendSideBwe(config))
->RemoveStream(ssrc);
- size_t num_deleted = audio_receive_ssrcs_.erase(ssrc);
+ size_t num_deleted = audio_rtp_demuxer_.RemoveSink(audio_receive_stream);
RTC_DCHECK(num_deleted == 1);
+ audio_receive_streams_.erase(audio_receive_stream);
const std::string& sync_group = audio_receive_stream->config().sync_group;
const auto it = sync_stream_mapping_.find(sync_group);
if (it != sync_stream_mapping_.end() &&
@@ -699,11 +695,9 @@ webrtc::VideoReceiveStream* Call::CreateVideoReceiveStream(
UseSendSideBwe(config));
{
WriteLockScoped write_lock(*receive_crit_);
- RTC_DCHECK(video_receive_ssrcs_.find(config.rtp.remote_ssrc) ==
- video_receive_ssrcs_.end());
- video_receive_ssrcs_[config.rtp.remote_ssrc] = receive_stream;
+ video_rtp_demuxer_.AddSink(config.rtp.remote_ssrc, receive_stream);
if (config.rtp.rtx_ssrc) {
- video_receive_ssrcs_[config.rtp.rtx_ssrc] = receive_stream;
+ video_rtp_demuxer_.AddSink(config.rtp.rtx_ssrc, receive_stream);
// We record identical config for the rtx stream as for the main
// stream. Since the transport_send_cc negotiation is per payload
// type, we may get an incorrect value for the rtx stream, but
@@ -725,28 +719,22 @@ void Call::DestroyVideoReceiveStream(
TRACE_EVENT0("webrtc", "Call::DestroyVideoReceiveStream");
RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
RTC_DCHECK(receive_stream != nullptr);
- VideoReceiveStream* receive_stream_impl = nullptr;
+ VideoReceiveStream* receive_stream_impl =
+ static_cast<VideoReceiveStream*>(receive_stream);
+ const VideoReceiveStream::Config& config = receive_stream_impl->config();
{
WriteLockScoped write_lock(*receive_crit_);
// Remove all ssrcs pointing to a receive stream. As RTX retransmits on a
// separate SSRC there can be either one or two.
- auto it = video_receive_ssrcs_.begin();
- while (it != video_receive_ssrcs_.end()) {
- if (it->second == static_cast<VideoReceiveStream*>(receive_stream)) {
- if (receive_stream_impl != nullptr)
- RTC_DCHECK(receive_stream_impl == it->second);
- receive_stream_impl = it->second;
- receive_rtp_config_.erase(it->first);
- it = video_receive_ssrcs_.erase(it);
- } else {
- ++it;
- }
+ size_t num_deleted = video_rtp_demuxer_.RemoveSink(receive_stream_impl);
+ RTC_DCHECK_GE(num_deleted, 1);
+ receive_rtp_config_.erase(config.rtp.remote_ssrc);
+ if (config.rtp.rtx_ssrc) {
+ receive_rtp_config_.erase(config.rtp.rtx_ssrc);
}
video_receive_streams_.erase(receive_stream_impl);
- RTC_CHECK(receive_stream_impl != nullptr);
- ConfigureSync(receive_stream_impl->config().sync_group);
+ ConfigureSync(config.sync_group);
}
- const VideoReceiveStream::Config& config = receive_stream_impl->config();
receive_side_cc_.GetRemoteBitrateEstimator(UseSendSideBwe(config))
->RemoveStream(config.rtp.remote_ssrc);
@@ -767,17 +755,10 @@ FlexfecReceiveStream* Call::CreateFlexfecReceiveStream(
{
WriteLockScoped write_lock(*receive_crit_);
-
- RTC_DCHECK(flexfec_receive_streams_.find(receive_stream) ==
- flexfec_receive_streams_.end());
- flexfec_receive_streams_.insert(receive_stream);
+ video_rtp_demuxer_.AddSink(config.remote_ssrc, receive_stream);
for (auto ssrc : config.protected_media_ssrcs)
- flexfec_receive_ssrcs_media_.insert(std::make_pair(ssrc, receive_stream));
-
- RTC_DCHECK(flexfec_receive_ssrcs_protection_.find(config.remote_ssrc) ==
- flexfec_receive_ssrcs_protection_.end());
- flexfec_receive_ssrcs_protection_[config.remote_ssrc] = receive_stream;
+ video_rtp_demuxer_.AddSink(ssrc, receive_stream);
RTC_DCHECK(receive_rtp_config_.find(config.remote_ssrc) ==
receive_rtp_config_.end());
@@ -809,25 +790,9 @@ void Call::DestroyFlexfecReceiveStream(FlexfecReceiveStream* receive_stream) {
// Remove all SSRCs pointing to the FlexfecReceiveStreamImpl to be
// destroyed.
- auto prot_it = flexfec_receive_ssrcs_protection_.begin();
- while (prot_it != flexfec_receive_ssrcs_protection_.end()) {
- if (prot_it->second == receive_stream_impl)
- prot_it = flexfec_receive_ssrcs_protection_.erase(prot_it);
- else
- ++prot_it;
- }
- auto media_it = flexfec_receive_ssrcs_media_.begin();
- while (media_it != flexfec_receive_ssrcs_media_.end()) {
- if (media_it->second == receive_stream_impl)
- media_it = flexfec_receive_ssrcs_media_.erase(media_it);
- else
- ++media_it;
- }
-
+ video_rtp_demuxer_.RemoveSink(receive_stream_impl);
receive_side_cc_.GetRemoteBitrateEstimator(UseSendSideBwe(config))
->RemoveStream(ssrc);
-
- flexfec_receive_streams_.erase(receive_stream_impl);
}
delete receive_stream_impl;
@@ -914,11 +879,11 @@ void Call::SignalChannelNetworkState(MediaType media, NetworkState state) {
}
{
ReadLockScoped read_lock(*receive_crit_);
- for (auto& kv : audio_receive_ssrcs_) {
- kv.second->SignalNetworkState(audio_network_state_);
+ for (AudioReceiveStream* audio_receive_stream : audio_receive_streams_) {
+ audio_receive_stream->SignalNetworkState(audio_network_state_);
}
- for (auto& kv : video_receive_ssrcs_) {
- kv.second->SignalNetworkState(video_network_state_);
+ for (VideoReceiveStream* video_receive_stream : video_receive_streams_) {
+ video_receive_stream->SignalNetworkState(video_network_state_);
}
}
}
@@ -1000,9 +965,9 @@ void Call::UpdateAggregateNetworkState() {
}
{
ReadLockScoped read_lock(*receive_crit_);
- if (audio_receive_ssrcs_.size() > 0)
+ if (audio_receive_streams_.size() > 0)
have_audio = true;
- if (video_receive_ssrcs_.size() > 0)
+ if (video_receive_streams_.size() > 0)
have_video = true;
}
@@ -1093,15 +1058,15 @@ void Call::ConfigureSync(const std::string& sync_group) {
sync_audio_stream = it->second;
} else {
// No configured audio stream, see if we can find one.
- for (const auto& kv : audio_receive_ssrcs_) {
- if (kv.second->config().sync_group == sync_group) {
+ for (AudioReceiveStream* stream : audio_receive_streams_) {
+ if (stream->config().sync_group == sync_group) {
if (sync_audio_stream != nullptr) {
LOG(LS_WARNING) << "Attempting to sync more than one audio stream "
"within the same sync group. This is not "
"supported in the current implementation.";
break;
}
- sync_audio_stream = kv.second;
+ sync_audio_stream = stream;
}
}
}
@@ -1151,8 +1116,8 @@ PacketReceiver::DeliveryStatus Call::DeliverRtcp(MediaType media_type,
}
if (media_type == MediaType::ANY || media_type == MediaType::AUDIO) {
ReadLockScoped read_lock(*receive_crit_);
- for (auto& kv : audio_receive_ssrcs_) {
- if (kv.second->DeliverRtcp(packet, length))
+ for (AudioReceiveStream* stream : audio_receive_streams_) {
+ if (stream->DeliverRtcp(packet, length))
rtcp_delivered = true;
}
}
@@ -1196,41 +1161,17 @@ PacketReceiver::DeliveryStatus Call::DeliverRtp(MediaType media_type,
NotifyBweOfReceivedPacket(*parsed_packet, media_type);
- uint32_t ssrc = parsed_packet->Ssrc();
-
if (media_type == MediaType::AUDIO) {
- auto it = audio_receive_ssrcs_.find(ssrc);
- if (it != audio_receive_ssrcs_.end()) {
+ if (audio_rtp_demuxer_.OnRtpPacket(*parsed_packet)) {
received_bytes_per_second_counter_.Add(static_cast<int>(length));
received_audio_bytes_per_second_counter_.Add(static_cast<int>(length));
- it->second->OnRtpPacket(*parsed_packet);
event_log_->LogRtpHeader(kIncomingPacket, media_type, packet, length);
return DELIVERY_OK;
}
- }
- if (media_type == MediaType::VIDEO) {
- auto it = video_receive_ssrcs_.find(ssrc);
- if (it != video_receive_ssrcs_.end()) {
+ } else if (media_type == MediaType::VIDEO) {
+ if (video_rtp_demuxer_.OnRtpPacket(*parsed_packet)) {
received_bytes_per_second_counter_.Add(static_cast<int>(length));
received_video_bytes_per_second_counter_.Add(static_cast<int>(length));
- it->second->OnRtpPacket(*parsed_packet);
-
- // Deliver media packets to FlexFEC subsystem.
- auto it_bounds = flexfec_receive_ssrcs_media_.equal_range(ssrc);
- for (auto it = it_bounds.first; it != it_bounds.second; ++it)
- it->second->OnRtpPacket(*parsed_packet);
-
- event_log_->LogRtpHeader(kIncomingPacket, media_type, packet, length);
- return DELIVERY_OK;
- }
- }
- if (media_type == MediaType::VIDEO) {
- received_bytes_per_second_counter_.Add(static_cast<int>(length));
- // TODO(brandtr): Update here when FlexFEC supports protecting audio.
- received_video_bytes_per_second_counter_.Add(static_cast<int>(length));
- auto it = flexfec_receive_ssrcs_protection_.find(ssrc);
- if (it != flexfec_receive_ssrcs_protection_.end()) {
- it->second->OnRtpPacket(*parsed_packet);
event_log_->LogRtpHeader(kIncomingPacket, media_type, packet, length);
return DELIVERY_OK;
}
@@ -1264,11 +1205,7 @@ void Call::OnRecoveredPacket(const uint8_t* packet, size_t length) {
parsed_packet->set_recovered(true);
- auto it = video_receive_ssrcs_.find(parsed_packet->Ssrc());
- if (it == video_receive_ssrcs_.end())
- return;
-
- it->second->OnRtpPacket(*parsed_packet);
+ video_rtp_demuxer_.OnRtpPacket(*parsed_packet);
}
void Call::NotifyBweOfReceivedPacket(const RtpPacketReceived& packet,

Powered by Google App Engine
This is Rietveld 408576698