blob: b1424531d6060a11d4812b20b74950e681b781b1 [file] [log] [blame]
pbos@webrtc.org29d58392013-05-16 12:08:031/*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 *
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.
9 */
10
pbos@webrtc.org12dc1a32013-08-05 16:22:5311#include <string.h>
12
pbos@webrtc.org29d58392013-05-16 12:08:0313#include <map>
14#include <vector>
15
Peter Boström5c389d32015-09-25 11:58:3016#include "webrtc/audio/audio_receive_stream.h"
solenbergc7a8b082015-10-16 21:35:0717#include "webrtc/audio/audio_send_stream.h"
pbos@webrtc.org2b4ce3a2015-03-23 13:12:2418#include "webrtc/base/checks.h"
kwiberg@webrtc.org00b8f6b2015-02-26 14:34:5519#include "webrtc/base/scoped_ptr.h"
pbos@webrtc.org38344ed2014-09-24 06:05:0020#include "webrtc/base/thread_annotations.h"
solenberg5a289392015-10-19 10:39:2021#include "webrtc/base/thread_checker.h"
tommie4f96502015-10-21 06:00:4822#include "webrtc/base/trace_event.h"
pbos@webrtc.org16e03b72013-10-28 16:32:0123#include "webrtc/call.h"
mflodman0c478b32015-10-21 13:52:1624#include "webrtc/call/congestion_controller.h"
Peter Boström5c389d32015-09-25 11:58:3025#include "webrtc/call/rtc_event_log.h"
stefan@webrtc.org7e9315b2013-12-04 10:24:2626#include "webrtc/common.h"
pbos@webrtc.orgc49d5b72013-12-05 12:11:4727#include "webrtc/config.h"
pbos@webrtc.org16e03b72013-10-28 16:32:0128#include "webrtc/modules/rtp_rtcp/interface/rtp_header_parser.h"
sprang@webrtc.org2a6558c2015-01-28 12:37:3629#include "webrtc/modules/rtp_rtcp/source/byte_io.h"
Peter Boström45553ae2015-05-08 11:54:3830#include "webrtc/modules/utility/interface/process_thread.h"
Peter Boström45553ae2015-05-08 11:54:3831#include "webrtc/system_wrappers/interface/cpu_info.h"
pbos@webrtc.orgde74b642013-10-02 13:36:0932#include "webrtc/system_wrappers/interface/critical_section_wrapper.h"
pbos@webrtc.org32e85282015-01-15 10:09:3933#include "webrtc/system_wrappers/interface/logging.h"
pbos@webrtc.org16e03b72013-10-28 16:32:0134#include "webrtc/system_wrappers/interface/rw_lock_wrapper.h"
pbos@webrtc.orgde74b642013-10-02 13:36:0935#include "webrtc/system_wrappers/interface/trace.h"
pbos@webrtc.org16e03b72013-10-28 16:32:0136#include "webrtc/video/video_receive_stream.h"
37#include "webrtc/video/video_send_stream.h"
mflodmane3787022015-10-21 11:24:2838#include "webrtc/video_engine/call_stats.h"
ivocb04965c2015-09-09 07:09:4339#include "webrtc/voice_engine/include/voe_codec.h"
pbos@webrtc.org29d58392013-05-16 12:08:0340
41namespace webrtc {
pbos@webrtc.orgab990ae2014-09-17 09:02:2542
pbos@webrtc.orga73a6782014-10-14 11:52:1043const int Call::Config::kDefaultStartBitrateBps = 300000;
44
pbos@webrtc.org16e03b72013-10-28 16:32:0145namespace internal {
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:0746
pbos@webrtc.org16e03b72013-10-28 16:32:0147class Call : public webrtc::Call, public PacketReceiver {
48 public:
Peter Boström45553ae2015-05-08 11:54:3849 explicit Call(const Call::Config& config);
pbos@webrtc.org16e03b72013-10-28 16:32:0150 virtual ~Call();
51
kjellander@webrtc.org14665ff2015-03-04 12:58:3552 PacketReceiver* Receiver() override;
pbos@webrtc.org16e03b72013-10-28 16:32:0153
Fredrik Solenberg04f49312015-06-08 11:04:5654 webrtc::AudioSendStream* CreateAudioSendStream(
55 const webrtc::AudioSendStream::Config& config) override;
56 void DestroyAudioSendStream(webrtc::AudioSendStream* send_stream) override;
57
Fredrik Solenberg23fba1f2015-04-29 13:24:0158 webrtc::AudioReceiveStream* CreateAudioReceiveStream(
59 const webrtc::AudioReceiveStream::Config& config) override;
60 void DestroyAudioReceiveStream(
61 webrtc::AudioReceiveStream* receive_stream) override;
pbos@webrtc.org16e03b72013-10-28 16:32:0162
Fredrik Solenberg23fba1f2015-04-29 13:24:0163 webrtc::VideoSendStream* CreateVideoSendStream(
64 const webrtc::VideoSendStream::Config& config,
65 const VideoEncoderConfig& encoder_config) override;
kjellander@webrtc.org14665ff2015-03-04 12:58:3566 void DestroyVideoSendStream(webrtc::VideoSendStream* send_stream) override;
pbos@webrtc.org16e03b72013-10-28 16:32:0167
Fredrik Solenberg23fba1f2015-04-29 13:24:0168 webrtc::VideoReceiveStream* CreateVideoReceiveStream(
69 const webrtc::VideoReceiveStream::Config& config) override;
kjellander@webrtc.org14665ff2015-03-04 12:58:3570 void DestroyVideoReceiveStream(
71 webrtc::VideoReceiveStream* receive_stream) override;
pbos@webrtc.org16e03b72013-10-28 16:32:0172
kjellander@webrtc.org14665ff2015-03-04 12:58:3573 Stats GetStats() const override;
pbos@webrtc.org16e03b72013-10-28 16:32:0174
stefan68786d22015-09-08 12:36:1575 DeliveryStatus DeliverPacket(MediaType media_type,
76 const uint8_t* packet,
77 size_t length,
78 const PacketTime& packet_time) override;
pbos@webrtc.org16e03b72013-10-28 16:32:0179
kjellander@webrtc.org14665ff2015-03-04 12:58:3580 void SetBitrateConfig(
81 const webrtc::Call::Config::BitrateConfig& bitrate_config) override;
82 void SignalNetworkState(NetworkState state) override;
pbos@webrtc.org26c0c412014-09-03 16:17:1283
stefanc1aeaf02015-10-15 14:26:0784 void OnSentPacket(const rtc::SentPacket& sent_packet) override;
85
pbos@webrtc.org16e03b72013-10-28 16:32:0186 private:
Fredrik Solenberg23fba1f2015-04-29 13:24:0187 DeliveryStatus DeliverRtcp(MediaType media_type, const uint8_t* packet,
88 size_t length);
stefan68786d22015-09-08 12:36:1589 DeliveryStatus DeliverRtp(MediaType media_type,
90 const uint8_t* packet,
91 size_t length,
92 const PacketTime& packet_time);
pbos@webrtc.org16e03b72013-10-28 16:32:0193
pbos8fc7fa72015-07-15 15:02:5894 void ConfigureSync(const std::string& sync_group)
95 EXCLUSIVE_LOCKS_REQUIRED(receive_crit_);
96
Peter Boström45553ae2015-05-08 11:54:3897 const int num_cpu_cores_;
98 const rtc::scoped_ptr<ProcessThread> module_process_thread_;
mflodmane3787022015-10-21 11:24:2899 const rtc::scoped_ptr<CallStats> call_stats_;
mflodman0c478b32015-10-21 13:52:16100 const rtc::scoped_ptr<CongestionController> congestion_controller_;
pbos@webrtc.org16e03b72013-10-28 16:32:01101 Call::Config config_;
solenberg5a289392015-10-19 10:39:20102 rtc::ThreadChecker configuration_thread_checker_;
pbos@webrtc.org16e03b72013-10-28 16:32:01103
pbos@webrtc.org26c0c412014-09-03 16:17:12104 // Needs to be held while write-locking |receive_crit_| or |send_crit_|. This
105 // ensures that we have a consistent network state signalled to all senders
106 // and receivers.
Peter Boströmf2f82832015-05-01 11:00:41107 rtc::CriticalSection network_enabled_crit_;
pbos@webrtc.org26c0c412014-09-03 16:17:12108 bool network_enabled_ GUARDED_BY(network_enabled_crit_);
pbos@webrtc.org16e03b72013-10-28 16:32:01109
kwiberg@webrtc.org00b8f6b2015-02-26 14:34:55110 rtc::scoped_ptr<RWLockWrapper> receive_crit_;
solenbergc7a8b082015-10-16 21:35:07111 // Audio and Video receive streams are owned by the client that creates them.
Fredrik Solenberg23fba1f2015-04-29 13:24:01112 std::map<uint32_t, AudioReceiveStream*> audio_receive_ssrcs_
pbos@webrtc.org26c0c412014-09-03 16:17:12113 GUARDED_BY(receive_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01114 std::map<uint32_t, VideoReceiveStream*> video_receive_ssrcs_
115 GUARDED_BY(receive_crit_);
116 std::set<VideoReceiveStream*> video_receive_streams_
117 GUARDED_BY(receive_crit_);
pbos8fc7fa72015-07-15 15:02:58118 std::map<std::string, AudioReceiveStream*> sync_stream_mapping_
119 GUARDED_BY(receive_crit_);
pbos@webrtc.org26c0c412014-09-03 16:17:12120
kwiberg@webrtc.org00b8f6b2015-02-26 14:34:55121 rtc::scoped_ptr<RWLockWrapper> send_crit_;
solenbergc7a8b082015-10-16 21:35:07122 // Audio and Video send streams are owned by the client that creates them.
123 std::map<uint32_t, AudioSendStream*> audio_send_ssrcs_ GUARDED_BY(send_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01124 std::map<uint32_t, VideoSendStream*> video_send_ssrcs_ GUARDED_BY(send_crit_);
125 std::set<VideoSendStream*> video_send_streams_ GUARDED_BY(send_crit_);
pbos@webrtc.org16e03b72013-10-28 16:32:01126
Fredrik Solenberg23fba1f2015-04-29 13:24:01127 VideoSendStream::RtpStateMap suspended_video_send_ssrcs_;
pbos@webrtc.org2bb1bda2014-07-07 13:06:48128
solenberg43e83d42015-10-20 13:41:01129 RtcEventLog* event_log_;
ivocb04965c2015-09-09 07:09:43130
henrikg3c089d72015-09-16 12:37:44131 RTC_DISALLOW_COPY_AND_ASSIGN(Call);
pbos@webrtc.org16e03b72013-10-28 16:32:01132};
pbos@webrtc.orgc49d5b72013-12-05 12:11:47133} // namespace internal
pbos@webrtc.orgfd39e132013-08-14 13:52:52134
stefan@webrtc.org7e9315b2013-12-04 10:24:26135Call* Call::Create(const Call::Config& config) {
Peter Boström45553ae2015-05-08 11:54:38136 return new internal::Call(config);
pbos@webrtc.orgfd39e132013-08-14 13:52:52137}
pbos@webrtc.orgfd39e132013-08-14 13:52:52138
pbos@webrtc.org29d58392013-05-16 12:08:03139namespace internal {
140
Peter Boström45553ae2015-05-08 11:54:38141Call::Call(const Call::Config& config)
142 : num_cpu_cores_(CpuInfo::DetectNumberOfCores()),
stefan847855b2015-09-11 16:52:15143 module_process_thread_(ProcessThread::Create("ModuleProcessThread")),
mflodmane3787022015-10-21 11:24:28144 call_stats_(new CallStats()),
mflodman0c478b32015-10-21 13:52:16145 congestion_controller_(new CongestionController(
146 module_process_thread_.get(), call_stats_.get())),
Peter Boström45553ae2015-05-08 11:54:38147 config_(config),
pbos@webrtc.org26c0c412014-09-03 16:17:12148 network_enabled_(true),
149 receive_crit_(RWLockWrapper::CreateRWLock()),
solenberg43e83d42015-10-20 13:41:01150 send_crit_(RWLockWrapper::CreateRWLock()),
151 event_log_(nullptr) {
solenberg5a289392015-10-19 10:39:20152 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
henrikg91d6ede2015-09-17 07:24:34153 RTC_DCHECK_GE(config.bitrate_config.min_bitrate_bps, 0);
154 RTC_DCHECK_GE(config.bitrate_config.start_bitrate_bps,
155 config.bitrate_config.min_bitrate_bps);
Stefan Holmere5904162015-03-26 10:11:06156 if (config.bitrate_config.max_bitrate_bps != -1) {
henrikg91d6ede2015-09-17 07:24:34157 RTC_DCHECK_GE(config.bitrate_config.max_bitrate_bps,
158 config.bitrate_config.start_bitrate_bps);
pbos@webrtc.org00873182014-11-25 14:03:34159 }
ivocb04965c2015-09-09 07:09:43160 if (config.voice_engine) {
solenberg43e83d42015-10-20 13:41:01161 VoECodec* voe_codec = VoECodec::GetInterface(config.voice_engine);
162 if (voe_codec) {
163 event_log_ = voe_codec->GetEventLog();
164 voe_codec->Release();
165 }
ivocb04965c2015-09-09 07:09:43166 }
pbos@webrtc.org00873182014-11-25 14:03:34167
Peter Boström45553ae2015-05-08 11:54:38168 Trace::CreateTrace();
169 module_process_thread_->Start();
mflodmane3787022015-10-21 11:24:28170 module_process_thread_->RegisterModule(call_stats_.get());
Peter Boström45553ae2015-05-08 11:54:38171
mflodman0c478b32015-10-21 13:52:16172 congestion_controller_->SetBweBitrates(
173 config_.bitrate_config.min_bitrate_bps,
174 config_.bitrate_config.start_bitrate_bps,
175 config_.bitrate_config.max_bitrate_bps);
pbos@webrtc.org29d58392013-05-16 12:08:03176}
177
pbos@webrtc.org841c8a42013-09-09 15:04:25178Call::~Call() {
solenberg5a289392015-10-19 10:39:20179 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
solenbergc7a8b082015-10-16 21:35:07180 RTC_CHECK(audio_send_ssrcs_.empty());
181 RTC_CHECK(video_send_ssrcs_.empty());
182 RTC_CHECK(video_send_streams_.empty());
183 RTC_CHECK(audio_receive_ssrcs_.empty());
184 RTC_CHECK(video_receive_ssrcs_.empty());
185 RTC_CHECK(video_receive_streams_.empty());
pbos@webrtc.org9e4e5242015-02-12 10:48:23186
mflodmane3787022015-10-21 11:24:28187 module_process_thread_->DeRegisterModule(call_stats_.get());
Peter Boström45553ae2015-05-08 11:54:38188 module_process_thread_->Stop();
189 Trace::ReturnTrace();
pbos@webrtc.org29d58392013-05-16 12:08:03190}
191
solenberg5a289392015-10-19 10:39:20192PacketReceiver* Call::Receiver() {
193 // TODO(solenberg): Some test cases in EndToEndTest use this from a different
194 // thread. Re-enable once that is fixed.
195 // RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
196 return this;
197}
pbos@webrtc.org29d58392013-05-16 12:08:03198
Fredrik Solenberg04f49312015-06-08 11:04:56199webrtc::AudioSendStream* Call::CreateAudioSendStream(
200 const webrtc::AudioSendStream::Config& config) {
solenbergc7a8b082015-10-16 21:35:07201 TRACE_EVENT0("webrtc", "Call::CreateAudioSendStream");
solenberg5a289392015-10-19 10:39:20202 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
solenbergc7a8b082015-10-16 21:35:07203 AudioSendStream* send_stream = new AudioSendStream(config);
204 {
205 rtc::CritScope lock(&network_enabled_crit_);
206 WriteLockScoped write_lock(*send_crit_);
207 RTC_DCHECK(audio_send_ssrcs_.find(config.rtp.ssrc) ==
208 audio_send_ssrcs_.end());
209 audio_send_ssrcs_[config.rtp.ssrc] = send_stream;
210
211 if (!network_enabled_)
212 send_stream->SignalNetworkState(kNetworkDown);
213 }
214 return send_stream;
Fredrik Solenberg04f49312015-06-08 11:04:56215}
216
217void Call::DestroyAudioSendStream(webrtc::AudioSendStream* send_stream) {
solenbergc7a8b082015-10-16 21:35:07218 TRACE_EVENT0("webrtc", "Call::DestroyAudioSendStream");
solenberg5a289392015-10-19 10:39:20219 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
solenbergc7a8b082015-10-16 21:35:07220 RTC_DCHECK(send_stream != nullptr);
221
222 send_stream->Stop();
223
224 webrtc::internal::AudioSendStream* audio_send_stream =
225 static_cast<webrtc::internal::AudioSendStream*>(send_stream);
226 {
227 WriteLockScoped write_lock(*send_crit_);
228 size_t num_deleted = audio_send_ssrcs_.erase(
229 audio_send_stream->config().rtp.ssrc);
230 RTC_DCHECK(num_deleted == 1);
231 }
232 delete audio_send_stream;
Fredrik Solenberg04f49312015-06-08 11:04:56233}
234
Fredrik Solenberg23fba1f2015-04-29 13:24:01235webrtc::AudioReceiveStream* Call::CreateAudioReceiveStream(
236 const webrtc::AudioReceiveStream::Config& config) {
237 TRACE_EVENT0("webrtc", "Call::CreateAudioReceiveStream");
solenberg5a289392015-10-19 10:39:20238 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
Fredrik Solenberg23fba1f2015-04-29 13:24:01239 AudioReceiveStream* receive_stream = new AudioReceiveStream(
mflodman0c478b32015-10-21 13:52:16240 congestion_controller_->GetRemoteBitrateEstimator(false), config);
Fredrik Solenberg23fba1f2015-04-29 13:24:01241 {
242 WriteLockScoped write_lock(*receive_crit_);
henrikg91d6ede2015-09-17 07:24:34243 RTC_DCHECK(audio_receive_ssrcs_.find(config.rtp.remote_ssrc) ==
244 audio_receive_ssrcs_.end());
Fredrik Solenberg23fba1f2015-04-29 13:24:01245 audio_receive_ssrcs_[config.rtp.remote_ssrc] = receive_stream;
pbos8fc7fa72015-07-15 15:02:58246 ConfigureSync(config.sync_group);
Fredrik Solenberg23fba1f2015-04-29 13:24:01247 }
248 return receive_stream;
249}
250
251void Call::DestroyAudioReceiveStream(
252 webrtc::AudioReceiveStream* receive_stream) {
253 TRACE_EVENT0("webrtc", "Call::DestroyAudioReceiveStream");
solenberg5a289392015-10-19 10:39:20254 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
henrikg91d6ede2015-09-17 07:24:34255 RTC_DCHECK(receive_stream != nullptr);
solenbergc7a8b082015-10-16 21:35:07256 webrtc::internal::AudioReceiveStream* audio_receive_stream =
257 static_cast<webrtc::internal::AudioReceiveStream*>(receive_stream);
Fredrik Solenberg23fba1f2015-04-29 13:24:01258 {
259 WriteLockScoped write_lock(*receive_crit_);
260 size_t num_deleted = audio_receive_ssrcs_.erase(
261 audio_receive_stream->config().rtp.remote_ssrc);
henrikg91d6ede2015-09-17 07:24:34262 RTC_DCHECK(num_deleted == 1);
pbos8fc7fa72015-07-15 15:02:58263 const std::string& sync_group = audio_receive_stream->config().sync_group;
264 const auto it = sync_stream_mapping_.find(sync_group);
265 if (it != sync_stream_mapping_.end() &&
266 it->second == audio_receive_stream) {
267 sync_stream_mapping_.erase(it);
268 ConfigureSync(sync_group);
269 }
Fredrik Solenberg23fba1f2015-04-29 13:24:01270 }
271 delete audio_receive_stream;
272}
273
274webrtc::VideoSendStream* Call::CreateVideoSendStream(
275 const webrtc::VideoSendStream::Config& config,
pbos@webrtc.orgbbe0a852014-09-19 12:30:25276 const VideoEncoderConfig& encoder_config) {
pbos@webrtc.org50fe3592015-01-29 12:33:07277 TRACE_EVENT0("webrtc", "Call::CreateVideoSendStream");
solenberg5a289392015-10-19 10:39:20278 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
pbos@webrtc.org1819fd72013-06-10 13:48:26279
mflodman@webrtc.orgeb16b812014-06-16 08:57:39280 // TODO(mflodman): Base the start bitrate on a current bandwidth estimate, if
281 // the call has already started.
mflodman0c478b32015-10-21 13:52:16282 VideoSendStream* send_stream = new VideoSendStream(
283 num_cpu_cores_, module_process_thread_.get(), call_stats_.get(),
284 congestion_controller_.get(), config, encoder_config,
285 suspended_video_send_ssrcs_);
pbos@webrtc.org1819fd72013-06-10 13:48:26286
pbos@webrtc.org26c0c412014-09-03 16:17:12287 // This needs to be taken before send_crit_ as both locks need to be held
288 // while changing network state.
Peter Boströmf2f82832015-05-01 11:00:41289 rtc::CritScope lock(&network_enabled_crit_);
pbos@webrtc.org26c0c412014-09-03 16:17:12290 WriteLockScoped write_lock(*send_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01291 for (uint32_t ssrc : config.rtp.ssrcs) {
henrikg91d6ede2015-09-17 07:24:34292 RTC_DCHECK(video_send_ssrcs_.find(ssrc) == video_send_ssrcs_.end());
Fredrik Solenberg23fba1f2015-04-29 13:24:01293 video_send_ssrcs_[ssrc] = send_stream;
pbos@webrtc.org29d58392013-05-16 12:08:03294 }
Fredrik Solenberg23fba1f2015-04-29 13:24:01295 video_send_streams_.insert(send_stream);
296
ivocb04965c2015-09-09 07:09:43297 if (event_log_)
298 event_log_->LogVideoSendStreamConfig(config);
299
pbos@webrtc.org26c0c412014-09-03 16:17:12300 if (!network_enabled_)
301 send_stream->SignalNetworkState(kNetworkDown);
pbos@webrtc.org29d58392013-05-16 12:08:03302 return send_stream;
303}
304
pbos@webrtc.org2c46f8d2013-11-21 13:49:43305void Call::DestroyVideoSendStream(webrtc::VideoSendStream* send_stream) {
pbos@webrtc.org50fe3592015-01-29 12:33:07306 TRACE_EVENT0("webrtc", "Call::DestroyVideoSendStream");
henrikg91d6ede2015-09-17 07:24:34307 RTC_DCHECK(send_stream != nullptr);
solenberg5a289392015-10-19 10:39:20308 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
pbos@webrtc.org95e51f52013-09-05 12:38:54309
pbos@webrtc.org2bb1bda2014-07-07 13:06:48310 send_stream->Stop();
311
pbos@webrtc.org2b4ce3a2015-03-23 13:12:24312 VideoSendStream* send_stream_impl = nullptr;
pbos@webrtc.org95e51f52013-09-05 12:38:54313 {
pbos@webrtc.org26c0c412014-09-03 16:17:12314 WriteLockScoped write_lock(*send_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01315 auto it = video_send_ssrcs_.begin();
316 while (it != video_send_ssrcs_.end()) {
pbos@webrtc.org95e51f52013-09-05 12:38:54317 if (it->second == static_cast<VideoSendStream*>(send_stream)) {
318 send_stream_impl = it->second;
Fredrik Solenberg23fba1f2015-04-29 13:24:01319 video_send_ssrcs_.erase(it++);
pbos@webrtc.org2bb1bda2014-07-07 13:06:48320 } else {
321 ++it;
pbos@webrtc.org95e51f52013-09-05 12:38:54322 }
323 }
Fredrik Solenberg23fba1f2015-04-29 13:24:01324 video_send_streams_.erase(send_stream_impl);
pbos@webrtc.org29d58392013-05-16 12:08:03325 }
henrikg91d6ede2015-09-17 07:24:34326 RTC_CHECK(send_stream_impl != nullptr);
pbos@webrtc.org95e51f52013-09-05 12:38:54327
pbos@webrtc.org2bb1bda2014-07-07 13:06:48328 VideoSendStream::RtpStateMap rtp_state = send_stream_impl->GetRtpStates();
329
330 for (VideoSendStream::RtpStateMap::iterator it = rtp_state.begin();
331 it != rtp_state.end();
332 ++it) {
Fredrik Solenberg23fba1f2015-04-29 13:24:01333 suspended_video_send_ssrcs_[it->first] = it->second;
pbos@webrtc.org2bb1bda2014-07-07 13:06:48334 }
335
pbos@webrtc.org95e51f52013-09-05 12:38:54336 delete send_stream_impl;
pbos@webrtc.org29d58392013-05-16 12:08:03337}
338
Fredrik Solenberg23fba1f2015-04-29 13:24:01339webrtc::VideoReceiveStream* Call::CreateVideoReceiveStream(
340 const webrtc::VideoReceiveStream::Config& config) {
pbos@webrtc.org50fe3592015-01-29 12:33:07341 TRACE_EVENT0("webrtc", "Call::CreateVideoReceiveStream");
solenberg5a289392015-10-19 10:39:20342 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
Peter Boströmc4188fd2015-04-24 13:16:03343 VideoReceiveStream* receive_stream = new VideoReceiveStream(
mflodman0c478b32015-10-21 13:52:16344 num_cpu_cores_, congestion_controller_.get(), config,
345 config_.voice_engine, module_process_thread_.get(), call_stats_.get());
pbos@webrtc.org29d58392013-05-16 12:08:03346
pbos@webrtc.org26c0c412014-09-03 16:17:12347 // This needs to be taken before receive_crit_ as both locks need to be held
348 // while changing network state.
Peter Boströmf2f82832015-05-01 11:00:41349 rtc::CritScope lock(&network_enabled_crit_);
pbos@webrtc.org26c0c412014-09-03 16:17:12350 WriteLockScoped write_lock(*receive_crit_);
henrikg91d6ede2015-09-17 07:24:34351 RTC_DCHECK(video_receive_ssrcs_.find(config.rtp.remote_ssrc) ==
352 video_receive_ssrcs_.end());
Fredrik Solenberg23fba1f2015-04-29 13:24:01353 video_receive_ssrcs_[config.rtp.remote_ssrc] = receive_stream;
pbos@webrtc.orgc279a5d2014-01-24 09:30:53354 // TODO(pbos): Configure different RTX payloads per receive payload.
355 VideoReceiveStream::Config::Rtp::RtxMap::const_iterator it =
356 config.rtp.rtx.begin();
357 if (it != config.rtp.rtx.end())
Fredrik Solenberg23fba1f2015-04-29 13:24:01358 video_receive_ssrcs_[it->second.ssrc] = receive_stream;
359 video_receive_streams_.insert(receive_stream);
pbos@webrtc.orgc279a5d2014-01-24 09:30:53360
pbos8fc7fa72015-07-15 15:02:58361 ConfigureSync(config.sync_group);
362
pbos@webrtc.org26c0c412014-09-03 16:17:12363 if (!network_enabled_)
364 receive_stream->SignalNetworkState(kNetworkDown);
pbos8fc7fa72015-07-15 15:02:58365
ivocb04965c2015-09-09 07:09:43366 if (event_log_)
367 event_log_->LogVideoReceiveStreamConfig(config);
368
pbos@webrtc.org29d58392013-05-16 12:08:03369 return receive_stream;
370}
371
pbos@webrtc.org2c46f8d2013-11-21 13:49:43372void Call::DestroyVideoReceiveStream(
373 webrtc::VideoReceiveStream* receive_stream) {
pbos@webrtc.org50fe3592015-01-29 12:33:07374 TRACE_EVENT0("webrtc", "Call::DestroyVideoReceiveStream");
solenberg5a289392015-10-19 10:39:20375 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
henrikg91d6ede2015-09-17 07:24:34376 RTC_DCHECK(receive_stream != nullptr);
pbos@webrtc.org2b4ce3a2015-03-23 13:12:24377 VideoReceiveStream* receive_stream_impl = nullptr;
pbos@webrtc.org95e51f52013-09-05 12:38:54378 {
pbos@webrtc.org26c0c412014-09-03 16:17:12379 WriteLockScoped write_lock(*receive_crit_);
pbos@webrtc.orgc279a5d2014-01-24 09:30:53380 // Remove all ssrcs pointing to a receive stream. As RTX retransmits on a
381 // separate SSRC there can be either one or two.
Fredrik Solenberg23fba1f2015-04-29 13:24:01382 auto it = video_receive_ssrcs_.begin();
383 while (it != video_receive_ssrcs_.end()) {
pbos@webrtc.org95e51f52013-09-05 12:38:54384 if (it->second == static_cast<VideoReceiveStream*>(receive_stream)) {
pbos@webrtc.org2b4ce3a2015-03-23 13:12:24385 if (receive_stream_impl != nullptr)
henrikg91d6ede2015-09-17 07:24:34386 RTC_DCHECK(receive_stream_impl == it->second);
pbos@webrtc.org95e51f52013-09-05 12:38:54387 receive_stream_impl = it->second;
Fredrik Solenberg23fba1f2015-04-29 13:24:01388 video_receive_ssrcs_.erase(it++);
pbos@webrtc.orgc279a5d2014-01-24 09:30:53389 } else {
390 ++it;
pbos@webrtc.org95e51f52013-09-05 12:38:54391 }
392 }
Fredrik Solenberg23fba1f2015-04-29 13:24:01393 video_receive_streams_.erase(receive_stream_impl);
henrikg91d6ede2015-09-17 07:24:34394 RTC_CHECK(receive_stream_impl != nullptr);
pbos8fc7fa72015-07-15 15:02:58395 ConfigureSync(receive_stream_impl->config().sync_group);
pbos@webrtc.org29d58392013-05-16 12:08:03396 }
pbos@webrtc.org95e51f52013-09-05 12:38:54397 delete receive_stream_impl;
pbos@webrtc.org29d58392013-05-16 12:08:03398}
399
stefan@webrtc.org0bae1fa2014-11-05 14:05:29400Call::Stats Call::GetStats() const {
solenberg5a289392015-10-19 10:39:20401 // TODO(solenberg): Some test cases in EndToEndTest use this from a different
402 // thread. Re-enable once that is fixed.
403 // RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
stefan@webrtc.org0bae1fa2014-11-05 14:05:29404 Stats stats;
Peter Boström45553ae2015-05-08 11:54:38405 // Fetch available send/receive bitrates.
stefan@webrtc.org0bae1fa2014-11-05 14:05:29406 uint32_t send_bandwidth = 0;
mflodman0c478b32015-10-21 13:52:16407 congestion_controller_->GetBitrateController()->AvailableBandwidth(
408 &send_bandwidth);
Peter Boström45553ae2015-05-08 11:54:38409 std::vector<unsigned int> ssrcs;
stefan@webrtc.org0bae1fa2014-11-05 14:05:29410 uint32_t recv_bandwidth = 0;
mflodman0c478b32015-10-21 13:52:16411 congestion_controller_->GetRemoteBitrateEstimator(false)->LatestEstimate(
mflodmana20de202015-10-19 05:08:19412 &ssrcs, &recv_bandwidth);
Peter Boström45553ae2015-05-08 11:54:38413 stats.send_bandwidth_bps = send_bandwidth;
stefan@webrtc.org0bae1fa2014-11-05 14:05:29414 stats.recv_bandwidth_bps = recv_bandwidth;
mflodman0c478b32015-10-21 13:52:16415 stats.pacer_delay_ms = congestion_controller_->GetPacerQueuingDelayMs();
stefan@webrtc.org0bae1fa2014-11-05 14:05:29416 {
417 ReadLockScoped read_lock(*send_crit_);
solenbergc7a8b082015-10-16 21:35:07418 // TODO(solenberg): Add audio send streams.
Fredrik Solenberg23fba1f2015-04-29 13:24:01419 for (const auto& kv : video_send_ssrcs_) {
420 int rtt_ms = kv.second->GetRtt();
pbos@webrtc.org2b19f062014-12-11 13:26:09421 if (rtt_ms > 0)
422 stats.rtt_ms = rtt_ms;
stefan@webrtc.org0bae1fa2014-11-05 14:05:29423 }
424 }
425 return stats;
pbos@webrtc.org29d58392013-05-16 12:08:03426}
427
pbos@webrtc.org00873182014-11-25 14:03:34428void Call::SetBitrateConfig(
429 const webrtc::Call::Config::BitrateConfig& bitrate_config) {
pbos@webrtc.org50fe3592015-01-29 12:33:07430 TRACE_EVENT0("webrtc", "Call::SetBitrateConfig");
solenberg5a289392015-10-19 10:39:20431 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
henrikg91d6ede2015-09-17 07:24:34432 RTC_DCHECK_GE(bitrate_config.min_bitrate_bps, 0);
pbos@webrtc.org2b4ce3a2015-03-23 13:12:24433 if (bitrate_config.max_bitrate_bps != -1)
henrikg91d6ede2015-09-17 07:24:34434 RTC_DCHECK_GT(bitrate_config.max_bitrate_bps, 0);
Stefan Holmere5904162015-03-26 10:11:06435 if (config_.bitrate_config.min_bitrate_bps ==
pbos@webrtc.org00873182014-11-25 14:03:34436 bitrate_config.min_bitrate_bps &&
437 (bitrate_config.start_bitrate_bps <= 0 ||
Stefan Holmere5904162015-03-26 10:11:06438 config_.bitrate_config.start_bitrate_bps ==
pbos@webrtc.org00873182014-11-25 14:03:34439 bitrate_config.start_bitrate_bps) &&
Stefan Holmere5904162015-03-26 10:11:06440 config_.bitrate_config.max_bitrate_bps ==
pbos@webrtc.org00873182014-11-25 14:03:34441 bitrate_config.max_bitrate_bps) {
442 // Nothing new to set, early abort to avoid encoder reconfigurations.
443 return;
444 }
Stefan Holmere5904162015-03-26 10:11:06445 config_.bitrate_config = bitrate_config;
mflodman0c478b32015-10-21 13:52:16446 congestion_controller_->SetBweBitrates(bitrate_config.min_bitrate_bps,
447 bitrate_config.start_bitrate_bps,
448 bitrate_config.max_bitrate_bps);
pbos@webrtc.org00873182014-11-25 14:03:34449}
450
pbos@webrtc.org26c0c412014-09-03 16:17:12451void Call::SignalNetworkState(NetworkState state) {
solenberg5a289392015-10-19 10:39:20452 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
pbos@webrtc.org26c0c412014-09-03 16:17:12453 // Take crit for entire function, it needs to be held while updating streams
454 // to guarantee a consistent state across streams.
Peter Boströmf2f82832015-05-01 11:00:41455 rtc::CritScope lock(&network_enabled_crit_);
pbos@webrtc.org26c0c412014-09-03 16:17:12456 network_enabled_ = state == kNetworkUp;
mflodman0c478b32015-10-21 13:52:16457 congestion_controller_->SignalNetworkState(state);
pbos@webrtc.org26c0c412014-09-03 16:17:12458 {
459 ReadLockScoped write_lock(*send_crit_);
solenbergc7a8b082015-10-16 21:35:07460 for (auto& kv : audio_send_ssrcs_) {
461 kv.second->SignalNetworkState(state);
462 }
Fredrik Solenberg23fba1f2015-04-29 13:24:01463 for (auto& kv : video_send_ssrcs_) {
464 kv.second->SignalNetworkState(state);
pbos@webrtc.org26c0c412014-09-03 16:17:12465 }
466 }
467 {
468 ReadLockScoped write_lock(*receive_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01469 for (auto& kv : video_receive_ssrcs_) {
470 kv.second->SignalNetworkState(state);
pbos@webrtc.org26c0c412014-09-03 16:17:12471 }
472 }
473}
474
stefanc1aeaf02015-10-15 14:26:07475void Call::OnSentPacket(const rtc::SentPacket& sent_packet) {
solenberg5a289392015-10-19 10:39:20476 RTC_DCHECK(configuration_thread_checker_.CalledOnValidThread());
mflodman0c478b32015-10-21 13:52:16477 congestion_controller_->OnSentPacket(sent_packet);
stefanc1aeaf02015-10-15 14:26:07478}
479
pbos8fc7fa72015-07-15 15:02:58480void Call::ConfigureSync(const std::string& sync_group) {
481 // Set sync only if there was no previous one.
482 if (config_.voice_engine == nullptr || sync_group.empty())
483 return;
484
485 AudioReceiveStream* sync_audio_stream = nullptr;
486 // Find existing audio stream.
487 const auto it = sync_stream_mapping_.find(sync_group);
488 if (it != sync_stream_mapping_.end()) {
489 sync_audio_stream = it->second;
490 } else {
491 // No configured audio stream, see if we can find one.
492 for (const auto& kv : audio_receive_ssrcs_) {
493 if (kv.second->config().sync_group == sync_group) {
494 if (sync_audio_stream != nullptr) {
495 LOG(LS_WARNING) << "Attempting to sync more than one audio stream "
496 "within the same sync group. This is not "
497 "supported in the current implementation.";
498 break;
499 }
500 sync_audio_stream = kv.second;
501 }
502 }
503 }
504 if (sync_audio_stream)
505 sync_stream_mapping_[sync_group] = sync_audio_stream;
506 size_t num_synced_streams = 0;
507 for (VideoReceiveStream* video_stream : video_receive_streams_) {
508 if (video_stream->config().sync_group != sync_group)
509 continue;
510 ++num_synced_streams;
511 if (num_synced_streams > 1) {
512 // TODO(pbos): Support synchronizing more than one A/V pair.
513 // https://code.google.com/p/webrtc/issues/detail?id=4762
514 LOG(LS_WARNING) << "Attempting to sync more than one audio/video pair "
515 "within the same sync group. This is not supported in "
516 "the current implementation.";
517 }
518 // Only sync the first A/V pair within this sync group.
519 if (sync_audio_stream != nullptr && num_synced_streams == 1) {
520 video_stream->SetSyncChannel(config_.voice_engine,
521 sync_audio_stream->config().voe_channel_id);
522 } else {
523 video_stream->SetSyncChannel(config_.voice_engine, -1);
524 }
525 }
526}
527
Fredrik Solenberg23fba1f2015-04-29 13:24:01528PacketReceiver::DeliveryStatus Call::DeliverRtcp(MediaType media_type,
529 const uint8_t* packet,
530 size_t length) {
pbos@webrtc.org29d58392013-05-16 12:08:03531 // TODO(pbos): Figure out what channel needs it actually.
532 // Do NOT broadcast! Also make sure it's a valid packet.
pbos@webrtc.orgcaba2d22014-05-14 13:57:12533 // Return DELIVERY_UNKNOWN_SSRC if it can be determined that
534 // there's no receiver of the packet.
pbos@webrtc.org29d58392013-05-16 12:08:03535 bool rtcp_delivered = false;
Fredrik Solenberg23fba1f2015-04-29 13:24:01536 if (media_type == MediaType::ANY || media_type == MediaType::VIDEO) {
pbos@webrtc.org26c0c412014-09-03 16:17:12537 ReadLockScoped read_lock(*receive_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01538 for (VideoReceiveStream* stream : video_receive_streams_) {
ivocb04965c2015-09-09 07:09:43539 if (stream->DeliverRtcp(packet, length)) {
pbos@webrtc.org40523702013-08-05 12:49:22540 rtcp_delivered = true;
ivocb04965c2015-09-09 07:09:43541 if (event_log_)
542 event_log_->LogRtcpPacket(true, media_type, packet, length);
543 }
pbos@webrtc.orgbbb07e62013-08-05 12:01:36544 }
545 }
Fredrik Solenberg23fba1f2015-04-29 13:24:01546 if (media_type == MediaType::ANY || media_type == MediaType::VIDEO) {
pbos@webrtc.org26c0c412014-09-03 16:17:12547 ReadLockScoped read_lock(*send_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01548 for (VideoSendStream* stream : video_send_streams_) {
ivocb04965c2015-09-09 07:09:43549 if (stream->DeliverRtcp(packet, length)) {
pbos@webrtc.org40523702013-08-05 12:49:22550 rtcp_delivered = true;
ivocb04965c2015-09-09 07:09:43551 if (event_log_)
552 event_log_->LogRtcpPacket(false, media_type, packet, length);
553 }
pbos@webrtc.org29d58392013-05-16 12:08:03554 }
555 }
pbos@webrtc.orgcaba2d22014-05-14 13:57:12556 return rtcp_delivered ? DELIVERY_OK : DELIVERY_PACKET_ERROR;
pbos@webrtc.org29d58392013-05-16 12:08:03557}
558
Fredrik Solenberg23fba1f2015-04-29 13:24:01559PacketReceiver::DeliveryStatus Call::DeliverRtp(MediaType media_type,
560 const uint8_t* packet,
stefan68786d22015-09-08 12:36:15561 size_t length,
562 const PacketTime& packet_time) {
pbos@webrtc.orgaf38f4e2014-07-08 07:38:12563 // Minimum RTP header size.
564 if (length < 12)
565 return DELIVERY_PACKET_ERROR;
566
sprang@webrtc.org2a6558c2015-01-28 12:37:36567 uint32_t ssrc = ByteReader<uint32_t>::ReadBigEndian(&packet[8]);
pbos@webrtc.orgaf38f4e2014-07-08 07:38:12568
pbos@webrtc.org26c0c412014-09-03 16:17:12569 ReadLockScoped read_lock(*receive_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01570 if (media_type == MediaType::ANY || media_type == MediaType::AUDIO) {
571 auto it = audio_receive_ssrcs_.find(ssrc);
572 if (it != audio_receive_ssrcs_.end()) {
ivocb04965c2015-09-09 07:09:43573 auto status = it->second->DeliverRtp(packet, length, packet_time)
574 ? DELIVERY_OK
575 : DELIVERY_PACKET_ERROR;
576 if (status == DELIVERY_OK && event_log_)
577 event_log_->LogRtpHeader(true, media_type, packet, length);
578 return status;
Fredrik Solenberg23fba1f2015-04-29 13:24:01579 }
580 }
581 if (media_type == MediaType::ANY || media_type == MediaType::VIDEO) {
582 auto it = video_receive_ssrcs_.find(ssrc);
583 if (it != video_receive_ssrcs_.end()) {
ivocb04965c2015-09-09 07:09:43584 auto status = it->second->DeliverRtp(packet, length, packet_time)
585 ? DELIVERY_OK
586 : DELIVERY_PACKET_ERROR;
587 if (status == DELIVERY_OK && event_log_)
588 event_log_->LogRtpHeader(true, media_type, packet, length);
589 return status;
Fredrik Solenberg23fba1f2015-04-29 13:24:01590 }
591 }
592 return DELIVERY_UNKNOWN_SSRC;
pbos@webrtc.org29d58392013-05-16 12:08:03593}
594
stefan68786d22015-09-08 12:36:15595PacketReceiver::DeliveryStatus Call::DeliverPacket(
596 MediaType media_type,
597 const uint8_t* packet,
598 size_t length,
599 const PacketTime& packet_time) {
solenberg5a289392015-10-19 10:39:20600 // TODO(solenberg): Tests call this function on a network thread, libjingle
601 // calls on the worker thread. We should move towards always using a network
602 // thread. Then this check can be enabled.
603 // RTC_DCHECK(!configuration_thread_checker_.CalledOnValidThread());
pbos@webrtc.org62bafae2014-07-08 12:10:51604 if (RtpHeaderParser::IsRtcp(packet, length))
Fredrik Solenberg23fba1f2015-04-29 13:24:01605 return DeliverRtcp(media_type, packet, length);
pbos@webrtc.org29d58392013-05-16 12:08:03606
stefan68786d22015-09-08 12:36:15607 return DeliverRtp(media_type, packet, length, packet_time);
pbos@webrtc.org29d58392013-05-16 12:08:03608}
609
610} // namespace internal
611} // namespace webrtc