blob: 966d0965b2d22975477c1c11c582761cfc14e6ba [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
pbos@webrtc.org2b4ce3a2015-03-23 13:12:2416#include "webrtc/base/checks.h"
kwiberg@webrtc.org00b8f6b2015-02-26 14:34:5517#include "webrtc/base/scoped_ptr.h"
pbos@webrtc.org38344ed2014-09-24 06:05:0018#include "webrtc/base/thread_annotations.h"
pbos@webrtc.org16e03b72013-10-28 16:32:0119#include "webrtc/call.h"
stefan@webrtc.org7e9315b2013-12-04 10:24:2620#include "webrtc/common.h"
pbos@webrtc.orgc49d5b72013-12-05 12:11:4721#include "webrtc/config.h"
pbos@webrtc.org16e03b72013-10-28 16:32:0122#include "webrtc/modules/rtp_rtcp/interface/rtp_header_parser.h"
sprang@webrtc.org2a6558c2015-01-28 12:37:3623#include "webrtc/modules/rtp_rtcp/source/byte_io.h"
Peter Boström45553ae2015-05-08 11:54:3824#include "webrtc/modules/utility/interface/process_thread.h"
pbos@webrtc.orgab990ae2014-09-17 09:02:2525#include "webrtc/modules/video_coding/codecs/vp8/include/vp8.h"
marpan@webrtc.org5b883172014-11-01 06:10:4826#include "webrtc/modules/video_coding/codecs/vp9/include/vp9.h"
pbos@webrtc.org9e4e5242015-02-12 10:48:2327#include "webrtc/modules/video_render/include/video_render.h"
Peter Boström45553ae2015-05-08 11:54:3828#include "webrtc/system_wrappers/interface/cpu_info.h"
pbos@webrtc.orgde74b642013-10-02 13:36:0929#include "webrtc/system_wrappers/interface/critical_section_wrapper.h"
pbos@webrtc.org32e85282015-01-15 10:09:3930#include "webrtc/system_wrappers/interface/logging.h"
pbos@webrtc.org16e03b72013-10-28 16:32:0131#include "webrtc/system_wrappers/interface/rw_lock_wrapper.h"
pbos@webrtc.orgde74b642013-10-02 13:36:0932#include "webrtc/system_wrappers/interface/trace.h"
pbos@webrtc.org50fe3592015-01-29 12:33:0733#include "webrtc/system_wrappers/interface/trace_event.h"
Fredrik Solenberg23fba1f2015-04-29 13:24:0134#include "webrtc/video/audio_receive_stream.h"
pbos@webrtc.org16e03b72013-10-28 16:32:0135#include "webrtc/video/video_receive_stream.h"
36#include "webrtc/video/video_send_stream.h"
pbos@webrtc.org29d58392013-05-16 12:08:0337
38namespace webrtc {
pbos@webrtc.orgab990ae2014-09-17 09:02:2539VideoEncoder* VideoEncoder::Create(VideoEncoder::EncoderType codec_type) {
40 switch (codec_type) {
41 case kVp8:
42 return VP8Encoder::Create();
marpan@webrtc.org5b883172014-11-01 06:10:4843 case kVp9:
44 return VP9Encoder::Create();
pbos@webrtc.orgab990ae2014-09-17 09:02:2545 }
pbos@webrtc.org2b4ce3a2015-03-23 13:12:2446 RTC_NOTREACHED();
47 return nullptr;
pbos@webrtc.orgab990ae2014-09-17 09:02:2548}
49
pbos@webrtc.org776e6f22014-10-29 15:28:3950VideoDecoder* VideoDecoder::Create(VideoDecoder::DecoderType codec_type) {
51 switch (codec_type) {
52 case kVp8:
53 return VP8Decoder::Create();
stefan@webrtc.org7c29e8c2014-11-04 19:41:1554 case kVp9:
55 return VP9Decoder::Create();
pbos@webrtc.org776e6f22014-10-29 15:28:3956 }
pbos@webrtc.org2b4ce3a2015-03-23 13:12:2457 RTC_NOTREACHED();
58 return nullptr;
pbos@webrtc.org776e6f22014-10-29 15:28:3959}
60
pbos@webrtc.orga73a6782014-10-14 11:52:1061const int Call::Config::kDefaultStartBitrateBps = 300000;
62
pbos@webrtc.org16e03b72013-10-28 16:32:0163namespace internal {
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:0764
65class CpuOveruseObserverProxy : public webrtc::CpuOveruseObserver {
66 public:
pbos@webrtc.org42684be2014-10-03 11:25:4567 explicit CpuOveruseObserverProxy(LoadObserver* overuse_callback)
Peter Boströmf2f82832015-05-01 11:00:4168 : overuse_callback_(overuse_callback) {
pbos@webrtc.org2b4ce3a2015-03-23 13:12:2469 DCHECK(overuse_callback != nullptr);
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:0770 }
71
72 virtual ~CpuOveruseObserverProxy() {}
73
kjellander@webrtc.org14665ff2015-03-04 12:58:3574 void OveruseDetected() override {
Peter Boströmf2f82832015-05-01 11:00:4175 rtc::CritScope lock(&crit_);
pbos@webrtc.org42684be2014-10-03 11:25:4576 overuse_callback_->OnLoadUpdate(LoadObserver::kOveruse);
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:0777 }
78
kjellander@webrtc.org14665ff2015-03-04 12:58:3579 void NormalUsage() override {
Peter Boströmf2f82832015-05-01 11:00:4180 rtc::CritScope lock(&crit_);
pbos@webrtc.org42684be2014-10-03 11:25:4581 overuse_callback_->OnLoadUpdate(LoadObserver::kUnderuse);
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:0782 }
83
84 private:
Peter Boströmf2f82832015-05-01 11:00:4185 rtc::CriticalSection crit_;
pbos@webrtc.org42684be2014-10-03 11:25:4586 LoadObserver* overuse_callback_ GUARDED_BY(crit_);
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:0787};
88
pbos@webrtc.org16e03b72013-10-28 16:32:0189class Call : public webrtc::Call, public PacketReceiver {
90 public:
Peter Boström45553ae2015-05-08 11:54:3891 explicit Call(const Call::Config& config);
pbos@webrtc.org16e03b72013-10-28 16:32:0192 virtual ~Call();
93
kjellander@webrtc.org14665ff2015-03-04 12:58:3594 PacketReceiver* Receiver() override;
pbos@webrtc.org16e03b72013-10-28 16:32:0195
Fredrik Solenberg23fba1f2015-04-29 13:24:0196 webrtc::AudioReceiveStream* CreateAudioReceiveStream(
97 const webrtc::AudioReceiveStream::Config& config) override;
98 void DestroyAudioReceiveStream(
99 webrtc::AudioReceiveStream* receive_stream) override;
pbos@webrtc.org16e03b72013-10-28 16:32:01100
Fredrik Solenberg23fba1f2015-04-29 13:24:01101 webrtc::VideoSendStream* CreateVideoSendStream(
102 const webrtc::VideoSendStream::Config& config,
103 const VideoEncoderConfig& encoder_config) override;
kjellander@webrtc.org14665ff2015-03-04 12:58:35104 void DestroyVideoSendStream(webrtc::VideoSendStream* send_stream) override;
pbos@webrtc.org16e03b72013-10-28 16:32:01105
Fredrik Solenberg23fba1f2015-04-29 13:24:01106 webrtc::VideoReceiveStream* CreateVideoReceiveStream(
107 const webrtc::VideoReceiveStream::Config& config) override;
kjellander@webrtc.org14665ff2015-03-04 12:58:35108 void DestroyVideoReceiveStream(
109 webrtc::VideoReceiveStream* receive_stream) override;
pbos@webrtc.org16e03b72013-10-28 16:32:01110
kjellander@webrtc.org14665ff2015-03-04 12:58:35111 Stats GetStats() const override;
pbos@webrtc.org16e03b72013-10-28 16:32:01112
Fredrik Solenberg23fba1f2015-04-29 13:24:01113 DeliveryStatus DeliverPacket(MediaType media_type, const uint8_t* packet,
114 size_t length) override;
pbos@webrtc.org16e03b72013-10-28 16:32:01115
kjellander@webrtc.org14665ff2015-03-04 12:58:35116 void SetBitrateConfig(
117 const webrtc::Call::Config::BitrateConfig& bitrate_config) override;
118 void SignalNetworkState(NetworkState state) override;
pbos@webrtc.org26c0c412014-09-03 16:17:12119
pbos@webrtc.org16e03b72013-10-28 16:32:01120 private:
Fredrik Solenberg23fba1f2015-04-29 13:24:01121 DeliveryStatus DeliverRtcp(MediaType media_type, const uint8_t* packet,
122 size_t length);
123 DeliveryStatus DeliverRtp(MediaType media_type, const uint8_t* packet,
124 size_t length);
pbos@webrtc.org16e03b72013-10-28 16:32:01125
Peter Boström45553ae2015-05-08 11:54:38126 void SetBitrateControllerConfig(
127 const webrtc::Call::Config::BitrateConfig& bitrate_config);
128
129 const int num_cpu_cores_;
130 const rtc::scoped_ptr<ProcessThread> module_process_thread_;
131 const rtc::scoped_ptr<ChannelGroup> channel_group_;
132 const int base_channel_id_;
133 volatile int next_channel_id_;
pbos@webrtc.org16e03b72013-10-28 16:32:01134 Call::Config config_;
135
pbos@webrtc.org26c0c412014-09-03 16:17:12136 // Needs to be held while write-locking |receive_crit_| or |send_crit_|. This
137 // ensures that we have a consistent network state signalled to all senders
138 // and receivers.
Peter Boströmf2f82832015-05-01 11:00:41139 rtc::CriticalSection network_enabled_crit_;
pbos@webrtc.org26c0c412014-09-03 16:17:12140 bool network_enabled_ GUARDED_BY(network_enabled_crit_);
pbos@webrtc.org16e03b72013-10-28 16:32:01141
kwiberg@webrtc.org00b8f6b2015-02-26 14:34:55142 rtc::scoped_ptr<RWLockWrapper> receive_crit_;
Fredrik Solenberg23fba1f2015-04-29 13:24:01143 std::map<uint32_t, AudioReceiveStream*> audio_receive_ssrcs_
pbos@webrtc.org26c0c412014-09-03 16:17:12144 GUARDED_BY(receive_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01145 std::map<uint32_t, VideoReceiveStream*> video_receive_ssrcs_
146 GUARDED_BY(receive_crit_);
147 std::set<VideoReceiveStream*> video_receive_streams_
148 GUARDED_BY(receive_crit_);
pbos@webrtc.org26c0c412014-09-03 16:17:12149
kwiberg@webrtc.org00b8f6b2015-02-26 14:34:55150 rtc::scoped_ptr<RWLockWrapper> send_crit_;
Fredrik Solenberg23fba1f2015-04-29 13:24:01151 std::map<uint32_t, VideoSendStream*> video_send_ssrcs_ GUARDED_BY(send_crit_);
152 std::set<VideoSendStream*> video_send_streams_ GUARDED_BY(send_crit_);
pbos@webrtc.org16e03b72013-10-28 16:32:01153
kwiberg@webrtc.org00b8f6b2015-02-26 14:34:55154 rtc::scoped_ptr<CpuOveruseObserverProxy> overuse_observer_proxy_;
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:07155
Fredrik Solenberg23fba1f2015-04-29 13:24:01156 VideoSendStream::RtpStateMap suspended_video_send_ssrcs_;
pbos@webrtc.org2bb1bda2014-07-07 13:06:48157
pbos@webrtc.org16e03b72013-10-28 16:32:01158 DISALLOW_COPY_AND_ASSIGN(Call);
159};
pbos@webrtc.orgc49d5b72013-12-05 12:11:47160} // namespace internal
pbos@webrtc.orgfd39e132013-08-14 13:52:52161
stefan@webrtc.org7e9315b2013-12-04 10:24:26162Call* Call::Create(const Call::Config& config) {
Peter Boström45553ae2015-05-08 11:54:38163 return new internal::Call(config);
pbos@webrtc.orgfd39e132013-08-14 13:52:52164}
pbos@webrtc.orgfd39e132013-08-14 13:52:52165
pbos@webrtc.org29d58392013-05-16 12:08:03166namespace internal {
167
Peter Boström45553ae2015-05-08 11:54:38168Call::Call(const Call::Config& config)
169 : num_cpu_cores_(CpuInfo::DetectNumberOfCores()),
170 module_process_thread_(ProcessThread::Create()),
171 channel_group_(new ChannelGroup(module_process_thread_.get(), nullptr)),
172 base_channel_id_(0),
173 next_channel_id_(base_channel_id_ + 1),
174 config_(config),
pbos@webrtc.org26c0c412014-09-03 16:17:12175 network_enabled_(true),
176 receive_crit_(RWLockWrapper::CreateRWLock()),
Peter Boström45553ae2015-05-08 11:54:38177 send_crit_(RWLockWrapper::CreateRWLock()) {
pbos@webrtc.org2b4ce3a2015-03-23 13:12:24178 DCHECK(config.send_transport != nullptr);
pbos@webrtc.org29d58392013-05-16 12:08:03179
Stefan Holmere5904162015-03-26 10:11:06180 DCHECK_GE(config.bitrate_config.min_bitrate_bps, 0);
181 DCHECK_GE(config.bitrate_config.start_bitrate_bps,
182 config.bitrate_config.min_bitrate_bps);
183 if (config.bitrate_config.max_bitrate_bps != -1) {
184 DCHECK_GE(config.bitrate_config.max_bitrate_bps,
185 config.bitrate_config.start_bitrate_bps);
pbos@webrtc.org00873182014-11-25 14:03:34186 }
187
Peter Boström45553ae2015-05-08 11:54:38188 Trace::CreateTrace();
189 module_process_thread_->Start();
190
191 // TODO(pbos): Remove base channel when CreateReceiveChannel no longer
192 // requires one.
193 CHECK(channel_group_->CreateSendChannel(base_channel_id_, 0, num_cpu_cores_,
194 true));
195
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:07196 if (config.overuse_callback) {
197 overuse_observer_proxy_.reset(
198 new CpuOveruseObserverProxy(config.overuse_callback));
199 }
200
Peter Boström45553ae2015-05-08 11:54:38201 SetBitrateControllerConfig(config_.bitrate_config);
pbos@webrtc.org29d58392013-05-16 12:08:03202}
203
pbos@webrtc.org841c8a42013-09-09 15:04:25204Call::~Call() {
Fredrik Solenberg23fba1f2015-04-29 13:24:01205 CHECK_EQ(0u, video_send_ssrcs_.size());
206 CHECK_EQ(0u, video_send_streams_.size());
207 CHECK_EQ(0u, audio_receive_ssrcs_.size());
208 CHECK_EQ(0u, video_receive_ssrcs_.size());
209 CHECK_EQ(0u, video_receive_streams_.size());
pbos@webrtc.org9e4e5242015-02-12 10:48:23210
Peter Boström45553ae2015-05-08 11:54:38211 channel_group_->DeleteChannel(base_channel_id_);
212 module_process_thread_->Stop();
213 Trace::ReturnTrace();
pbos@webrtc.org29d58392013-05-16 12:08:03214}
215
pbos@webrtc.org841c8a42013-09-09 15:04:25216PacketReceiver* Call::Receiver() { return this; }
pbos@webrtc.org29d58392013-05-16 12:08:03217
Fredrik Solenberg23fba1f2015-04-29 13:24:01218webrtc::AudioReceiveStream* Call::CreateAudioReceiveStream(
219 const webrtc::AudioReceiveStream::Config& config) {
220 TRACE_EVENT0("webrtc", "Call::CreateAudioReceiveStream");
221 LOG(LS_INFO) << "CreateAudioReceiveStream: " << config.ToString();
222 AudioReceiveStream* receive_stream = new AudioReceiveStream(
223 channel_group_->GetRemoteBitrateEstimator(), config);
224 {
225 WriteLockScoped write_lock(*receive_crit_);
226 DCHECK(audio_receive_ssrcs_.find(config.rtp.remote_ssrc) ==
227 audio_receive_ssrcs_.end());
228 audio_receive_ssrcs_[config.rtp.remote_ssrc] = receive_stream;
229 }
230 return receive_stream;
231}
232
233void Call::DestroyAudioReceiveStream(
234 webrtc::AudioReceiveStream* receive_stream) {
235 TRACE_EVENT0("webrtc", "Call::DestroyAudioReceiveStream");
236 DCHECK(receive_stream != nullptr);
237 AudioReceiveStream* audio_receive_stream =
238 static_cast<AudioReceiveStream*>(receive_stream);
239 {
240 WriteLockScoped write_lock(*receive_crit_);
241 size_t num_deleted = audio_receive_ssrcs_.erase(
242 audio_receive_stream->config().rtp.remote_ssrc);
243 DCHECK(num_deleted == 1);
244 }
245 delete audio_receive_stream;
246}
247
248webrtc::VideoSendStream* Call::CreateVideoSendStream(
249 const webrtc::VideoSendStream::Config& config,
pbos@webrtc.orgbbe0a852014-09-19 12:30:25250 const VideoEncoderConfig& encoder_config) {
pbos@webrtc.org50fe3592015-01-29 12:33:07251 TRACE_EVENT0("webrtc", "Call::CreateVideoSendStream");
pbos@webrtc.org32e85282015-01-15 10:09:39252 LOG(LS_INFO) << "CreateVideoSendStream: " << config.ToString();
pbos@webrtc.org2b4ce3a2015-03-23 13:12:24253 DCHECK(!config.rtp.ssrcs.empty());
pbos@webrtc.org1819fd72013-06-10 13:48:26254
mflodman@webrtc.orgeb16b812014-06-16 08:57:39255 // TODO(mflodman): Base the start bitrate on a current bandwidth estimate, if
256 // the call has already started.
Peter Boströmf16fcbe2015-04-30 10:16:05257 VideoSendStream* send_stream = new VideoSendStream(
Peter Boström45553ae2015-05-08 11:54:38258 config_.send_transport, overuse_observer_proxy_.get(), num_cpu_cores_,
259 module_process_thread_.get(), channel_group_.get(),
260 rtc::AtomicOps::Increment(&next_channel_id_), config, encoder_config,
261 suspended_video_send_ssrcs_);
pbos@webrtc.org1819fd72013-06-10 13:48:26262
pbos@webrtc.org26c0c412014-09-03 16:17:12263 // This needs to be taken before send_crit_ as both locks need to be held
264 // while changing network state.
Peter Boströmf2f82832015-05-01 11:00:41265 rtc::CritScope lock(&network_enabled_crit_);
pbos@webrtc.org26c0c412014-09-03 16:17:12266 WriteLockScoped write_lock(*send_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01267 for (uint32_t ssrc : config.rtp.ssrcs) {
268 DCHECK(video_send_ssrcs_.find(ssrc) == video_send_ssrcs_.end());
269 video_send_ssrcs_[ssrc] = send_stream;
pbos@webrtc.org29d58392013-05-16 12:08:03270 }
Fredrik Solenberg23fba1f2015-04-29 13:24:01271 video_send_streams_.insert(send_stream);
272
pbos@webrtc.org26c0c412014-09-03 16:17:12273 if (!network_enabled_)
274 send_stream->SignalNetworkState(kNetworkDown);
pbos@webrtc.org29d58392013-05-16 12:08:03275 return send_stream;
276}
277
pbos@webrtc.org2c46f8d2013-11-21 13:49:43278void Call::DestroyVideoSendStream(webrtc::VideoSendStream* send_stream) {
pbos@webrtc.org50fe3592015-01-29 12:33:07279 TRACE_EVENT0("webrtc", "Call::DestroyVideoSendStream");
pbos@webrtc.org2b4ce3a2015-03-23 13:12:24280 DCHECK(send_stream != nullptr);
pbos@webrtc.org95e51f52013-09-05 12:38:54281
pbos@webrtc.org2bb1bda2014-07-07 13:06:48282 send_stream->Stop();
283
pbos@webrtc.org2b4ce3a2015-03-23 13:12:24284 VideoSendStream* send_stream_impl = nullptr;
pbos@webrtc.org95e51f52013-09-05 12:38:54285 {
pbos@webrtc.org26c0c412014-09-03 16:17:12286 WriteLockScoped write_lock(*send_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01287 auto it = video_send_ssrcs_.begin();
288 while (it != video_send_ssrcs_.end()) {
pbos@webrtc.org95e51f52013-09-05 12:38:54289 if (it->second == static_cast<VideoSendStream*>(send_stream)) {
290 send_stream_impl = it->second;
Fredrik Solenberg23fba1f2015-04-29 13:24:01291 video_send_ssrcs_.erase(it++);
pbos@webrtc.org2bb1bda2014-07-07 13:06:48292 } else {
293 ++it;
pbos@webrtc.org95e51f52013-09-05 12:38:54294 }
295 }
Fredrik Solenberg23fba1f2015-04-29 13:24:01296 video_send_streams_.erase(send_stream_impl);
pbos@webrtc.org29d58392013-05-16 12:08:03297 }
Peter Boström9b5f96e2015-03-26 10:25:49298 CHECK(send_stream_impl != nullptr);
pbos@webrtc.org95e51f52013-09-05 12:38:54299
pbos@webrtc.org2bb1bda2014-07-07 13:06:48300 VideoSendStream::RtpStateMap rtp_state = send_stream_impl->GetRtpStates();
301
302 for (VideoSendStream::RtpStateMap::iterator it = rtp_state.begin();
303 it != rtp_state.end();
304 ++it) {
Fredrik Solenberg23fba1f2015-04-29 13:24:01305 suspended_video_send_ssrcs_[it->first] = it->second;
pbos@webrtc.org2bb1bda2014-07-07 13:06:48306 }
307
pbos@webrtc.org95e51f52013-09-05 12:38:54308 delete send_stream_impl;
pbos@webrtc.org29d58392013-05-16 12:08:03309}
310
Fredrik Solenberg23fba1f2015-04-29 13:24:01311webrtc::VideoReceiveStream* Call::CreateVideoReceiveStream(
312 const webrtc::VideoReceiveStream::Config& config) {
pbos@webrtc.org50fe3592015-01-29 12:33:07313 TRACE_EVENT0("webrtc", "Call::CreateVideoReceiveStream");
pbos@webrtc.org32e85282015-01-15 10:09:39314 LOG(LS_INFO) << "CreateVideoReceiveStream: " << config.ToString();
Peter Boströmc4188fd2015-04-24 13:16:03315 VideoReceiveStream* receive_stream = new VideoReceiveStream(
Peter Boström45553ae2015-05-08 11:54:38316 num_cpu_cores_, base_channel_id_, channel_group_.get(),
317 rtc::AtomicOps::Increment(&next_channel_id_), config,
318 config_.send_transport, config_.voice_engine);
pbos@webrtc.org29d58392013-05-16 12:08:03319
pbos@webrtc.org26c0c412014-09-03 16:17:12320 // This needs to be taken before receive_crit_ as both locks need to be held
321 // while changing network state.
Peter Boströmf2f82832015-05-01 11:00:41322 rtc::CritScope lock(&network_enabled_crit_);
pbos@webrtc.org26c0c412014-09-03 16:17:12323 WriteLockScoped write_lock(*receive_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01324 DCHECK(video_receive_ssrcs_.find(config.rtp.remote_ssrc) ==
325 video_receive_ssrcs_.end());
326 video_receive_ssrcs_[config.rtp.remote_ssrc] = receive_stream;
pbos@webrtc.orgc279a5d2014-01-24 09:30:53327 // TODO(pbos): Configure different RTX payloads per receive payload.
328 VideoReceiveStream::Config::Rtp::RtxMap::const_iterator it =
329 config.rtp.rtx.begin();
330 if (it != config.rtp.rtx.end())
Fredrik Solenberg23fba1f2015-04-29 13:24:01331 video_receive_ssrcs_[it->second.ssrc] = receive_stream;
332 video_receive_streams_.insert(receive_stream);
pbos@webrtc.orgc279a5d2014-01-24 09:30:53333
pbos@webrtc.org26c0c412014-09-03 16:17:12334 if (!network_enabled_)
335 receive_stream->SignalNetworkState(kNetworkDown);
pbos@webrtc.org29d58392013-05-16 12:08:03336 return receive_stream;
337}
338
pbos@webrtc.org2c46f8d2013-11-21 13:49:43339void Call::DestroyVideoReceiveStream(
340 webrtc::VideoReceiveStream* receive_stream) {
pbos@webrtc.org50fe3592015-01-29 12:33:07341 TRACE_EVENT0("webrtc", "Call::DestroyVideoReceiveStream");
pbos@webrtc.org2b4ce3a2015-03-23 13:12:24342 DCHECK(receive_stream != nullptr);
pbos@webrtc.org95e51f52013-09-05 12:38:54343
pbos@webrtc.org2b4ce3a2015-03-23 13:12:24344 VideoReceiveStream* receive_stream_impl = nullptr;
pbos@webrtc.org95e51f52013-09-05 12:38:54345 {
pbos@webrtc.org26c0c412014-09-03 16:17:12346 WriteLockScoped write_lock(*receive_crit_);
pbos@webrtc.orgc279a5d2014-01-24 09:30:53347 // Remove all ssrcs pointing to a receive stream. As RTX retransmits on a
348 // separate SSRC there can be either one or two.
Fredrik Solenberg23fba1f2015-04-29 13:24:01349 auto it = video_receive_ssrcs_.begin();
350 while (it != video_receive_ssrcs_.end()) {
pbos@webrtc.org95e51f52013-09-05 12:38:54351 if (it->second == static_cast<VideoReceiveStream*>(receive_stream)) {
pbos@webrtc.org2b4ce3a2015-03-23 13:12:24352 if (receive_stream_impl != nullptr)
353 DCHECK(receive_stream_impl == it->second);
pbos@webrtc.org95e51f52013-09-05 12:38:54354 receive_stream_impl = it->second;
Fredrik Solenberg23fba1f2015-04-29 13:24:01355 video_receive_ssrcs_.erase(it++);
pbos@webrtc.orgc279a5d2014-01-24 09:30:53356 } else {
357 ++it;
pbos@webrtc.org95e51f52013-09-05 12:38:54358 }
359 }
Fredrik Solenberg23fba1f2015-04-29 13:24:01360 video_receive_streams_.erase(receive_stream_impl);
pbos@webrtc.org29d58392013-05-16 12:08:03361 }
Peter Boström9b5f96e2015-03-26 10:25:49362 CHECK(receive_stream_impl != nullptr);
pbos@webrtc.org95e51f52013-09-05 12:38:54363 delete receive_stream_impl;
pbos@webrtc.org29d58392013-05-16 12:08:03364}
365
stefan@webrtc.org0bae1fa2014-11-05 14:05:29366Call::Stats Call::GetStats() const {
367 Stats stats;
Peter Boström45553ae2015-05-08 11:54:38368 // Fetch available send/receive bitrates.
stefan@webrtc.org0bae1fa2014-11-05 14:05:29369 uint32_t send_bandwidth = 0;
Peter Boström45553ae2015-05-08 11:54:38370 channel_group_->GetBitrateController()->AvailableBandwidth(&send_bandwidth);
371 std::vector<unsigned int> ssrcs;
stefan@webrtc.org0bae1fa2014-11-05 14:05:29372 uint32_t recv_bandwidth = 0;
Peter Boström45553ae2015-05-08 11:54:38373 channel_group_->GetRemoteBitrateEstimator()->LatestEstimate(&ssrcs,
374 &recv_bandwidth);
375 stats.send_bandwidth_bps = send_bandwidth;
stefan@webrtc.org0bae1fa2014-11-05 14:05:29376 stats.recv_bandwidth_bps = recv_bandwidth;
Peter Boström59d91dc2015-04-27 15:24:33377 stats.pacer_delay_ms = channel_group_->GetPacerQueuingDelayMs();
stefan@webrtc.org0bae1fa2014-11-05 14:05:29378 {
379 ReadLockScoped read_lock(*send_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01380 for (const auto& kv : video_send_ssrcs_) {
381 int rtt_ms = kv.second->GetRtt();
pbos@webrtc.org2b19f062014-12-11 13:26:09382 if (rtt_ms > 0)
383 stats.rtt_ms = rtt_ms;
stefan@webrtc.org0bae1fa2014-11-05 14:05:29384 }
385 }
386 return stats;
pbos@webrtc.org29d58392013-05-16 12:08:03387}
388
pbos@webrtc.org00873182014-11-25 14:03:34389void Call::SetBitrateConfig(
390 const webrtc::Call::Config::BitrateConfig& bitrate_config) {
pbos@webrtc.org50fe3592015-01-29 12:33:07391 TRACE_EVENT0("webrtc", "Call::SetBitrateConfig");
pbos@webrtc.org2b4ce3a2015-03-23 13:12:24392 DCHECK_GE(bitrate_config.min_bitrate_bps, 0);
393 if (bitrate_config.max_bitrate_bps != -1)
394 DCHECK_GT(bitrate_config.max_bitrate_bps, 0);
Stefan Holmere5904162015-03-26 10:11:06395 if (config_.bitrate_config.min_bitrate_bps ==
pbos@webrtc.org00873182014-11-25 14:03:34396 bitrate_config.min_bitrate_bps &&
397 (bitrate_config.start_bitrate_bps <= 0 ||
Stefan Holmere5904162015-03-26 10:11:06398 config_.bitrate_config.start_bitrate_bps ==
pbos@webrtc.org00873182014-11-25 14:03:34399 bitrate_config.start_bitrate_bps) &&
Stefan Holmere5904162015-03-26 10:11:06400 config_.bitrate_config.max_bitrate_bps ==
pbos@webrtc.org00873182014-11-25 14:03:34401 bitrate_config.max_bitrate_bps) {
402 // Nothing new to set, early abort to avoid encoder reconfigurations.
403 return;
404 }
Stefan Holmere5904162015-03-26 10:11:06405 config_.bitrate_config = bitrate_config;
Peter Boström45553ae2015-05-08 11:54:38406 SetBitrateControllerConfig(bitrate_config);
407}
408
409void Call::SetBitrateControllerConfig(
410 const webrtc::Call::Config::BitrateConfig& bitrate_config) {
411 BitrateController* bitrate_controller =
412 channel_group_->GetBitrateController();
413 if (bitrate_config.start_bitrate_bps > 0)
414 bitrate_controller->SetStartBitrate(bitrate_config.start_bitrate_bps);
415 bitrate_controller->SetMinMaxBitrate(bitrate_config.min_bitrate_bps,
416 bitrate_config.max_bitrate_bps);
pbos@webrtc.org00873182014-11-25 14:03:34417}
418
pbos@webrtc.org26c0c412014-09-03 16:17:12419void Call::SignalNetworkState(NetworkState state) {
420 // Take crit for entire function, it needs to be held while updating streams
421 // to guarantee a consistent state across streams.
Peter Boströmf2f82832015-05-01 11:00:41422 rtc::CritScope lock(&network_enabled_crit_);
pbos@webrtc.org26c0c412014-09-03 16:17:12423 network_enabled_ = state == kNetworkUp;
424 {
425 ReadLockScoped write_lock(*send_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01426 for (auto& kv : video_send_ssrcs_) {
427 kv.second->SignalNetworkState(state);
pbos@webrtc.org26c0c412014-09-03 16:17:12428 }
429 }
430 {
431 ReadLockScoped write_lock(*receive_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01432 for (auto& kv : video_receive_ssrcs_) {
433 kv.second->SignalNetworkState(state);
pbos@webrtc.org26c0c412014-09-03 16:17:12434 }
435 }
436}
437
Fredrik Solenberg23fba1f2015-04-29 13:24:01438PacketReceiver::DeliveryStatus Call::DeliverRtcp(MediaType media_type,
439 const uint8_t* packet,
440 size_t length) {
pbos@webrtc.org29d58392013-05-16 12:08:03441 // TODO(pbos): Figure out what channel needs it actually.
442 // Do NOT broadcast! Also make sure it's a valid packet.
pbos@webrtc.orgcaba2d22014-05-14 13:57:12443 // Return DELIVERY_UNKNOWN_SSRC if it can be determined that
444 // there's no receiver of the packet.
pbos@webrtc.org29d58392013-05-16 12:08:03445 bool rtcp_delivered = false;
Fredrik Solenberg23fba1f2015-04-29 13:24:01446 if (media_type == MediaType::ANY || media_type == MediaType::VIDEO) {
pbos@webrtc.org26c0c412014-09-03 16:17:12447 ReadLockScoped read_lock(*receive_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01448 for (VideoReceiveStream* stream : video_receive_streams_) {
Peter Boström3f4eed02015-04-16 13:59:43449 if (stream->DeliverRtcp(packet, length))
pbos@webrtc.org40523702013-08-05 12:49:22450 rtcp_delivered = true;
pbos@webrtc.orgbbb07e62013-08-05 12:01:36451 }
452 }
Fredrik Solenberg23fba1f2015-04-29 13:24:01453 if (media_type == MediaType::ANY || media_type == MediaType::VIDEO) {
pbos@webrtc.org26c0c412014-09-03 16:17:12454 ReadLockScoped read_lock(*send_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01455 for (VideoSendStream* stream : video_send_streams_) {
Peter Boström74b97692015-04-14 11:31:46456 if (stream->DeliverRtcp(packet, length))
pbos@webrtc.org40523702013-08-05 12:49:22457 rtcp_delivered = true;
pbos@webrtc.org29d58392013-05-16 12:08:03458 }
459 }
pbos@webrtc.orgcaba2d22014-05-14 13:57:12460 return rtcp_delivered ? DELIVERY_OK : DELIVERY_PACKET_ERROR;
pbos@webrtc.org29d58392013-05-16 12:08:03461}
462
Fredrik Solenberg23fba1f2015-04-29 13:24:01463PacketReceiver::DeliveryStatus Call::DeliverRtp(MediaType media_type,
464 const uint8_t* packet,
pbos@webrtc.orgaf38f4e2014-07-08 07:38:12465 size_t length) {
466 // Minimum RTP header size.
467 if (length < 12)
468 return DELIVERY_PACKET_ERROR;
469
sprang@webrtc.org2a6558c2015-01-28 12:37:36470 uint32_t ssrc = ByteReader<uint32_t>::ReadBigEndian(&packet[8]);
pbos@webrtc.orgaf38f4e2014-07-08 07:38:12471
pbos@webrtc.org26c0c412014-09-03 16:17:12472 ReadLockScoped read_lock(*receive_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01473 if (media_type == MediaType::ANY || media_type == MediaType::AUDIO) {
474 auto it = audio_receive_ssrcs_.find(ssrc);
475 if (it != audio_receive_ssrcs_.end()) {
476 return it->second->DeliverRtp(packet, length) ? DELIVERY_OK
477 : DELIVERY_PACKET_ERROR;
478 }
479 }
480 if (media_type == MediaType::ANY || media_type == MediaType::VIDEO) {
481 auto it = video_receive_ssrcs_.find(ssrc);
482 if (it != video_receive_ssrcs_.end()) {
483 return it->second->DeliverRtp(packet, length) ? DELIVERY_OK
484 : DELIVERY_PACKET_ERROR;
485 }
486 }
487 return DELIVERY_UNKNOWN_SSRC;
pbos@webrtc.org29d58392013-05-16 12:08:03488}
489
Fredrik Solenberg23fba1f2015-04-29 13:24:01490PacketReceiver::DeliveryStatus Call::DeliverPacket(MediaType media_type,
491 const uint8_t* packet,
pbos@webrtc.orgaf38f4e2014-07-08 07:38:12492 size_t length) {
pbos@webrtc.org62bafae2014-07-08 12:10:51493 if (RtpHeaderParser::IsRtcp(packet, length))
Fredrik Solenberg23fba1f2015-04-29 13:24:01494 return DeliverRtcp(media_type, packet, length);
pbos@webrtc.org29d58392013-05-16 12:08:03495
Fredrik Solenberg23fba1f2015-04-29 13:24:01496 return DeliverRtp(media_type, packet, length);
pbos@webrtc.org29d58392013-05-16 12:08:03497}
498
499} // namespace internal
500} // namespace webrtc