blob: 38a4dd5a6d8e4353d86b08334ee936d6bb42ab74 [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>
mflodman101f2502016-06-09 15:21:1912#include <algorithm>
pbos@webrtc.org29d58392013-05-16 12:08:0313#include <map>
kwibergb25345e2016-03-12 14:10:4414#include <memory>
ossuf515ab82016-12-07 12:52:5815#include <set>
brandtr25445d32016-10-24 06:37:1416#include <utility>
pbos@webrtc.org29d58392013-05-16 12:08:0317#include <vector>
18
Karl Wiberg918f50c2018-07-05 09:40:3319#include "absl/memory/memory.h"
Danil Chapovalovb9b146c2018-06-15 10:28:0720#include "absl/types/optional.h"
Sebastian Jansson74682c12019-03-01 10:50:2021#include "api/task_queue/global_task_queue_factory.h"
Sebastian Janssonc6c44262018-05-09 08:33:3922#include "api/transport/network_control.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3123#include "audio/audio_receive_stream.h"
24#include "audio/audio_send_stream.h"
25#include "audio/audio_state.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3126#include "call/bitrate_allocator.h"
27#include "call/call.h"
28#include "call/flexfec_receive_stream_impl.h"
Sebastian Janssonb34556e2018-03-21 13:38:3229#include "call/receive_time_calculator.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3130#include "call/rtp_stream_receiver_controller.h"
31#include "call/rtp_transport_controller_send.h"
Elad Alon4a87e1c2017-10-03 14:11:3432#include "logging/rtc_event_log/events/rtc_event_audio_receive_stream_config.h"
Elad Alon4a87e1c2017-10-03 14:11:3433#include "logging/rtc_event_log/events/rtc_event_rtcp_packet_incoming.h"
34#include "logging/rtc_event_log/events/rtc_event_rtp_packet_incoming.h"
35#include "logging/rtc_event_log/events/rtc_event_video_receive_stream_config.h"
36#include "logging/rtc_event_log/events/rtc_event_video_send_stream_config.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3137#include "logging/rtc_event_log/rtc_event_log.h"
Elad Alon99a81b62017-09-21 08:25:2938#include "logging/rtc_event_log/rtc_stream_config.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3139#include "modules/bitrate_controller/include/bitrate_controller.h"
40#include "modules/congestion_controller/include/receive_side_congestion_controller.h"
41#include "modules/rtp_rtcp/include/flexfec_receiver.h"
42#include "modules/rtp_rtcp/include/rtp_header_extension_map.h"
43#include "modules/rtp_rtcp/include/rtp_header_parser.h"
44#include "modules/rtp_rtcp/source/byte_io.h"
45#include "modules/rtp_rtcp/source/rtp_packet_received.h"
46#include "modules/utility/include/process_thread.h"
Ying Wang3b790f32018-01-19 16:58:5747#include "modules/video_coding/fec_controller_default.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3148#include "rtc_base/checks.h"
Steve Anton10542f22019-01-11 17:11:0049#include "rtc_base/constructor_magic.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3150#include "rtc_base/location.h"
51#include "rtc_base/logging.h"
Sebastian Jansson19704ec2018-03-12 14:59:1252#include "rtc_base/numerics/safe_minmax.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3153#include "rtc_base/sequenced_task_checker.h"
Jonas Olsson0a713b62018-04-04 13:49:3254#include "rtc_base/strings/string_builder.h"
Sebastian Janssonc6c44262018-05-09 08:33:3955#include "rtc_base/synchronization/rw_lock_wrapper.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3156#include "rtc_base/thread_annotations.h"
Steve Anton10542f22019-01-11 17:11:0057#include "rtc_base/time_utils.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3158#include "rtc_base/trace_event.h"
59#include "system_wrappers/include/clock.h"
60#include "system_wrappers/include/cpu_info.h"
Jonas Oreland6d835922019-03-18 09:59:4061#include "system_wrappers/include/field_trial.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3162#include "system_wrappers/include/metrics.h"
Mirko Bonadei92ea95e2017-09-15 04:47:3163#include "video/call_stats.h"
64#include "video/send_delay_stats.h"
65#include "video/stats_counter.h"
66#include "video/video_receive_stream.h"
67#include "video/video_send_stream.h"
pbos@webrtc.org29d58392013-05-16 12:08:0368
69namespace webrtc {
pbos@webrtc.orgab990ae2014-09-17 09:02:2570
nisse4709e892017-02-07 09:18:4371namespace {
Johannes Kronf59666b2019-04-08 10:57:0672bool SendPeriodicFeedback(const std::vector<RtpExtension>& extensions) {
Johannes Kron7ff164e2019-02-07 11:50:1873 for (const auto& extension : extensions) {
74 if (extension.uri == RtpExtension::kTransportSequenceNumberV2Uri)
Johannes Kronf59666b2019-04-08 10:57:0675 return false;
Johannes Kron7ff164e2019-02-07 11:50:1876 }
Johannes Kronf59666b2019-04-08 10:57:0677 return true;
Johannes Kron7ff164e2019-02-07 11:50:1878}
79
nisse4709e892017-02-07 09:18:4380// TODO(nisse): This really begs for a shared context struct.
81bool UseSendSideBwe(const std::vector<RtpExtension>& extensions,
82 bool transport_cc) {
83 if (!transport_cc)
84 return false;
85 for (const auto& extension : extensions) {
Johannes Kron7ff164e2019-02-07 11:50:1886 if (extension.uri == RtpExtension::kTransportSequenceNumberUri ||
87 extension.uri == RtpExtension::kTransportSequenceNumberV2Uri)
nisse4709e892017-02-07 09:18:4388 return true;
89 }
90 return false;
91}
92
93bool UseSendSideBwe(const VideoReceiveStream::Config& config) {
94 return UseSendSideBwe(config.rtp.extensions, config.rtp.transport_cc);
95}
96
97bool UseSendSideBwe(const AudioReceiveStream::Config& config) {
98 return UseSendSideBwe(config.rtp.extensions, config.rtp.transport_cc);
99}
100
101bool UseSendSideBwe(const FlexfecReceiveStream::Config& config) {
102 return UseSendSideBwe(config.rtp_header_extensions, config.transport_cc);
103}
104
nisse26e3abb2017-08-25 11:44:25105const int* FindKeyByValue(const std::map<int, int>& m, int v) {
106 for (const auto& kv : m) {
107 if (kv.second == v)
108 return &kv.first;
109 }
110 return nullptr;
111}
112
eladalon8ec568a2017-09-08 13:15:52113std::unique_ptr<rtclog::StreamConfig> CreateRtcLogStreamConfig(
perkj09e71da2017-05-22 10:26:49114 const VideoReceiveStream::Config& config) {
Karl Wiberg918f50c2018-07-05 09:40:33115 auto rtclog_config = absl::make_unique<rtclog::StreamConfig>();
eladalon8ec568a2017-09-08 13:15:52116 rtclog_config->remote_ssrc = config.rtp.remote_ssrc;
117 rtclog_config->local_ssrc = config.rtp.local_ssrc;
118 rtclog_config->rtx_ssrc = config.rtp.rtx_ssrc;
119 rtclog_config->rtcp_mode = config.rtp.rtcp_mode;
120 rtclog_config->remb = config.rtp.remb;
121 rtclog_config->rtp_extensions = config.rtp.extensions;
perkj09e71da2017-05-22 10:26:49122
123 for (const auto& d : config.decoders) {
nisse26e3abb2017-08-25 11:44:25124 const int* search =
125 FindKeyByValue(config.rtp.rtx_associated_payload_types, d.payload_type);
Niels Möllercb7e1d22018-09-11 13:56:04126 rtclog_config->codecs.emplace_back(d.video_format.name, d.payload_type,
Yves Gerey665174f2018-06-19 13:03:05127 search ? *search : 0);
perkj09e71da2017-05-22 10:26:49128 }
129 return rtclog_config;
130}
131
eladalon8ec568a2017-09-08 13:15:52132std::unique_ptr<rtclog::StreamConfig> CreateRtcLogStreamConfig(
perkjc0876aa2017-05-22 11:08:28133 const VideoSendStream::Config& config,
134 size_t ssrc_index) {
Karl Wiberg918f50c2018-07-05 09:40:33135 auto rtclog_config = absl::make_unique<rtclog::StreamConfig>();
eladalon8ec568a2017-09-08 13:15:52136 rtclog_config->local_ssrc = config.rtp.ssrcs[ssrc_index];
perkjc0876aa2017-05-22 11:08:28137 if (ssrc_index < config.rtp.rtx.ssrcs.size()) {
eladalon8ec568a2017-09-08 13:15:52138 rtclog_config->rtx_ssrc = config.rtp.rtx.ssrcs[ssrc_index];
perkjc0876aa2017-05-22 11:08:28139 }
eladalon8ec568a2017-09-08 13:15:52140 rtclog_config->rtcp_mode = config.rtp.rtcp_mode;
141 rtclog_config->rtp_extensions = config.rtp.extensions;
perkjc0876aa2017-05-22 11:08:28142
Niels Möller259a4972018-04-05 13:36:51143 rtclog_config->codecs.emplace_back(config.rtp.payload_name,
144 config.rtp.payload_type,
eladalon8ec568a2017-09-08 13:15:52145 config.rtp.rtx.payload_type);
perkjc0876aa2017-05-22 11:08:28146 return rtclog_config;
147}
148
eladalon8ec568a2017-09-08 13:15:52149std::unique_ptr<rtclog::StreamConfig> CreateRtcLogStreamConfig(
perkjac8f52d2017-05-22 16:36:28150 const AudioReceiveStream::Config& config) {
Karl Wiberg918f50c2018-07-05 09:40:33151 auto rtclog_config = absl::make_unique<rtclog::StreamConfig>();
eladalon8ec568a2017-09-08 13:15:52152 rtclog_config->remote_ssrc = config.rtp.remote_ssrc;
153 rtclog_config->local_ssrc = config.rtp.local_ssrc;
154 rtclog_config->rtp_extensions = config.rtp.extensions;
perkjac8f52d2017-05-22 16:36:28155 return rtclog_config;
156}
157
nisse4709e892017-02-07 09:18:43158} // namespace
159
pbos@webrtc.org16e03b72013-10-28 16:32:01160namespace internal {
asapersson@webrtc.orgbdc5ed22014-01-31 10:05:07161
Sebastian Janssone6256052018-05-04 12:08:15162class Call final : public webrtc::Call,
163 public PacketReceiver,
164 public RecoveredPacketReceiver,
165 public TargetTransferRateObserver,
166 public BitrateAllocator::LimitObserver {
pbos@webrtc.org16e03b72013-10-28 16:32:01167 public:
Sebastian Jansson4e5f5ed2019-03-01 17:13:27168 Call(Clock* clock,
169 const Call::Config& config,
Sebastian Jansson896b47c2019-03-01 17:48:16170 std::unique_ptr<RtpTransportControllerSendInterface> transport_send,
171 std::unique_ptr<ProcessThread> module_process_thread,
172 TaskQueueFactory* task_queue_factory);
Mirko Bonadei8fdcac32018-08-28 14:30:18173 ~Call() override;
pbos@webrtc.org16e03b72013-10-28 16:32:01174
brandtr25445d32016-10-24 06:37:14175 // Implements webrtc::Call.
kjellander@webrtc.org14665ff2015-03-04 12:58:35176 PacketReceiver* Receiver() override;
pbos@webrtc.org16e03b72013-10-28 16:32:01177
Fredrik Solenberg04f49312015-06-08 11:04:56178 webrtc::AudioSendStream* CreateAudioSendStream(
179 const webrtc::AudioSendStream::Config& config) override;
180 void DestroyAudioSendStream(webrtc::AudioSendStream* send_stream) override;
181
Fredrik Solenberg23fba1f2015-04-29 13:24:01182 webrtc::AudioReceiveStream* CreateAudioReceiveStream(
183 const webrtc::AudioReceiveStream::Config& config) override;
184 void DestroyAudioReceiveStream(
185 webrtc::AudioReceiveStream* receive_stream) override;
pbos@webrtc.org16e03b72013-10-28 16:32:01186
Fredrik Solenberg23fba1f2015-04-29 13:24:01187 webrtc::VideoSendStream* CreateVideoSendStream(
perkj26091b12016-09-01 08:17:40188 webrtc::VideoSendStream::Config config,
189 VideoEncoderConfig encoder_config) override;
Ying Wang3b790f32018-01-19 16:58:57190 webrtc::VideoSendStream* CreateVideoSendStream(
191 webrtc::VideoSendStream::Config config,
192 VideoEncoderConfig encoder_config,
193 std::unique_ptr<FecController> fec_controller) override;
kjellander@webrtc.org14665ff2015-03-04 12:58:35194 void DestroyVideoSendStream(webrtc::VideoSendStream* send_stream) override;
pbos@webrtc.org16e03b72013-10-28 16:32:01195
Fredrik Solenberg23fba1f2015-04-29 13:24:01196 webrtc::VideoReceiveStream* CreateVideoReceiveStream(
Tommi733b5472016-06-10 15:58:01197 webrtc::VideoReceiveStream::Config configuration) override;
kjellander@webrtc.org14665ff2015-03-04 12:58:35198 void DestroyVideoReceiveStream(
199 webrtc::VideoReceiveStream* receive_stream) override;
pbos@webrtc.org16e03b72013-10-28 16:32:01200
brandtr7250b392016-12-19 09:13:46201 FlexfecReceiveStream* CreateFlexfecReceiveStream(
202 const FlexfecReceiveStream::Config& config) override;
brandtr25445d32016-10-24 06:37:14203 void DestroyFlexfecReceiveStream(
brandtr7250b392016-12-19 09:13:46204 FlexfecReceiveStream* receive_stream) override;
brandtr25445d32016-10-24 06:37:14205
Sebastian Jansson8f83b422018-02-21 12:07:13206 RtpTransportControllerSendInterface* GetTransportControllerSend() override;
207
kjellander@webrtc.org14665ff2015-03-04 12:58:35208 Stats GetStats() const override;
pbos@webrtc.org16e03b72013-10-28 16:32:01209
brandtr25445d32016-10-24 06:37:14210 // Implements PacketReceiver.
stefan68786d22015-09-08 12:36:15211 DeliveryStatus DeliverPacket(MediaType media_type,
Danil Chapovalov292a73e2017-12-07 16:00:40212 rtc::CopyOnWriteBuffer packet,
Niels Möller70082872018-08-07 09:03:12213 int64_t packet_time_us) override;
pbos@webrtc.org16e03b72013-10-28 16:32:01214
brandtr4e523862016-10-19 06:50:45215 // Implements RecoveredPacketReceiver.
nissed2ef3142017-05-11 15:00:58216 void OnRecoveredPacket(const uint8_t* packet, size_t length) override;
brandtr4e523862016-10-19 06:50:45217
Alex Narest78609d52017-10-20 08:37:47218 void SetBitrateAllocationStrategy(
219 std::unique_ptr<rtc::BitrateAllocationStrategy>
220 bitrate_allocation_strategy) override;
221
skvlad7a43d252016-03-22 22:32:27222 void SignalChannelNetworkState(MediaType media, NetworkState state) override;
pbos@webrtc.org26c0c412014-09-03 16:17:12223
Stefan Holmer64be7fa2018-10-04 13:21:55224 void OnAudioTransportOverheadChanged(
225 int transport_overhead_per_packet) override;
michaelt79e05882016-11-08 10:50:09226
stefanc1aeaf02015-10-15 14:26:07227 void OnSentPacket(const rtc::SentPacket& sent_packet) override;
228
Sebastian Jansson19704ec2018-03-12 14:59:12229 // Implements TargetTransferRateObserver,
230 void OnTargetTransferRate(TargetTransferRate msg) override;
Sebastian Jansson2701bc92018-12-11 14:02:47231 void OnStartRateUpdate(DataRate start_rate) override;
mflodman0e7e2592015-11-13 05:02:42232
perkj71ee44c2016-06-15 07:47:53233 // Implements BitrateAllocator::LimitObserver.
234 void OnAllocationLimitsChanged(uint32_t min_send_bitrate_bps,
philipelf69e7682018-02-28 12:06:28235 uint32_t max_padding_bitrate_bps,
Sebastian Jansson79f0d4d2019-01-23 08:41:43236 uint32_t total_bitrate_bps) override;
perkj71ee44c2016-06-15 07:47:53237
Piotr (Peter) Slatalacc8e8bb2018-11-15 16:26:19238 // This method is invoked when the media transport is created and when the
239 // media transport is being destructed.
240 // We only allow one media transport per connection.
241 //
242 // It should be called with non-null argument at most once, and if it was
243 // called with non-null argument, it has to be called with a null argument
244 // at least once after that.
245 void MediaTransportChange(MediaTransportInterface* media_transport) override;
246
Piotr (Peter) Slatala7fbfaa42019-03-18 17:31:54247 void SetClientBitratePreferences(const BitrateSettings& preferences) override;
248
pbos@webrtc.org16e03b72013-10-28 16:32:01249 private:
Yves Gerey665174f2018-06-19 13:03:05250 DeliveryStatus DeliverRtcp(MediaType media_type,
251 const uint8_t* packet,
Fredrik Solenberg23fba1f2015-04-29 13:24:01252 size_t length);
stefan68786d22015-09-08 12:36:15253 DeliveryStatus DeliverRtp(MediaType media_type,
Danil Chapovalov292a73e2017-12-07 16:00:40254 rtc::CopyOnWriteBuffer packet,
Niels Möller70082872018-08-07 09:03:12255 int64_t packet_time_us);
pbos8fc7fa72015-07-15 15:02:58256 void ConfigureSync(const std::string& sync_group)
danilchapa37de392017-09-09 11:17:22257 RTC_EXCLUSIVE_LOCKS_REQUIRED(receive_crit_);
pbos8fc7fa72015-07-15 15:02:58258
nissed44ce052017-02-06 10:23:00259 void NotifyBweOfReceivedPacket(const RtpPacketReceived& packet,
260 MediaType media_type)
danilchapa37de392017-09-09 11:17:22261 RTC_SHARED_LOCKS_REQUIRED(receive_crit_);
nissed44ce052017-02-06 10:23:00262
asaperssonfc5e81c2017-04-20 06:28:53263 void UpdateSendHistograms(int64_t first_sent_packet_ms)
danilchapa37de392017-09-09 11:17:22264 RTC_EXCLUSIVE_LOCKS_REQUIRED(&bitrate_crit_);
stefan18adf0a2015-11-17 14:24:56265 void UpdateReceiveHistograms();
asapersson4374a092016-07-27 07:39:09266 void UpdateHistograms();
skvlad7a43d252016-03-22 22:32:27267 void UpdateAggregateNetworkState();
stefan91d92602015-11-11 18:13:02268
Piotr (Peter) Slatalacc8e8bb2018-11-15 16:26:19269 // If |media_transport| is not null, it registers the rate observer for the
270 // media transport.
271 void RegisterRateObserver() RTC_LOCKS_EXCLUDED(target_observer_crit_);
272
Niels Möller46879152019-01-07 14:54:47273 // Intended for DCHECKs, to avoid locking in production builds.
274 MediaTransportInterface* media_transport()
275 RTC_LOCKS_EXCLUDED(target_observer_crit_);
276
Peter Boströmd3c94472015-12-09 10:20:58277 Clock* const clock_;
Sebastian Jansson896b47c2019-03-01 17:48:16278 TaskQueueFactory* const task_queue_factory_;
stefan91d92602015-11-11 18:13:02279
Piotr (Peter) Slatala7fbfaa42019-03-18 17:31:54280 // Caching the last SetBitrate for media transport.
281 absl::optional<MediaTransportTargetRateConstraints> last_set_bitrate_
282 RTC_GUARDED_BY(&target_observer_crit_);
Peter Boström45553ae2015-05-08 11:54:38283 const int num_cpu_cores_;
kwibergb25345e2016-03-12 14:10:44284 const std::unique_ptr<ProcessThread> module_process_thread_;
kwibergb25345e2016-03-12 14:10:44285 const std::unique_ptr<CallStats> call_stats_;
286 const std::unique_ptr<BitrateAllocator> bitrate_allocator_;
pbos@webrtc.org16e03b72013-10-28 16:32:01287 Call::Config config_;
eladalonf3f5c0e2017-08-18 09:47:08288 rtc::SequencedTaskChecker configuration_sequence_checker_;
pbos@webrtc.org16e03b72013-10-28 16:32:01289
skvlad7a43d252016-03-22 22:32:27290 NetworkState audio_network_state_;
291 NetworkState video_network_state_;
Sebastian Janssona06e9192018-03-07 17:49:55292 rtc::CriticalSection aggregate_network_up_crit_;
293 bool aggregate_network_up_ RTC_GUARDED_BY(aggregate_network_up_crit_);
pbos@webrtc.org16e03b72013-10-28 16:32:01294
kwibergb25345e2016-03-12 14:10:44295 std::unique_ptr<RWLockWrapper> receive_crit_;
brandtr25445d32016-10-24 06:37:14296 // Audio, Video, and FlexFEC receive streams are owned by the client that
297 // creates them.
nissee4bcd6d2017-05-16 11:47:04298 std::set<AudioReceiveStream*> audio_receive_streams_
danilchapa37de392017-09-09 11:17:22299 RTC_GUARDED_BY(receive_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01300 std::set<VideoReceiveStream*> video_receive_streams_
danilchapa37de392017-09-09 11:17:22301 RTC_GUARDED_BY(receive_crit_);
nissee4bcd6d2017-05-16 11:47:04302
pbos8fc7fa72015-07-15 15:02:58303 std::map<std::string, AudioReceiveStream*> sync_stream_mapping_
danilchapa37de392017-09-09 11:17:22304 RTC_GUARDED_BY(receive_crit_);
pbos@webrtc.org26c0c412014-09-03 16:17:12305
nisse0f15f922017-06-21 08:05:22306 // TODO(nisse): Should eventually be injected at creation,
307 // with a single object in the bundled case.
eladalon2a2b2972017-07-03 16:25:27308 RtpStreamReceiverController audio_receiver_controller_;
309 RtpStreamReceiverController video_receiver_controller_;
nissee4bcd6d2017-05-16 11:47:04310
nissed44ce052017-02-06 10:23:00311 // This extra map is used for receive processing which is
312 // independent of media type.
313
314 // TODO(nisse): In the RTP transport refactoring, we should have a
315 // single mapping from ssrc to a more abstract receive stream, with
316 // accessor methods for all configuration we need at this level.
317 struct ReceiveRtpConfig {
Erik Språng09708512018-03-14 14:16:50318 explicit ReceiveRtpConfig(const webrtc::AudioReceiveStream::Config& config)
319 : extensions(config.rtp.extensions),
320 use_send_side_bwe(UseSendSideBwe(config)) {}
321 explicit ReceiveRtpConfig(const webrtc::VideoReceiveStream::Config& config)
322 : extensions(config.rtp.extensions),
323 use_send_side_bwe(UseSendSideBwe(config)) {}
324 explicit ReceiveRtpConfig(const FlexfecReceiveStream::Config& config)
325 : extensions(config.rtp_header_extensions),
326 use_send_side_bwe(UseSendSideBwe(config)) {}
nissed44ce052017-02-06 10:23:00327
328 // Registered RTP header extensions for each stream. Note that RTP header
329 // extensions are negotiated per track ("m= line") in the SDP, but we have
330 // no notion of tracks at the Call level. We therefore store the RTP header
331 // extensions per SSRC instead, which leads to some storage overhead.
Erik Språng09708512018-03-14 14:16:50332 const RtpHeaderExtensionMap extensions;
nisse4709e892017-02-07 09:18:43333 // Set if both RTP extension the RTCP feedback message needed for
334 // send side BWE are negotiated.
Erik Språng09708512018-03-14 14:16:50335 const bool use_send_side_bwe;
nissed44ce052017-02-06 10:23:00336 };
337 std::map<uint32_t, ReceiveRtpConfig> receive_rtp_config_
danilchapa37de392017-09-09 11:17:22338 RTC_GUARDED_BY(receive_crit_);
brandtrb29e6522016-12-21 14:37:18339
kwibergb25345e2016-03-12 14:10:44340 std::unique_ptr<RWLockWrapper> send_crit_;
solenbergc7a8b082015-10-16 21:35:07341 // Audio and Video send streams are owned by the client that creates them.
danilchapa37de392017-09-09 11:17:22342 std::map<uint32_t, AudioSendStream*> audio_send_ssrcs_
343 RTC_GUARDED_BY(send_crit_);
344 std::map<uint32_t, VideoSendStream*> video_send_ssrcs_
345 RTC_GUARDED_BY(send_crit_);
346 std::set<VideoSendStream*> video_send_streams_ RTC_GUARDED_BY(send_crit_);
pbos@webrtc.org16e03b72013-10-28 16:32:01347
ossuc3d4b482017-05-23 13:07:11348 using RtpStateMap = std::map<uint32_t, RtpState>;
349 RtpStateMap suspended_audio_send_ssrcs_
danilchapa37de392017-09-09 11:17:22350 RTC_GUARDED_BY(configuration_sequence_checker_);
ossuc3d4b482017-05-23 13:07:11351 RtpStateMap suspended_video_send_ssrcs_
danilchapa37de392017-09-09 11:17:22352 RTC_GUARDED_BY(configuration_sequence_checker_);
ossuc3d4b482017-05-23 13:07:11353
Åsa Persson4bece9a2017-10-06 08:04:04354 using RtpPayloadStateMap = std::map<uint32_t, RtpPayloadState>;
355 RtpPayloadStateMap suspended_video_payload_states_
356 RTC_GUARDED_BY(configuration_sequence_checker_);
357
skvlad11a9cbf2016-10-07 18:53:05358 webrtc::RtcEventLog* event_log_;
ivocb04965c2015-09-09 07:09:43359
stefan18adf0a2015-11-17 14:24:56360 // The following members are only accessed (exclusively) from one thread and
361 // from the destructor, and therefore doesn't need any explicit
362 // synchronization.
asapersson250fd972016-09-08 07:07:21363 RateCounter received_bytes_per_second_counter_;
364 RateCounter received_audio_bytes_per_second_counter_;
365 RateCounter received_video_bytes_per_second_counter_;
366 RateCounter received_rtcp_bytes_per_second_counter_;
Danil Chapovalovb9b146c2018-06-15 10:28:07367 absl::optional<int64_t> first_received_rtp_audio_ms_;
368 absl::optional<int64_t> last_received_rtp_audio_ms_;
369 absl::optional<int64_t> first_received_rtp_video_ms_;
370 absl::optional<int64_t> last_received_rtp_video_ms_;
stefan91d92602015-11-11 18:13:02371
Sebastian Jansson19704ec2018-03-12 14:59:12372 rtc::CriticalSection last_bandwidth_bps_crit_;
373 uint32_t last_bandwidth_bps_ RTC_GUARDED_BY(&last_bandwidth_bps_crit_);
stefan18adf0a2015-11-17 14:24:56374 // TODO(holmer): Remove this lock once BitrateController no longer calls
375 // OnNetworkChanged from multiple threads.
376 rtc::CriticalSection bitrate_crit_;
danilchapa37de392017-09-09 11:17:22377 uint32_t min_allocated_send_bitrate_bps_ RTC_GUARDED_BY(&bitrate_crit_);
378 uint32_t configured_max_padding_bitrate_bps_ RTC_GUARDED_BY(&bitrate_crit_);
379 AvgCounter estimated_send_bitrate_kbps_counter_
380 RTC_GUARDED_BY(&bitrate_crit_);
381 AvgCounter pacer_bitrate_kbps_counter_ RTC_GUARDED_BY(&bitrate_crit_);
stefan18adf0a2015-11-17 14:24:56382
nisse559af382017-03-21 13:41:12383 ReceiveSideCongestionController receive_side_cc_;
Sebastian Janssonb34556e2018-03-21 13:38:32384
385 const std::unique_ptr<ReceiveTimeCalculator> receive_time_calculator_;
386
asapersson35151f32016-05-03 06:44:01387 const std::unique_ptr<SendDelayStats> video_send_delay_stats_;
asapersson4374a092016-07-27 07:39:09388 const int64_t start_ms_;
mflodman0e7e2592015-11-13 05:02:42389
Sebastian Janssone6256052018-05-04 12:08:15390 // Caches transport_send_.get(), to avoid racing with destructor.
391 // Note that this is declared before transport_send_ to ensure that it is not
392 // invalidated until no more tasks can be running on the transport_send_ task
393 // queue.
394 RtpTransportControllerSendInterface* transport_send_ptr_;
395 // Declared last since it will issue callbacks from a task queue. Declaring it
396 // last ensures that it is destroyed first and any running tasks are finished.
397 std::unique_ptr<RtpTransportControllerSendInterface> transport_send_;
Piotr (Peter) Slatalacc8e8bb2018-11-15 16:26:19398
399 // This is a precaution, since |MediaTransportChange| is not guaranteed to be
400 // invoked on a particular thread.
401 rtc::CriticalSection target_observer_crit_;
402 bool is_target_rate_observer_registered_
403 RTC_GUARDED_BY(&target_observer_crit_) = false;
404 MediaTransportInterface* media_transport_
405 RTC_GUARDED_BY(&target_observer_crit_) = nullptr;
406
henrikg3c089d72015-09-16 12:37:44407 RTC_DISALLOW_COPY_AND_ASSIGN(Call);
pbos@webrtc.org16e03b72013-10-28 16:32:01408};
pbos@webrtc.orgc49d5b72013-12-05 12:11:47409} // namespace internal
pbos@webrtc.orgfd39e132013-08-14 13:52:52410
asapersson2e5cfcd2016-08-11 15:41:18411std::string Call::Stats::ToString(int64_t time_ms) const {
Jonas Olsson0a713b62018-04-04 13:49:32412 char buf[1024];
413 rtc::SimpleStringBuilder ss(buf);
asapersson2e5cfcd2016-08-11 15:41:18414 ss << "Call stats: " << time_ms << ", {";
415 ss << "send_bw_bps: " << send_bandwidth_bps << ", ";
416 ss << "recv_bw_bps: " << recv_bandwidth_bps << ", ";
417 ss << "max_pad_bps: " << max_padding_bitrate_bps << ", ";
418 ss << "pacer_delay_ms: " << pacer_delay_ms << ", ";
419 ss << "rtt_ms: " << rtt_ms;
420 ss << '}';
421 return ss.str();
422}
423
stefan@webrtc.org7e9315b2013-12-04 10:24:26424Call* Call::Create(const Call::Config& config) {
Danil Chapovalov359fe332019-04-01 08:46:36425 return Create(config, Clock::GetRealTimeClock(),
426 ProcessThread::Create("PacerThread"),
427 ProcessThread::Create("ModuleProcessThread"));
Sebastian Jansson896b47c2019-03-01 17:48:16428}
429
430Call* Call::Create(const Call::Config& config,
Sebastian Jansson4e5f5ed2019-03-01 17:13:27431 Clock* clock,
Sebastian Jansson896b47c2019-03-01 17:48:16432 std::unique_ptr<ProcessThread> call_thread,
Danil Chapovalov359fe332019-04-01 08:46:36433 std::unique_ptr<ProcessThread> pacer_thread) {
434 // TODO(bugs.webrtc.org/10284): DCHECK task_queue_factory dependency is
435 // always provided in the config.
436 TaskQueueFactory* task_queue_factory = config.task_queue_factory
437 ? config.task_queue_factory
438 : &GlobalTaskQueueFactory();
Sebastian Jansson97f61ea2018-02-21 12:01:55439 return new internal::Call(
Sebastian Jansson4e5f5ed2019-03-01 17:13:27440 clock, config,
Sebastian Janssoned50e6c2019-03-01 13:45:21441 absl::make_unique<RtpTransportControllerSend>(
Sebastian Jansson4e5f5ed2019-03-01 17:13:27442 clock, config.event_log, config.network_controller_factory,
443 config.bitrate_config, std::move(pacer_thread), task_queue_factory),
Sebastian Jansson896b47c2019-03-01 17:48:16444 std::move(call_thread), task_queue_factory);
zstein7cb69d52017-05-08 18:52:38445}
446
Ying Wang0dd1b0a2018-02-20 11:50:27447// This method here to avoid subclasses has to implement this method.
448// Call perf test will use Internal::Call::CreateVideoSendStream() to inject
449// FecController.
Ying Wang3b790f32018-01-19 16:58:57450VideoSendStream* Call::CreateVideoSendStream(
451 VideoSendStream::Config config,
452 VideoEncoderConfig encoder_config,
453 std::unique_ptr<FecController> fec_controller) {
454 return nullptr;
455}
456
pbos@webrtc.org29d58392013-05-16 12:08:03457namespace internal {
458
Sebastian Jansson4e5f5ed2019-03-01 17:13:27459Call::Call(Clock* clock,
460 const Call::Config& config,
Sebastian Jansson896b47c2019-03-01 17:48:16461 std::unique_ptr<RtpTransportControllerSendInterface> transport_send,
462 std::unique_ptr<ProcessThread> module_process_thread,
463 TaskQueueFactory* task_queue_factory)
Sebastian Jansson4e5f5ed2019-03-01 17:13:27464 : clock_(clock),
Sebastian Jansson896b47c2019-03-01 17:48:16465 task_queue_factory_(task_queue_factory),
stefan91d92602015-11-11 18:13:02466 num_cpu_cores_(CpuInfo::DetectNumberOfCores()),
Sebastian Jansson896b47c2019-03-01 17:48:16467 module_process_thread_(std::move(module_process_thread)),
Tommi38c5d932018-03-27 21:11:09468 call_stats_(new CallStats(clock_, module_process_thread_.get())),
Sebastian Janssonda6806c2019-03-04 16:05:12469 bitrate_allocator_(new BitrateAllocator(clock_, this)),
Peter Boström45553ae2015-05-08 11:54:38470 config_(config),
Sergey Ulanove2b15012016-11-23 00:08:30471 audio_network_state_(kNetworkDown),
472 video_network_state_(kNetworkDown),
Sebastian Janssona06e9192018-03-07 17:49:55473 aggregate_network_up_(false),
pbos@webrtc.org26c0c412014-09-03 16:17:12474 receive_crit_(RWLockWrapper::CreateRWLock()),
stefan91d92602015-11-11 18:13:02475 send_crit_(RWLockWrapper::CreateRWLock()),
skvlad11a9cbf2016-10-07 18:53:05476 event_log_(config.event_log),
asapersson250fd972016-09-08 07:07:21477 received_bytes_per_second_counter_(clock_, nullptr, true),
478 received_audio_bytes_per_second_counter_(clock_, nullptr, true),
479 received_video_bytes_per_second_counter_(clock_, nullptr, true),
480 received_rtcp_bytes_per_second_counter_(clock_, nullptr, true),
Sebastian Jansson19704ec2018-03-12 14:59:12481 last_bandwidth_bps_(0),
perkj71ee44c2016-06-15 07:47:53482 min_allocated_send_bitrate_bps_(0),
sprang9c0b5512016-07-06 07:54:28483 configured_max_padding_bitrate_bps_(0),
asaperssonce2e1362016-09-09 07:13:35484 estimated_send_bitrate_kbps_counter_(clock_, nullptr, true),
485 pacer_bitrate_kbps_counter_(clock_, nullptr, true),
nisse05843312017-04-19 06:38:35486 receive_side_cc_(clock_, transport_send->packet_router()),
Sebastian Janssonb34556e2018-03-21 13:38:32487 receive_time_calculator_(ReceiveTimeCalculator::CreateFromFieldTrial()),
asapersson4374a092016-07-27 07:39:09488 video_send_delay_stats_(new SendDelayStats(clock_)),
Benjamin Wrighta5564482019-04-03 17:44:18489 start_ms_(clock_->TimeInMilliseconds()) {
skvlad11a9cbf2016-10-07 18:53:05490 RTC_DCHECK(config.event_log != nullptr);
nisse6167b262017-04-06 13:34:25491 transport_send_ = std::move(transport_send);
Sebastian Janssone6256052018-05-04 12:08:15492 transport_send_ptr_ = transport_send_.get();
pbos@webrtc.org29d58392013-05-16 12:08:03493}
494
pbos@webrtc.org841c8a42013-09-09 15:04:25495Call::~Call() {
eladalonf3f5c0e2017-08-18 09:47:08496 RTC_DCHECK_CALLED_SEQUENTIALLY(&configuration_sequence_checker_);
perkj26091b12016-09-01 08:17:40497
solenbergc7a8b082015-10-16 21:35:07498 RTC_CHECK(audio_send_ssrcs_.empty());
499 RTC_CHECK(video_send_ssrcs_.empty());
500 RTC_CHECK(video_send_streams_.empty());
nissee4bcd6d2017-05-16 11:47:04501 RTC_CHECK(audio_receive_streams_.empty());
solenbergc7a8b082015-10-16 21:35:07502 RTC_CHECK(video_receive_streams_.empty());
pbos@webrtc.org9e4e5242015-02-12 10:48:23503
Piotr (Peter) Slatalab2757882018-12-18 19:17:09504 if (!media_transport_) {
505 module_process_thread_->DeRegisterModule(
506 receive_side_cc_.GetRemoteBitrateEstimator(true));
507 module_process_thread_->DeRegisterModule(&receive_side_cc_);
508 module_process_thread_->DeRegisterModule(call_stats_.get());
509 module_process_thread_->Stop();
510 call_stats_->DeregisterStatsObserver(&receive_side_cc_);
Piotr (Peter) Slatalab2757882018-12-18 19:17:09511 }
sprang6d6122b2016-07-13 13:37:09512
Sebastian Janssone4be6da2018-02-15 15:51:41513 int64_t first_sent_packet_ms = transport_send_->GetFirstPacketTimeMs();
sprang6d6122b2016-07-13 13:37:09514 // Only update histograms after process threads have been shut down, so that
515 // they won't try to concurrently update stats.
perkj26091b12016-09-01 08:17:40516 {
517 rtc::CritScope lock(&bitrate_crit_);
asaperssonfc5e81c2017-04-20 06:28:53518 UpdateSendHistograms(first_sent_packet_ms);
perkj26091b12016-09-01 08:17:40519 }
sprang6d6122b2016-07-13 13:37:09520 UpdateReceiveHistograms();
asapersson4374a092016-07-27 07:39:09521 UpdateHistograms();
pbos@webrtc.org29d58392013-05-16 12:08:03522}
523
Piotr (Peter) Slatalacc8e8bb2018-11-15 16:26:19524void Call::RegisterRateObserver() {
525 rtc::CritScope lock(&target_observer_crit_);
526
527 if (is_target_rate_observer_registered_) {
528 return;
529 }
530
531 is_target_rate_observer_registered_ = true;
532
533 if (media_transport_) {
Piotr (Peter) Slatalab2757882018-12-18 19:17:09534 // TODO(bugs.webrtc.org/9719): We should report call_stats_ from
535 // media transport (at least Rtt). We should extend media transport
536 // interface to include "receive_side bwe" if needed.
Piotr (Peter) Slatalacc8e8bb2018-11-15 16:26:19537 media_transport_->AddTargetTransferRateObserver(this);
538 } else {
539 transport_send_ptr_->RegisterTargetTransferRateObserver(this);
Piotr (Peter) Slatalab2757882018-12-18 19:17:09540
541 call_stats_->RegisterStatsObserver(&receive_side_cc_);
Piotr (Peter) Slatalab2757882018-12-18 19:17:09542
543 module_process_thread_->RegisterModule(
544 receive_side_cc_.GetRemoteBitrateEstimator(true), RTC_FROM_HERE);
545 module_process_thread_->RegisterModule(call_stats_.get(), RTC_FROM_HERE);
546 module_process_thread_->RegisterModule(&receive_side_cc_, RTC_FROM_HERE);
547 module_process_thread_->Start();
Piotr (Peter) Slatalacc8e8bb2018-11-15 16:26:19548 }
549}
550
Niels Möller46879152019-01-07 14:54:47551MediaTransportInterface* Call::media_transport() {
552 rtc::CritScope lock(&target_observer_crit_);
553 return media_transport_;
554}
555
Piotr (Peter) Slatalacc8e8bb2018-11-15 16:26:19556void Call::MediaTransportChange(MediaTransportInterface* media_transport) {
557 rtc::CritScope lock(&target_observer_crit_);
558
559 if (is_target_rate_observer_registered_) {
560 // Only used to unregister rate observer from media transport. Registration
561 // happens when the stream is created.
562 if (!media_transport && media_transport_) {
563 media_transport_->RemoveTargetTransferRateObserver(this);
564 media_transport_ = nullptr;
565 is_target_rate_observer_registered_ = false;
566 }
567 } else if (media_transport) {
568 RTC_DCHECK(media_transport_ == nullptr ||
569 media_transport_ == media_transport)
570 << "media_transport_=" << (media_transport_ != nullptr)
571 << ", (media_transport_==media_transport)="
572 << (media_transport_ == media_transport);
573 media_transport_ = media_transport;
Piotr (Peter) Slatala946b9682019-03-18 17:25:02574 MediaTransportTargetRateConstraints constraints;
575 if (config_.bitrate_config.start_bitrate_bps > 0) {
576 constraints.starting_bitrate =
577 DataRate::bps(config_.bitrate_config.start_bitrate_bps);
578 }
579 if (config_.bitrate_config.max_bitrate_bps > 0) {
580 constraints.max_bitrate =
581 DataRate::bps(config_.bitrate_config.max_bitrate_bps);
582 }
583 if (config_.bitrate_config.min_bitrate_bps > 0) {
584 constraints.min_bitrate =
585 DataRate::bps(config_.bitrate_config.min_bitrate_bps);
586 }
Piotr (Peter) Slatala7fbfaa42019-03-18 17:31:54587
588 // User called ::SetBitrate on peer connection before
589 // media transport was created.
590 if (last_set_bitrate_) {
591 media_transport_->SetTargetBitrateLimits(*last_set_bitrate_);
592 } else {
593 media_transport_->SetTargetBitrateLimits(constraints);
594 }
595 }
596}
597
598void Call::SetClientBitratePreferences(const BitrateSettings& preferences) {
599 GetTransportControllerSend()->SetClientBitratePreferences(preferences);
600 // Can the client code invoke 'SetBitrate' before media transport is created?
601 // It's probably possible :/
602 MediaTransportTargetRateConstraints constraints;
603 if (preferences.start_bitrate_bps.has_value()) {
604 constraints.starting_bitrate =
605 webrtc::DataRate::bps(*preferences.start_bitrate_bps);
606 }
607 if (preferences.max_bitrate_bps.has_value()) {
608 constraints.max_bitrate =
609 webrtc::DataRate::bps(*preferences.max_bitrate_bps);
610 }
611 if (preferences.min_bitrate_bps.has_value()) {
612 constraints.min_bitrate =
613 webrtc::DataRate::bps(*preferences.min_bitrate_bps);
614 }
615 rtc::CritScope lock(&target_observer_crit_);
616 last_set_bitrate_ = constraints;
617 if (media_transport_) {
Piotr (Peter) Slatala946b9682019-03-18 17:25:02618 media_transport_->SetTargetBitrateLimits(constraints);
Piotr (Peter) Slatalacc8e8bb2018-11-15 16:26:19619 }
620}
621
asapersson4374a092016-07-27 07:39:09622void Call::UpdateHistograms() {
asapersson1d02d3e2016-09-10 05:40:25623 RTC_HISTOGRAM_COUNTS_100000(
asapersson4374a092016-07-27 07:39:09624 "WebRTC.Call.LifetimeInSeconds",
625 (clock_->TimeInMilliseconds() - start_ms_) / 1000);
626}
627
asaperssonfc5e81c2017-04-20 06:28:53628void Call::UpdateSendHistograms(int64_t first_sent_packet_ms) {
629 if (first_sent_packet_ms == -1)
stefan18adf0a2015-11-17 14:24:56630 return;
631 int64_t elapsed_sec =
asaperssonfc5e81c2017-04-20 06:28:53632 (clock_->TimeInMilliseconds() - first_sent_packet_ms) / 1000;
stefan18adf0a2015-11-17 14:24:56633 if (elapsed_sec < metrics::kMinRunTimeInSeconds)
634 return;
asaperssonce2e1362016-09-09 07:13:35635 const int kMinRequiredPeriodicSamples = 5;
636 AggregatedStats send_bitrate_stats =
637 estimated_send_bitrate_kbps_counter_.ProcessAndGetStats();
638 if (send_bitrate_stats.num_samples > kMinRequiredPeriodicSamples) {
asapersson1d02d3e2016-09-10 05:40:25639 RTC_HISTOGRAM_COUNTS_100000("WebRTC.Call.EstimatedSendBitrateInKbps",
640 send_bitrate_stats.average);
Mirko Bonadei675513b2017-11-09 10:09:25641 RTC_LOG(LS_INFO) << "WebRTC.Call.EstimatedSendBitrateInKbps, "
642 << send_bitrate_stats.ToString();
stefan18adf0a2015-11-17 14:24:56643 }
asaperssonce2e1362016-09-09 07:13:35644 AggregatedStats pacer_bitrate_stats =
645 pacer_bitrate_kbps_counter_.ProcessAndGetStats();
646 if (pacer_bitrate_stats.num_samples > kMinRequiredPeriodicSamples) {
asapersson1d02d3e2016-09-10 05:40:25647 RTC_HISTOGRAM_COUNTS_100000("WebRTC.Call.PacerBitrateInKbps",
648 pacer_bitrate_stats.average);
Mirko Bonadei675513b2017-11-09 10:09:25649 RTC_LOG(LS_INFO) << "WebRTC.Call.PacerBitrateInKbps, "
650 << pacer_bitrate_stats.ToString();
stefan18adf0a2015-11-17 14:24:56651 }
652}
653
654void Call::UpdateReceiveHistograms() {
saza0d7f04d2017-07-04 11:05:06655 if (first_received_rtp_audio_ms_) {
656 RTC_HISTOGRAM_COUNTS_100000(
657 "WebRTC.Call.TimeReceivingAudioRtpPacketsInSeconds",
658 (*last_received_rtp_audio_ms_ - *first_received_rtp_audio_ms_) / 1000);
659 }
660 if (first_received_rtp_video_ms_) {
661 RTC_HISTOGRAM_COUNTS_100000(
662 "WebRTC.Call.TimeReceivingVideoRtpPacketsInSeconds",
663 (*last_received_rtp_video_ms_ - *first_received_rtp_video_ms_) / 1000);
664 }
asapersson250fd972016-09-08 07:07:21665 const int kMinRequiredPeriodicSamples = 5;
666 AggregatedStats video_bytes_per_sec =
667 received_video_bytes_per_second_counter_.GetStats();
668 if (video_bytes_per_sec.num_samples > kMinRequiredPeriodicSamples) {
asapersson1d02d3e2016-09-10 05:40:25669 RTC_HISTOGRAM_COUNTS_100000("WebRTC.Call.VideoBitrateReceivedInKbps",
670 video_bytes_per_sec.average * 8 / 1000);
Mirko Bonadei675513b2017-11-09 10:09:25671 RTC_LOG(LS_INFO) << "WebRTC.Call.VideoBitrateReceivedInBps, "
672 << video_bytes_per_sec.ToStringWithMultiplier(8);
stefan91d92602015-11-11 18:13:02673 }
asapersson250fd972016-09-08 07:07:21674 AggregatedStats audio_bytes_per_sec =
675 received_audio_bytes_per_second_counter_.GetStats();
676 if (audio_bytes_per_sec.num_samples > kMinRequiredPeriodicSamples) {
asapersson1d02d3e2016-09-10 05:40:25677 RTC_HISTOGRAM_COUNTS_100000("WebRTC.Call.AudioBitrateReceivedInKbps",
678 audio_bytes_per_sec.average * 8 / 1000);
Mirko Bonadei675513b2017-11-09 10:09:25679 RTC_LOG(LS_INFO) << "WebRTC.Call.AudioBitrateReceivedInBps, "
680 << audio_bytes_per_sec.ToStringWithMultiplier(8);
stefan91d92602015-11-11 18:13:02681 }
asapersson250fd972016-09-08 07:07:21682 AggregatedStats rtcp_bytes_per_sec =
683 received_rtcp_bytes_per_second_counter_.GetStats();
684 if (rtcp_bytes_per_sec.num_samples > kMinRequiredPeriodicSamples) {
asapersson1d02d3e2016-09-10 05:40:25685 RTC_HISTOGRAM_COUNTS_100000("WebRTC.Call.RtcpBitrateReceivedInBps",
686 rtcp_bytes_per_sec.average * 8);
Mirko Bonadei675513b2017-11-09 10:09:25687 RTC_LOG(LS_INFO) << "WebRTC.Call.RtcpBitrateReceivedInBps, "
688 << rtcp_bytes_per_sec.ToStringWithMultiplier(8);
stefan91d92602015-11-11 18:13:02689 }
asapersson250fd972016-09-08 07:07:21690 AggregatedStats recv_bytes_per_sec =
691 received_bytes_per_second_counter_.GetStats();
692 if (recv_bytes_per_sec.num_samples > kMinRequiredPeriodicSamples) {
asapersson1d02d3e2016-09-10 05:40:25693 RTC_HISTOGRAM_COUNTS_100000("WebRTC.Call.BitrateReceivedInKbps",
694 recv_bytes_per_sec.average * 8 / 1000);
Mirko Bonadei675513b2017-11-09 10:09:25695 RTC_LOG(LS_INFO) << "WebRTC.Call.BitrateReceivedInBps, "
696 << recv_bytes_per_sec.ToStringWithMultiplier(8);
asapersson250fd972016-09-08 07:07:21697 }
stefan91d92602015-11-11 18:13:02698}
699
solenberg5a289392015-10-19 10:39:20700PacketReceiver* Call::Receiver() {
eladalond1dd2f72017-08-25 09:55:57701 RTC_DCHECK_CALLED_SEQUENTIALLY(&configuration_sequence_checker_);
solenberg5a289392015-10-19 10:39:20702 return this;
703}
pbos@webrtc.org29d58392013-05-16 12:08:03704
Fredrik Solenberg04f49312015-06-08 11:04:56705webrtc::AudioSendStream* Call::CreateAudioSendStream(
706 const webrtc::AudioSendStream::Config& config) {
solenbergc7a8b082015-10-16 21:35:07707 TRACE_EVENT0("webrtc", "Call::CreateAudioSendStream");
eladalonf3f5c0e2017-08-18 09:47:08708 RTC_DCHECK_CALLED_SEQUENTIALLY(&configuration_sequence_checker_);
Piotr (Peter) Slatalacc8e8bb2018-11-15 16:26:19709
Niels Möller46879152019-01-07 14:54:47710 RTC_DCHECK(media_transport() == config.media_transport);
Piotr (Peter) Slatalacc8e8bb2018-11-15 16:26:19711
712 RegisterRateObserver();
713
Oskar Sundbom56ef3052018-10-30 15:11:02714 // Stream config is logged in AudioSendStream::ConfigureStream, as it may
715 // change during the stream's lifetime.
Danil Chapovalovb9b146c2018-06-15 10:28:07716 absl::optional<RtpState> suspended_rtp_state;
ossuc3d4b482017-05-23 13:07:11717 {
718 const auto& iter = suspended_audio_send_ssrcs_.find(config.rtp.ssrc);
719 if (iter != suspended_audio_send_ssrcs_.end()) {
720 suspended_rtp_state.emplace(iter->second);
721 }
722 }
723
Sebastian Jansson44dd9f22019-03-08 13:50:30724 AudioSendStream* send_stream =
725 new AudioSendStream(clock_, config, config_.audio_state,
726 task_queue_factory_, module_process_thread_.get(),
727 transport_send_ptr_, bitrate_allocator_.get(),
728 event_log_, call_stats_.get(), suspended_rtp_state);
solenbergc7a8b082015-10-16 21:35:07729 {
solenbergc7a8b082015-10-16 21:35:07730 WriteLockScoped write_lock(*send_crit_);
731 RTC_DCHECK(audio_send_ssrcs_.find(config.rtp.ssrc) ==
732 audio_send_ssrcs_.end());
733 audio_send_ssrcs_[config.rtp.ssrc] = send_stream;
solenbergc7a8b082015-10-16 21:35:07734 }
solenberg7602aab2016-11-14 19:30:07735 {
736 ReadLockScoped read_lock(*receive_crit_);
nissee4bcd6d2017-05-16 11:47:04737 for (AudioReceiveStream* stream : audio_receive_streams_) {
738 if (stream->config().rtp.local_ssrc == config.rtp.ssrc) {
739 stream->AssociateSendStream(send_stream);
solenberg7602aab2016-11-14 19:30:07740 }
741 }
742 }
skvlad7a43d252016-03-22 22:32:27743 send_stream->SignalNetworkState(audio_network_state_);
744 UpdateAggregateNetworkState();
solenbergc7a8b082015-10-16 21:35:07745 return send_stream;
Fredrik Solenberg04f49312015-06-08 11:04:56746}
747
748void Call::DestroyAudioSendStream(webrtc::AudioSendStream* send_stream) {
solenbergc7a8b082015-10-16 21:35:07749 TRACE_EVENT0("webrtc", "Call::DestroyAudioSendStream");
eladalonf3f5c0e2017-08-18 09:47:08750 RTC_DCHECK_CALLED_SEQUENTIALLY(&configuration_sequence_checker_);
solenbergc7a8b082015-10-16 21:35:07751 RTC_DCHECK(send_stream != nullptr);
752
753 send_stream->Stop();
754
eladalonabbc4302017-07-26 09:09:44755 const uint32_t ssrc = send_stream->GetConfig().rtp.ssrc;
solenbergc7a8b082015-10-16 21:35:07756 webrtc::internal::AudioSendStream* audio_send_stream =
757 static_cast<webrtc::internal::AudioSendStream*>(send_stream);
ossuc3d4b482017-05-23 13:07:11758 suspended_audio_send_ssrcs_[ssrc] = audio_send_stream->GetRtpState();
solenbergc7a8b082015-10-16 21:35:07759 {
760 WriteLockScoped write_lock(*send_crit_);
solenberg7602aab2016-11-14 19:30:07761 size_t num_deleted = audio_send_ssrcs_.erase(ssrc);
762 RTC_DCHECK_EQ(1, num_deleted);
763 }
764 {
765 ReadLockScoped read_lock(*receive_crit_);
nissee4bcd6d2017-05-16 11:47:04766 for (AudioReceiveStream* stream : audio_receive_streams_) {
767 if (stream->config().rtp.local_ssrc == ssrc) {
768 stream->AssociateSendStream(nullptr);
solenberg7602aab2016-11-14 19:30:07769 }
770 }
solenbergc7a8b082015-10-16 21:35:07771 }
skvlad7a43d252016-03-22 22:32:27772 UpdateAggregateNetworkState();
eladalonabbc4302017-07-26 09:09:44773 delete send_stream;
Fredrik Solenberg04f49312015-06-08 11:04:56774}
775
Fredrik Solenberg23fba1f2015-04-29 13:24:01776webrtc::AudioReceiveStream* Call::CreateAudioReceiveStream(
777 const webrtc::AudioReceiveStream::Config& config) {
778 TRACE_EVENT0("webrtc", "Call::CreateAudioReceiveStream");
eladalonf3f5c0e2017-08-18 09:47:08779 RTC_DCHECK_CALLED_SEQUENTIALLY(&configuration_sequence_checker_);
Piotr (Peter) Slatalab2757882018-12-18 19:17:09780 RegisterRateObserver();
Karl Wiberg918f50c2018-07-05 09:40:33781 event_log_->Log(absl::make_unique<RtcEventAudioReceiveStreamConfig>(
Elad Alon4a87e1c2017-10-03 14:11:34782 CreateRtcLogStreamConfig(config)));
nisse0f15f922017-06-21 08:05:22783 AudioReceiveStream* receive_stream = new AudioReceiveStream(
Sebastian Jansson977b3352019-03-04 16:43:34784 clock_, &audio_receiver_controller_, transport_send_ptr_->packet_router(),
Fredrik Solenberg8f5787a2018-01-11 12:52:30785 module_process_thread_.get(), config, config_.audio_state, event_log_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01786 {
787 WriteLockScoped write_lock(*receive_crit_);
Erik Språng09708512018-03-14 14:16:50788 receive_rtp_config_.emplace(config.rtp.remote_ssrc,
789 ReceiveRtpConfig(config));
nissee4bcd6d2017-05-16 11:47:04790 audio_receive_streams_.insert(receive_stream);
nissed44ce052017-02-06 10:23:00791
pbos8fc7fa72015-07-15 15:02:58792 ConfigureSync(config.sync_group);
Fredrik Solenberg23fba1f2015-04-29 13:24:01793 }
solenberg7602aab2016-11-14 19:30:07794 {
795 ReadLockScoped read_lock(*send_crit_);
796 auto it = audio_send_ssrcs_.find(config.rtp.local_ssrc);
797 if (it != audio_send_ssrcs_.end()) {
798 receive_stream->AssociateSendStream(it->second);
799 }
800 }
skvlad7a43d252016-03-22 22:32:27801 receive_stream->SignalNetworkState(audio_network_state_);
802 UpdateAggregateNetworkState();
Fredrik Solenberg23fba1f2015-04-29 13:24:01803 return receive_stream;
804}
805
806void Call::DestroyAudioReceiveStream(
807 webrtc::AudioReceiveStream* receive_stream) {
808 TRACE_EVENT0("webrtc", "Call::DestroyAudioReceiveStream");
eladalonf3f5c0e2017-08-18 09:47:08809 RTC_DCHECK_CALLED_SEQUENTIALLY(&configuration_sequence_checker_);
henrikg91d6ede2015-09-17 07:24:34810 RTC_DCHECK(receive_stream != nullptr);
solenbergc7a8b082015-10-16 21:35:07811 webrtc::internal::AudioReceiveStream* audio_receive_stream =
812 static_cast<webrtc::internal::AudioReceiveStream*>(receive_stream);
Fredrik Solenberg23fba1f2015-04-29 13:24:01813 {
814 WriteLockScoped write_lock(*receive_crit_);
nisse4709e892017-02-07 09:18:43815 const AudioReceiveStream::Config& config = audio_receive_stream->config();
816 uint32_t ssrc = config.rtp.remote_ssrc;
nisse559af382017-03-21 13:41:12817 receive_side_cc_.GetRemoteBitrateEstimator(UseSendSideBwe(config))
nisse4709e892017-02-07 09:18:43818 ->RemoveStream(ssrc);
nissee4bcd6d2017-05-16 11:47:04819 audio_receive_streams_.erase(audio_receive_stream);
pbos8fc7fa72015-07-15 15:02:58820 const std::string& sync_group = audio_receive_stream->config().sync_group;
821 const auto it = sync_stream_mapping_.find(sync_group);
822 if (it != sync_stream_mapping_.end() &&
823 it->second == audio_receive_stream) {
824 sync_stream_mapping_.erase(it);
825 ConfigureSync(sync_group);
826 }
nissed44ce052017-02-06 10:23:00827 receive_rtp_config_.erase(ssrc);
Fredrik Solenberg23fba1f2015-04-29 13:24:01828 }
skvlad7a43d252016-03-22 22:32:27829 UpdateAggregateNetworkState();
Fredrik Solenberg23fba1f2015-04-29 13:24:01830 delete audio_receive_stream;
831}
832
Ying Wang0dd1b0a2018-02-20 11:50:27833// This method can be used for Call tests with external fec controller factory.
Ying Wang3b790f32018-01-19 16:58:57834webrtc::VideoSendStream* Call::CreateVideoSendStream(
835 webrtc::VideoSendStream::Config config,
836 VideoEncoderConfig encoder_config,
837 std::unique_ptr<FecController> fec_controller) {
pbos@webrtc.org50fe3592015-01-29 12:33:07838 TRACE_EVENT0("webrtc", "Call::CreateVideoSendStream");
eladalonf3f5c0e2017-08-18 09:47:08839 RTC_DCHECK_CALLED_SEQUENTIALLY(&configuration_sequence_checker_);
pbos@webrtc.org1819fd72013-06-10 13:48:26840
Niels Möller46879152019-01-07 14:54:47841 RTC_DCHECK(media_transport() == config.media_transport);
842
Piotr (Peter) Slatalacc8e8bb2018-11-15 16:26:19843 RegisterRateObserver();
844
asapersson35151f32016-05-03 06:44:01845 video_send_delay_stats_->AddSsrcs(config);
perkjc0876aa2017-05-22 11:08:28846 for (size_t ssrc_index = 0; ssrc_index < config.rtp.ssrcs.size();
847 ++ssrc_index) {
Karl Wiberg918f50c2018-07-05 09:40:33848 event_log_->Log(absl::make_unique<RtcEventVideoSendStreamConfig>(
Elad Alon4a87e1c2017-10-03 14:11:34849 CreateRtcLogStreamConfig(config, ssrc_index)));
perkjc0876aa2017-05-22 11:08:28850 }
perkj26091b12016-09-01 08:17:40851
mflodman@webrtc.orgeb16b812014-06-16 08:57:39852 // TODO(mflodman): Base the start bitrate on a current bandwidth estimate, if
853 // the call has already started.
perkj26091b12016-09-01 08:17:40854 // Copy ssrcs from |config| since |config| is moved.
855 std::vector<uint32_t> ssrcs = config.rtp.ssrcs;
Ying Wang0dd1b0a2018-02-20 11:50:27856
mflodman0c478b32015-10-21 13:52:16857 VideoSendStream* send_stream = new VideoSendStream(
Sebastian Jansson0b698262019-03-07 08:17:19858 clock_, num_cpu_cores_, module_process_thread_.get(), task_queue_factory_,
Sebastian Jansson74682c12019-03-01 10:50:20859 call_stats_.get(), transport_send_ptr_, bitrate_allocator_.get(),
nisse05843312017-04-19 06:38:35860 video_send_delay_stats_.get(), event_log_, std::move(config),
Åsa Persson4bece9a2017-10-06 08:04:04861 std::move(encoder_config), suspended_video_send_ssrcs_,
Stefan Holmerdbdb3a02018-07-17 14:03:46862 suspended_video_payload_states_, std::move(fec_controller));
perkj26091b12016-09-01 08:17:40863
skvlad7a43d252016-03-22 22:32:27864 {
865 WriteLockScoped write_lock(*send_crit_);
perkj26091b12016-09-01 08:17:40866 for (uint32_t ssrc : ssrcs) {
skvlad7a43d252016-03-22 22:32:27867 RTC_DCHECK(video_send_ssrcs_.find(ssrc) == video_send_ssrcs_.end());
868 video_send_ssrcs_[ssrc] = send_stream;
869 }
870 video_send_streams_.insert(send_stream);
pbos@webrtc.org29d58392013-05-16 12:08:03871 }
skvlad7a43d252016-03-22 22:32:27872 UpdateAggregateNetworkState();
perkj26091b12016-09-01 08:17:40873
pbos@webrtc.org29d58392013-05-16 12:08:03874 return send_stream;
875}
876
Ying Wang0dd1b0a2018-02-20 11:50:27877webrtc::VideoSendStream* Call::CreateVideoSendStream(
878 webrtc::VideoSendStream::Config config,
879 VideoEncoderConfig encoder_config) {
Ying Wang012b7e72018-03-05 14:44:23880 if (config_.fec_controller_factory) {
881 RTC_LOG(LS_INFO) << "External FEC Controller will be used.";
882 }
Ying Wang0dd1b0a2018-02-20 11:50:27883 std::unique_ptr<FecController> fec_controller =
884 config_.fec_controller_factory
885 ? config_.fec_controller_factory->CreateFecController()
Sebastian Jansson11c012a2019-03-29 13:17:26886 : absl::make_unique<FecControllerDefault>(clock_);
Ying Wang0dd1b0a2018-02-20 11:50:27887 return CreateVideoSendStream(std::move(config), std::move(encoder_config),
888 std::move(fec_controller));
889}
890
pbos@webrtc.org2c46f8d2013-11-21 13:49:43891void Call::DestroyVideoSendStream(webrtc::VideoSendStream* send_stream) {
pbos@webrtc.org50fe3592015-01-29 12:33:07892 TRACE_EVENT0("webrtc", "Call::DestroyVideoSendStream");
henrikg91d6ede2015-09-17 07:24:34893 RTC_DCHECK(send_stream != nullptr);
eladalonf3f5c0e2017-08-18 09:47:08894 RTC_DCHECK_CALLED_SEQUENTIALLY(&configuration_sequence_checker_);
pbos@webrtc.org95e51f52013-09-05 12:38:54895
pbos@webrtc.org2bb1bda2014-07-07 13:06:48896 send_stream->Stop();
897
pbos@webrtc.org2b4ce3a2015-03-23 13:12:24898 VideoSendStream* send_stream_impl = nullptr;
pbos@webrtc.org95e51f52013-09-05 12:38:54899 {
pbos@webrtc.org26c0c412014-09-03 16:17:12900 WriteLockScoped write_lock(*send_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:01901 auto it = video_send_ssrcs_.begin();
902 while (it != video_send_ssrcs_.end()) {
pbos@webrtc.org95e51f52013-09-05 12:38:54903 if (it->second == static_cast<VideoSendStream*>(send_stream)) {
904 send_stream_impl = it->second;
Fredrik Solenberg23fba1f2015-04-29 13:24:01905 video_send_ssrcs_.erase(it++);
pbos@webrtc.org2bb1bda2014-07-07 13:06:48906 } else {
907 ++it;
pbos@webrtc.org95e51f52013-09-05 12:38:54908 }
909 }
Fredrik Solenberg23fba1f2015-04-29 13:24:01910 video_send_streams_.erase(send_stream_impl);
pbos@webrtc.org29d58392013-05-16 12:08:03911 }
henrikg91d6ede2015-09-17 07:24:34912 RTC_CHECK(send_stream_impl != nullptr);
pbos@webrtc.org95e51f52013-09-05 12:38:54913
Åsa Persson4bece9a2017-10-06 08:04:04914 VideoSendStream::RtpStateMap rtp_states;
915 VideoSendStream::RtpPayloadStateMap rtp_payload_states;
916 send_stream_impl->StopPermanentlyAndGetRtpStates(&rtp_states,
917 &rtp_payload_states);
918 for (const auto& kv : rtp_states) {
919 suspended_video_send_ssrcs_[kv.first] = kv.second;
920 }
921 for (const auto& kv : rtp_payload_states) {
922 suspended_video_payload_states_[kv.first] = kv.second;
pbos@webrtc.org2bb1bda2014-07-07 13:06:48923 }
924
skvlad7a43d252016-03-22 22:32:27925 UpdateAggregateNetworkState();
pbos@webrtc.org95e51f52013-09-05 12:38:54926 delete send_stream_impl;
pbos@webrtc.org29d58392013-05-16 12:08:03927}
928
Fredrik Solenberg23fba1f2015-04-29 13:24:01929webrtc::VideoReceiveStream* Call::CreateVideoReceiveStream(
Tommi733b5472016-06-10 15:58:01930 webrtc::VideoReceiveStream::Config configuration) {
pbos@webrtc.org50fe3592015-01-29 12:33:07931 TRACE_EVENT0("webrtc", "Call::CreateVideoReceiveStream");
eladalonf3f5c0e2017-08-18 09:47:08932 RTC_DCHECK_CALLED_SEQUENTIALLY(&configuration_sequence_checker_);
brandtrfb45c6c2017-01-27 14:47:55933
Johannes Kronf59666b2019-04-08 10:57:06934 receive_side_cc_.SetSendPeriodicFeedback(
935 SendPeriodicFeedback(configuration.rtp.extensions));
Johannes Kron7ff164e2019-02-07 11:50:18936
Piotr (Peter) Slatalab2757882018-12-18 19:17:09937 RegisterRateObserver();
938
nisse0f15f922017-06-21 08:05:22939 VideoReceiveStream* receive_stream = new VideoReceiveStream(
Sebastian Jansson896b47c2019-03-01 17:48:16940 task_queue_factory_, &video_receiver_controller_, num_cpu_cores_,
Sebastian Janssone6256052018-05-04 12:08:15941 transport_send_ptr_->packet_router(), std::move(configuration),
Sebastian Jansson8026d602019-03-04 18:39:01942 module_process_thread_.get(), call_stats_.get(), clock_);
Tommi733b5472016-06-10 15:58:01943
944 const webrtc::VideoReceiveStream::Config& config = receive_stream->config();
skvlad7a43d252016-03-22 22:32:27945 {
946 WriteLockScoped write_lock(*receive_crit_);
nissed44ce052017-02-06 10:23:00947 if (config.rtp.rtx_ssrc) {
nissed44ce052017-02-06 10:23:00948 // We record identical config for the rtx stream as for the main
nisseb8f9a322017-03-27 12:36:15949 // stream. Since the transport_send_cc negotiation is per payload
nissed44ce052017-02-06 10:23:00950 // type, we may get an incorrect value for the rtx stream, but
951 // that is unlikely to matter in practice.
Erik Språng09708512018-03-14 14:16:50952 receive_rtp_config_.emplace(config.rtp.rtx_ssrc,
953 ReceiveRtpConfig(config));
nissed44ce052017-02-06 10:23:00954 }
Erik Språng09708512018-03-14 14:16:50955 receive_rtp_config_.emplace(config.rtp.remote_ssrc,
956 ReceiveRtpConfig(config));
skvlad7a43d252016-03-22 22:32:27957 video_receive_streams_.insert(receive_stream);
skvlad7a43d252016-03-22 22:32:27958 ConfigureSync(config.sync_group);
959 }
960 receive_stream->SignalNetworkState(video_network_state_);
961 UpdateAggregateNetworkState();
Karl Wiberg918f50c2018-07-05 09:40:33962 event_log_->Log(absl::make_unique<RtcEventVideoReceiveStreamConfig>(
Elad Alon4a87e1c2017-10-03 14:11:34963 CreateRtcLogStreamConfig(config)));
pbos@webrtc.org29d58392013-05-16 12:08:03964 return receive_stream;
965}
966
pbos@webrtc.org2c46f8d2013-11-21 13:49:43967void Call::DestroyVideoReceiveStream(
968 webrtc::VideoReceiveStream* receive_stream) {
pbos@webrtc.org50fe3592015-01-29 12:33:07969 TRACE_EVENT0("webrtc", "Call::DestroyVideoReceiveStream");
eladalonf3f5c0e2017-08-18 09:47:08970 RTC_DCHECK_CALLED_SEQUENTIALLY(&configuration_sequence_checker_);
henrikg91d6ede2015-09-17 07:24:34971 RTC_DCHECK(receive_stream != nullptr);
nissee4bcd6d2017-05-16 11:47:04972 VideoReceiveStream* receive_stream_impl =
973 static_cast<VideoReceiveStream*>(receive_stream);
974 const VideoReceiveStream::Config& config = receive_stream_impl->config();
pbos@webrtc.org95e51f52013-09-05 12:38:54975 {
pbos@webrtc.org26c0c412014-09-03 16:17:12976 WriteLockScoped write_lock(*receive_crit_);
pbos@webrtc.orgc279a5d2014-01-24 09:30:53977 // Remove all ssrcs pointing to a receive stream. As RTX retransmits on a
978 // separate SSRC there can be either one or two.
nissee4bcd6d2017-05-16 11:47:04979 receive_rtp_config_.erase(config.rtp.remote_ssrc);
980 if (config.rtp.rtx_ssrc) {
981 receive_rtp_config_.erase(config.rtp.rtx_ssrc);
pbos@webrtc.org95e51f52013-09-05 12:38:54982 }
Fredrik Solenberg23fba1f2015-04-29 13:24:01983 video_receive_streams_.erase(receive_stream_impl);
nissee4bcd6d2017-05-16 11:47:04984 ConfigureSync(config.sync_group);
pbos@webrtc.org29d58392013-05-16 12:08:03985 }
nisse4709e892017-02-07 09:18:43986
nisse559af382017-03-21 13:41:12987 receive_side_cc_.GetRemoteBitrateEstimator(UseSendSideBwe(config))
nisse4709e892017-02-07 09:18:43988 ->RemoveStream(config.rtp.remote_ssrc);
989
skvlad7a43d252016-03-22 22:32:27990 UpdateAggregateNetworkState();
pbos@webrtc.org95e51f52013-09-05 12:38:54991 delete receive_stream_impl;
pbos@webrtc.org29d58392013-05-16 12:08:03992}
993
brandtr7250b392016-12-19 09:13:46994FlexfecReceiveStream* Call::CreateFlexfecReceiveStream(
995 const FlexfecReceiveStream::Config& config) {
brandtr25445d32016-10-24 06:37:14996 TRACE_EVENT0("webrtc", "Call::CreateFlexfecReceiveStream");
eladalonf3f5c0e2017-08-18 09:47:08997 RTC_DCHECK_CALLED_SEQUENTIALLY(&configuration_sequence_checker_);
brandtrb29e6522016-12-21 14:37:18998
999 RecoveredPacketReceiver* recovered_packet_receiver = this;
brandtr25445d32016-10-24 06:37:141000
nisse0f15f922017-06-21 08:05:221001 FlexfecReceiveStreamImpl* receive_stream;
brandtr25445d32016-10-24 06:37:141002 {
1003 WriteLockScoped write_lock(*receive_crit_);
nisse0f15f922017-06-21 08:05:221004 // Unlike the video and audio receive streams,
1005 // FlexfecReceiveStream implements RtpPacketSinkInterface itself,
1006 // and hence its constructor passes its |this| pointer to
eladalon2a2b2972017-07-03 16:25:271007 // video_receiver_controller_->CreateStream(). Calling the
nisse0f15f922017-06-21 08:05:221008 // constructor while holding |receive_crit_| ensures that we don't
1009 // call OnRtpPacket until the constructor is finished and the
1010 // object is in a valid state.
1011 // TODO(nisse): Fix constructor so that it can be moved outside of
1012 // this locked scope.
1013 receive_stream = new FlexfecReceiveStreamImpl(
Sebastian Jansson8026d602019-03-04 18:39:011014 clock_, &video_receiver_controller_, config, recovered_packet_receiver,
Tommi38c5d932018-03-27 21:11:091015 call_stats_.get(), module_process_thread_.get());
brandtrb29e6522016-12-21 14:37:181016
nissed44ce052017-02-06 10:23:001017 RTC_DCHECK(receive_rtp_config_.find(config.remote_ssrc) ==
1018 receive_rtp_config_.end());
Erik Språng09708512018-03-14 14:16:501019 receive_rtp_config_.emplace(config.remote_ssrc, ReceiveRtpConfig(config));
brandtr25445d32016-10-24 06:37:141020 }
brandtrb29e6522016-12-21 14:37:181021
brandtr25445d32016-10-24 06:37:141022 // TODO(brandtr): Store config in RtcEventLog here.
brandtrb29e6522016-12-21 14:37:181023
brandtr25445d32016-10-24 06:37:141024 return receive_stream;
1025}
1026
brandtr7250b392016-12-19 09:13:461027void Call::DestroyFlexfecReceiveStream(FlexfecReceiveStream* receive_stream) {
brandtr25445d32016-10-24 06:37:141028 TRACE_EVENT0("webrtc", "Call::DestroyFlexfecReceiveStream");
eladalonf3f5c0e2017-08-18 09:47:081029 RTC_DCHECK_CALLED_SEQUENTIALLY(&configuration_sequence_checker_);
brandtrb29e6522016-12-21 14:37:181030
brandtr25445d32016-10-24 06:37:141031 RTC_DCHECK(receive_stream != nullptr);
brandtr25445d32016-10-24 06:37:141032 {
1033 WriteLockScoped write_lock(*receive_crit_);
brandtrb29e6522016-12-21 14:37:181034
eladalon42f44f92017-07-25 13:40:061035 const FlexfecReceiveStream::Config& config = receive_stream->GetConfig();
nisse4709e892017-02-07 09:18:431036 uint32_t ssrc = config.remote_ssrc;
nissed44ce052017-02-06 10:23:001037 receive_rtp_config_.erase(ssrc);
brandtrb29e6522016-12-21 14:37:181038
brandtr7250b392016-12-19 09:13:461039 // Remove all SSRCs pointing to the FlexfecReceiveStreamImpl to be
1040 // destroyed.
nisse559af382017-03-21 13:41:121041 receive_side_cc_.GetRemoteBitrateEstimator(UseSendSideBwe(config))
nisse4709e892017-02-07 09:18:431042 ->RemoveStream(ssrc);
brandtr25445d32016-10-24 06:37:141043 }
brandtrb29e6522016-12-21 14:37:181044
eladalon42f44f92017-07-25 13:40:061045 delete receive_stream;
brandtr25445d32016-10-24 06:37:141046}
1047
Sebastian Jansson8f83b422018-02-21 12:07:131048RtpTransportControllerSendInterface* Call::GetTransportControllerSend() {
Sebastian Janssone6256052018-05-04 12:08:151049 return transport_send_ptr_;
Sebastian Jansson8f83b422018-02-21 12:07:131050}
1051
stefan@webrtc.org0bae1fa2014-11-05 14:05:291052Call::Stats Call::GetStats() const {
solenberg5a289392015-10-19 10:39:201053 // TODO(solenberg): Some test cases in EndToEndTest use this from a different
1054 // thread. Re-enable once that is fixed.
eladalonf3f5c0e2017-08-18 09:47:081055 // RTC_DCHECK_CALLED_SEQUENTIALLY(&configuration_sequence_checker_);
stefan@webrtc.org0bae1fa2014-11-05 14:05:291056 Stats stats;
Peter Boström45553ae2015-05-08 11:54:381057 // Fetch available send/receive bitrates.
Peter Boström45553ae2015-05-08 11:54:381058 std::vector<unsigned int> ssrcs;
stefan@webrtc.org0bae1fa2014-11-05 14:05:291059 uint32_t recv_bandwidth = 0;
nisse559af382017-03-21 13:41:121060 receive_side_cc_.GetRemoteBitrateEstimator(false)->LatestEstimate(
mflodmana20de202015-10-19 05:08:191061 &ssrcs, &recv_bandwidth);
Sebastian Jansson19704ec2018-03-12 14:59:121062
1063 {
1064 rtc::CritScope cs(&last_bandwidth_bps_crit_);
1065 stats.send_bandwidth_bps = last_bandwidth_bps_;
1066 }
stefan@webrtc.org0bae1fa2014-11-05 14:05:291067 stats.recv_bandwidth_bps = recv_bandwidth;
Sebastian Janssona06e9192018-03-07 17:49:551068 // TODO(srte): It is unclear if we only want to report queues if network is
1069 // available.
1070 {
1071 rtc::CritScope cs(&aggregate_network_up_crit_);
Sebastian Janssone6256052018-05-04 12:08:151072 stats.pacer_delay_ms = aggregate_network_up_
1073 ? transport_send_ptr_->GetPacerQueuingDelayMs()
1074 : 0;
Sebastian Janssona06e9192018-03-07 17:49:551075 }
1076
Tommi38c5d932018-03-27 21:11:091077 stats.rtt_ms = call_stats_->LastProcessedRtt();
sprang9c0b5512016-07-06 07:54:281078 {
1079 rtc::CritScope cs(&bitrate_crit_);
1080 stats.max_padding_bitrate_bps = configured_max_padding_bitrate_bps_;
1081 }
stefan@webrtc.org0bae1fa2014-11-05 14:05:291082 return stats;
pbos@webrtc.org29d58392013-05-16 12:08:031083}
1084
Alex Narest78609d52017-10-20 08:37:471085void Call::SetBitrateAllocationStrategy(
1086 std::unique_ptr<rtc::BitrateAllocationStrategy>
1087 bitrate_allocation_strategy) {
Sebastian Janssone6256052018-05-04 12:08:151088 // TODO(srte): This function should be moved to RtpTransportControllerSend
1089 // when BitrateAllocator is moved there.
1090 struct Functor {
1091 void operator()() {
1092 bitrate_allocator_->SetBitrateAllocationStrategy(
1093 std::move(bitrate_allocation_strategy_));
1094 }
1095 BitrateAllocator* bitrate_allocator_;
1096 std::unique_ptr<rtc::BitrateAllocationStrategy>
1097 bitrate_allocation_strategy_;
1098 };
1099 transport_send_ptr_->GetWorkerQueue()->PostTask(Functor{
1100 bitrate_allocator_.get(), std::move(bitrate_allocation_strategy)});
Alex Narest78609d52017-10-20 08:37:471101}
1102
skvlad7a43d252016-03-22 22:32:271103void Call::SignalChannelNetworkState(MediaType media, NetworkState state) {
eladalonf3f5c0e2017-08-18 09:47:081104 RTC_DCHECK_CALLED_SEQUENTIALLY(&configuration_sequence_checker_);
skvlad7a43d252016-03-22 22:32:271105 switch (media) {
1106 case MediaType::AUDIO:
1107 audio_network_state_ = state;
1108 break;
1109 case MediaType::VIDEO:
1110 video_network_state_ = state;
1111 break;
1112 case MediaType::ANY:
1113 case MediaType::DATA:
1114 RTC_NOTREACHED();
1115 break;
1116 }
1117
1118 UpdateAggregateNetworkState();
pbos@webrtc.org26c0c412014-09-03 16:17:121119 {
skvlad7a43d252016-03-22 22:32:271120 ReadLockScoped read_lock(*send_crit_);
solenbergc7a8b082015-10-16 21:35:071121 for (auto& kv : audio_send_ssrcs_) {
skvlad7a43d252016-03-22 22:32:271122 kv.second->SignalNetworkState(audio_network_state_);
solenbergc7a8b082015-10-16 21:35:071123 }
pbos@webrtc.org26c0c412014-09-03 16:17:121124 }
1125 {
skvlad7a43d252016-03-22 22:32:271126 ReadLockScoped read_lock(*receive_crit_);
nissee4bcd6d2017-05-16 11:47:041127 for (AudioReceiveStream* audio_receive_stream : audio_receive_streams_) {
1128 audio_receive_stream->SignalNetworkState(audio_network_state_);
skvlad7a43d252016-03-22 22:32:271129 }
nissee4bcd6d2017-05-16 11:47:041130 for (VideoReceiveStream* video_receive_stream : video_receive_streams_) {
1131 video_receive_stream->SignalNetworkState(video_network_state_);
pbos@webrtc.org26c0c412014-09-03 16:17:121132 }
1133 }
1134}
1135
Stefan Holmer64be7fa2018-10-04 13:21:551136void Call::OnAudioTransportOverheadChanged(int transport_overhead_per_packet) {
1137 ReadLockScoped read_lock(*send_crit_);
1138 for (auto& kv : audio_send_ssrcs_) {
1139 kv.second->SetTransportOverhead(transport_overhead_per_packet);
michaelt79e05882016-11-08 10:50:091140 }
1141}
1142
skvlad7a43d252016-03-22 22:32:271143void Call::UpdateAggregateNetworkState() {
eladalonf3f5c0e2017-08-18 09:47:081144 RTC_DCHECK_CALLED_SEQUENTIALLY(&configuration_sequence_checker_);
skvlad7a43d252016-03-22 22:32:271145
1146 bool have_audio = false;
1147 bool have_video = false;
1148 {
1149 ReadLockScoped read_lock(*send_crit_);
Benjamin Wright41f9f2c2019-03-14 01:03:291150 if (!audio_send_ssrcs_.empty())
skvlad7a43d252016-03-22 22:32:271151 have_audio = true;
Benjamin Wright41f9f2c2019-03-14 01:03:291152 if (!video_send_ssrcs_.empty())
skvlad7a43d252016-03-22 22:32:271153 have_video = true;
1154 }
1155 {
1156 ReadLockScoped read_lock(*receive_crit_);
Benjamin Wright41f9f2c2019-03-14 01:03:291157 if (!audio_receive_streams_.empty())
skvlad7a43d252016-03-22 22:32:271158 have_audio = true;
Benjamin Wright41f9f2c2019-03-14 01:03:291159 if (!video_receive_streams_.empty())
skvlad7a43d252016-03-22 22:32:271160 have_video = true;
1161 }
1162
Sebastian Janssona06e9192018-03-07 17:49:551163 bool aggregate_network_up =
1164 ((have_video && video_network_state_ == kNetworkUp) ||
1165 (have_audio && audio_network_state_ == kNetworkUp));
skvlad7a43d252016-03-22 22:32:271166
Mirko Bonadei675513b2017-11-09 10:09:251167 RTC_LOG(LS_INFO) << "UpdateAggregateNetworkState: aggregate_state="
Sebastian Janssona06e9192018-03-07 17:49:551168 << (aggregate_network_up ? "up" : "down");
1169 {
1170 rtc::CritScope cs(&aggregate_network_up_crit_);
1171 aggregate_network_up_ = aggregate_network_up;
1172 }
Sebastian Janssone6256052018-05-04 12:08:151173 transport_send_ptr_->OnNetworkAvailability(aggregate_network_up);
skvlad7a43d252016-03-22 22:32:271174}
1175
stefanc1aeaf02015-10-15 14:26:071176void Call::OnSentPacket(const rtc::SentPacket& sent_packet) {
asapersson35151f32016-05-03 06:44:011177 video_send_delay_stats_->OnSentPacket(sent_packet.packet_id,
1178 clock_->TimeInMilliseconds());
Sebastian Janssone6256052018-05-04 12:08:151179 transport_send_ptr_->OnSentPacket(sent_packet);
stefanc1aeaf02015-10-15 14:26:071180}
1181
Sebastian Jansson2701bc92018-12-11 14:02:471182void Call::OnStartRateUpdate(DataRate start_rate) {
1183 if (!transport_send_ptr_->GetWorkerQueue()->IsCurrent()) {
1184 transport_send_ptr_->GetWorkerQueue()->PostTask(
1185 [this, start_rate] { this->OnStartRateUpdate(start_rate); });
1186 return;
1187 }
1188 bitrate_allocator_->UpdateStartRate(start_rate.bps<uint32_t>());
1189}
1190
Sebastian Jansson19704ec2018-03-12 14:59:121191void Call::OnTargetTransferRate(TargetTransferRate msg) {
Piotr (Peter) Slatalacc8e8bb2018-11-15 16:26:191192 // TODO(bugs.webrtc.org/9719)
1193 // Call::OnTargetTransferRate requires that on target transfer rate is invoked
1194 // from the worker queue (because bitrate_allocator_ requires it). Media
1195 // transport does not guarantee the callback on the worker queue.
1196 // When the threading model for MediaTransportInterface is update, reconsider
1197 // changing this implementation.
1198 if (!transport_send_ptr_->GetWorkerQueue()->IsCurrent()) {
1199 transport_send_ptr_->GetWorkerQueue()->PostTask(
1200 [this, msg] { this->OnTargetTransferRate(msg); });
1201 return;
1202 }
1203
Sebastian Jansson19704ec2018-03-12 14:59:121204 uint32_t target_bitrate_bps = msg.target_rate.bps();
1205 int loss_ratio_255 = msg.network_estimate.loss_rate_ratio * 255;
1206 uint8_t fraction_loss =
1207 rtc::dchecked_cast<uint8_t>(rtc::SafeClamp(loss_ratio_255, 0, 255));
1208 int64_t rtt_ms = msg.network_estimate.round_trip_time.ms();
1209 int64_t probing_interval_ms = msg.network_estimate.bwe_period.ms();
1210 uint32_t bandwidth_bps = msg.network_estimate.bandwidth.bps();
1211 {
1212 rtc::CritScope cs(&last_bandwidth_bps_crit_);
1213 last_bandwidth_bps_ = bandwidth_bps;
1214 }
nisse559af382017-03-21 13:41:121215 // For controlling the rate of feedback messages.
1216 receive_side_cc_.OnBitrateChanged(target_bitrate_bps);
Sebastian Jansson89c94b92018-11-20 16:16:361217 bitrate_allocator_->OnNetworkChanged(target_bitrate_bps, bandwidth_bps,
1218 fraction_loss, rtt_ms,
1219 probing_interval_ms);
mflodman0e7e2592015-11-13 05:02:421220
asaperssonce2e1362016-09-09 07:13:351221 // Ignore updates if bitrate is zero (the aggregate network state is down).
1222 if (target_bitrate_bps == 0) {
stefan18adf0a2015-11-17 14:24:561223 rtc::CritScope lock(&bitrate_crit_);
asaperssonce2e1362016-09-09 07:13:351224 estimated_send_bitrate_kbps_counter_.ProcessAndPause();
1225 pacer_bitrate_kbps_counter_.ProcessAndPause();
1226 return;
stefan18adf0a2015-11-17 14:24:561227 }
asaperssonce2e1362016-09-09 07:13:351228
1229 bool sending_video;
1230 {
1231 ReadLockScoped read_lock(*send_crit_);
1232 sending_video = !video_send_streams_.empty();
1233 }
1234
1235 rtc::CritScope lock(&bitrate_crit_);
1236 if (!sending_video) {
1237 // Do not update the stats if we are not sending video.
1238 estimated_send_bitrate_kbps_counter_.ProcessAndPause();
1239 pacer_bitrate_kbps_counter_.ProcessAndPause();
1240 return;
1241 }
1242 estimated_send_bitrate_kbps_counter_.Add(target_bitrate_bps / 1000);
1243 // Pacer bitrate may be higher than bitrate estimate if enforcing min bitrate.
1244 uint32_t pacer_bitrate_bps =
1245 std::max(target_bitrate_bps, min_allocated_send_bitrate_bps_);
1246 pacer_bitrate_kbps_counter_.Add(pacer_bitrate_bps / 1000);
perkj71ee44c2016-06-15 07:47:531247}
mflodman101f2502016-06-09 15:21:191248
perkj71ee44c2016-06-15 07:47:531249void Call::OnAllocationLimitsChanged(uint32_t min_send_bitrate_bps,
philipelf69e7682018-02-28 12:06:281250 uint32_t max_padding_bitrate_bps,
Sebastian Jansson79f0d4d2019-01-23 08:41:431251 uint32_t total_bitrate_bps) {
Sebastian Janssone6256052018-05-04 12:08:151252 transport_send_ptr_->SetAllocatedSendBitrateLimits(
Oleh Prypin04d49502018-03-19 13:29:421253 min_send_bitrate_bps, max_padding_bitrate_bps, total_bitrate_bps);
Sebastian Jansson35fa2802018-10-01 07:16:121254
Piotr (Peter) Slatala48c54932019-01-28 14:50:381255 {
1256 rtc::CritScope lock(&target_observer_crit_);
1257 if (media_transport_) {
1258 MediaTransportAllocatedBitrateLimits limits;
1259 limits.min_pacing_rate = DataRate::bps(min_send_bitrate_bps);
1260 limits.max_padding_bitrate = DataRate::bps(max_padding_bitrate_bps);
1261 limits.max_total_allocated_bitrate = DataRate::bps(total_bitrate_bps);
1262 media_transport_->SetAllocatedBitrateLimits(limits);
1263 }
1264 }
1265
perkj71ee44c2016-06-15 07:47:531266 rtc::CritScope lock(&bitrate_crit_);
1267 min_allocated_send_bitrate_bps_ = min_send_bitrate_bps;
sprang9c0b5512016-07-06 07:54:281268 configured_max_padding_bitrate_bps_ = max_padding_bitrate_bps;
mflodman0e7e2592015-11-13 05:02:421269}
1270
pbos8fc7fa72015-07-15 15:02:581271void Call::ConfigureSync(const std::string& sync_group) {
1272 // Set sync only if there was no previous one.
solenberg3ebbcb52017-01-31 11:58:401273 if (sync_group.empty())
pbos8fc7fa72015-07-15 15:02:581274 return;
1275
1276 AudioReceiveStream* sync_audio_stream = nullptr;
1277 // Find existing audio stream.
1278 const auto it = sync_stream_mapping_.find(sync_group);
1279 if (it != sync_stream_mapping_.end()) {
1280 sync_audio_stream = it->second;
1281 } else {
1282 // No configured audio stream, see if we can find one.
nissee4bcd6d2017-05-16 11:47:041283 for (AudioReceiveStream* stream : audio_receive_streams_) {
1284 if (stream->config().sync_group == sync_group) {
pbos8fc7fa72015-07-15 15:02:581285 if (sync_audio_stream != nullptr) {
Mirko Bonadei675513b2017-11-09 10:09:251286 RTC_LOG(LS_WARNING)
1287 << "Attempting to sync more than one audio stream "
1288 "within the same sync group. This is not "
1289 "supported in the current implementation.";
pbos8fc7fa72015-07-15 15:02:581290 break;
1291 }
nissee4bcd6d2017-05-16 11:47:041292 sync_audio_stream = stream;
pbos8fc7fa72015-07-15 15:02:581293 }
1294 }
1295 }
1296 if (sync_audio_stream)
1297 sync_stream_mapping_[sync_group] = sync_audio_stream;
1298 size_t num_synced_streams = 0;
1299 for (VideoReceiveStream* video_stream : video_receive_streams_) {
1300 if (video_stream->config().sync_group != sync_group)
1301 continue;
1302 ++num_synced_streams;
1303 if (num_synced_streams > 1) {
1304 // TODO(pbos): Support synchronizing more than one A/V pair.
1305 // https://code.google.com/p/webrtc/issues/detail?id=4762
Mirko Bonadei675513b2017-11-09 10:09:251306 RTC_LOG(LS_WARNING)
1307 << "Attempting to sync more than one audio/video pair "
1308 "within the same sync group. This is not supported in "
1309 "the current implementation.";
pbos8fc7fa72015-07-15 15:02:581310 }
1311 // Only sync the first A/V pair within this sync group.
solenberg3ebbcb52017-01-31 11:58:401312 if (num_synced_streams == 1) {
1313 // sync_audio_stream may be null and that's ok.
1314 video_stream->SetSync(sync_audio_stream);
pbos8fc7fa72015-07-15 15:02:581315 } else {
solenberg3ebbcb52017-01-31 11:58:401316 video_stream->SetSync(nullptr);
pbos8fc7fa72015-07-15 15:02:581317 }
1318 }
1319}
1320
Fredrik Solenberg23fba1f2015-04-29 13:24:011321PacketReceiver::DeliveryStatus Call::DeliverRtcp(MediaType media_type,
1322 const uint8_t* packet,
1323 size_t length) {
Peter Boström6f28cf02015-12-07 22:17:151324 TRACE_EVENT0("webrtc", "Call::DeliverRtcp");
mflodman3d7db262016-04-29 07:57:131325 // TODO(pbos): Make sure it's a valid packet.
pbos@webrtc.orgcaba2d22014-05-14 13:57:121326 // Return DELIVERY_UNKNOWN_SSRC if it can be determined that
1327 // there's no receiver of the packet.
asapersson250fd972016-09-08 07:07:211328 if (received_bytes_per_second_counter_.HasSample()) {
1329 // First RTP packet has been received.
1330 received_bytes_per_second_counter_.Add(static_cast<int>(length));
1331 received_rtcp_bytes_per_second_counter_.Add(static_cast<int>(length));
1332 }
pbos@webrtc.org29d58392013-05-16 12:08:031333 bool rtcp_delivered = false;
Fredrik Solenberg23fba1f2015-04-29 13:24:011334 if (media_type == MediaType::ANY || media_type == MediaType::VIDEO) {
pbos@webrtc.org26c0c412014-09-03 16:17:121335 ReadLockScoped read_lock(*receive_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:011336 for (VideoReceiveStream* stream : video_receive_streams_) {
mflodman3d7db262016-04-29 07:57:131337 if (stream->DeliverRtcp(packet, length))
pbos@webrtc.org40523702013-08-05 12:49:221338 rtcp_delivered = true;
mflodman3d7db262016-04-29 07:57:131339 }
1340 }
1341 if (media_type == MediaType::ANY || media_type == MediaType::AUDIO) {
1342 ReadLockScoped read_lock(*receive_crit_);
nissee4bcd6d2017-05-16 11:47:041343 for (AudioReceiveStream* stream : audio_receive_streams_) {
Niels Möller8fb1a6a2019-03-05 13:29:421344 stream->DeliverRtcp(packet, length);
1345 rtcp_delivered = true;
pbos@webrtc.orgbbb07e62013-08-05 12:01:361346 }
1347 }
Fredrik Solenberg23fba1f2015-04-29 13:24:011348 if (media_type == MediaType::ANY || media_type == MediaType::VIDEO) {
pbos@webrtc.org26c0c412014-09-03 16:17:121349 ReadLockScoped read_lock(*send_crit_);
Fredrik Solenberg23fba1f2015-04-29 13:24:011350 for (VideoSendStream* stream : video_send_streams_) {
Niels Möller8fb1a6a2019-03-05 13:29:421351 stream->DeliverRtcp(packet, length);
1352 rtcp_delivered = true;
pbos@webrtc.org29d58392013-05-16 12:08:031353 }
1354 }
mflodman3d7db262016-04-29 07:57:131355 if (media_type == MediaType::ANY || media_type == MediaType::AUDIO) {
1356 ReadLockScoped read_lock(*send_crit_);
1357 for (auto& kv : audio_send_ssrcs_) {
Niels Möller8fb1a6a2019-03-05 13:29:421358 kv.second->DeliverRtcp(packet, length);
1359 rtcp_delivered = true;
mflodman3d7db262016-04-29 07:57:131360 }
1361 }
1362
Elad Alon4a87e1c2017-10-03 14:11:341363 if (rtcp_delivered) {
Karl Wiberg918f50c2018-07-05 09:40:331364 event_log_->Log(absl::make_unique<RtcEventRtcpPacketIncoming>(
Elad Alon4a87e1c2017-10-03 14:11:341365 rtc::MakeArrayView(packet, length)));
1366 }
mflodman3d7db262016-04-29 07:57:131367
pbos@webrtc.orgcaba2d22014-05-14 13:57:121368 return rtcp_delivered ? DELIVERY_OK : DELIVERY_PACKET_ERROR;
pbos@webrtc.org29d58392013-05-16 12:08:031369}
1370
Fredrik Solenberg23fba1f2015-04-29 13:24:011371PacketReceiver::DeliveryStatus Call::DeliverRtp(MediaType media_type,
Danil Chapovalov292a73e2017-12-07 16:00:401372 rtc::CopyOnWriteBuffer packet,
Niels Möller70082872018-08-07 09:03:121373 int64_t packet_time_us) {
Peter Boström6f28cf02015-12-07 22:17:151374 TRACE_EVENT0("webrtc", "Call::DeliverRtp");
nissed44ce052017-02-06 10:23:001375
Danil Chapovalovb709cf82017-10-04 12:01:451376 RtpPacketReceived parsed_packet;
Danil Chapovalov292a73e2017-12-07 16:00:401377 if (!parsed_packet.Parse(std::move(packet)))
Danil Chapovalovb709cf82017-10-04 12:01:451378 return DELIVERY_PACKET_ERROR;
1379
Niels Möller70082872018-08-07 09:03:121380 if (packet_time_us != -1) {
Sebastian Janssonb34556e2018-03-21 13:38:321381 if (receive_time_calculator_) {
Christoffer Rodbro992a8682018-10-30 14:14:361382 // Repair packet_time_us for clock resets by comparing a new read of
1383 // the same clock (TimeUTCMicros) to a monotonic clock reading.
Niels Möller70082872018-08-07 09:03:121384 packet_time_us = receive_time_calculator_->ReconcileReceiveTimes(
Christoffer Rodbro992a8682018-10-30 14:14:361385 packet_time_us, rtc::TimeUTCMicros(), clock_->TimeInMicroseconds());
Sebastian Janssonb34556e2018-03-21 13:38:321386 }
Niels Möller70082872018-08-07 09:03:121387 parsed_packet.set_arrival_time_ms((packet_time_us + 500) / 1000);
Danil Chapovalovb709cf82017-10-04 12:01:451388 } else {
1389 parsed_packet.set_arrival_time_ms(clock_->TimeInMilliseconds());
1390 }
nissed44ce052017-02-06 10:23:001391
sprangc1abde72017-07-11 10:56:211392 // We might get RTP keep-alive packets in accordance with RFC6263 section 4.6.
1393 // These are empty (zero length payload) RTP packets with an unsignaled
1394 // payload type.
Danil Chapovalovb709cf82017-10-04 12:01:451395 const bool is_keep_alive_packet = parsed_packet.payload_size() == 0;
sprangc1abde72017-07-11 10:56:211396
1397 RTC_DCHECK(media_type == MediaType::AUDIO || media_type == MediaType::VIDEO ||
1398 is_keep_alive_packet);
1399
sprangc1abde72017-07-11 10:56:211400 ReadLockScoped read_lock(*receive_crit_);
Danil Chapovalovb709cf82017-10-04 12:01:451401 auto it = receive_rtp_config_.find(parsed_packet.Ssrc());
nisse0f15f922017-06-21 08:05:221402 if (it == receive_rtp_config_.end()) {
Mirko Bonadei675513b2017-11-09 10:09:251403 RTC_LOG(LS_ERROR) << "receive_rtp_config_ lookup failed for ssrc "
1404 << parsed_packet.Ssrc();
nisse0f15f922017-06-21 08:05:221405 // Destruction of the receive stream, including deregistering from the
1406 // RtpDemuxer, is not protected by the |receive_crit_| lock. But
1407 // deregistering in the |receive_rtp_config_| map is protected by that lock.
1408 // So by not passing the packet on to demuxing in this case, we prevent
1409 // incoming packets to be passed on via the demuxer to a receive stream
1410 // which is being torned down.
1411 return DELIVERY_UNKNOWN_SSRC;
1412 }
Jonas Oreland6d835922019-03-18 09:59:401413
Danil Chapovalovb709cf82017-10-04 12:01:451414 parsed_packet.IdentifyExtensions(it->second.extensions);
nisse0f15f922017-06-21 08:05:221415
Danil Chapovalovb709cf82017-10-04 12:01:451416 NotifyBweOfReceivedPacket(parsed_packet, media_type);
nissed44ce052017-02-06 10:23:001417
Danil Chapovalovcbf5b732017-12-08 13:05:201418 // RateCounters expect input parameter as int, save it as int,
1419 // instead of converting each time it is passed to RateCounter::Add below.
1420 int length = static_cast<int>(parsed_packet.size());
nissee5ad5ca2017-03-30 06:57:431421 if (media_type == MediaType::AUDIO) {
Danil Chapovalovb709cf82017-10-04 12:01:451422 if (audio_receiver_controller_.OnRtpPacket(parsed_packet)) {
Danil Chapovalov292a73e2017-12-07 16:00:401423 received_bytes_per_second_counter_.Add(length);
1424 received_audio_bytes_per_second_counter_.Add(length);
Elad Alon4a87e1c2017-10-03 14:11:341425 event_log_->Log(
Karl Wiberg918f50c2018-07-05 09:40:331426 absl::make_unique<RtcEventRtpPacketIncoming>(parsed_packet));
Danil Chapovalovb709cf82017-10-04 12:01:451427 const int64_t arrival_time_ms = parsed_packet.arrival_time_ms();
saza0d7f04d2017-07-04 11:05:061428 if (!first_received_rtp_audio_ms_) {
1429 first_received_rtp_audio_ms_.emplace(arrival_time_ms);
1430 }
1431 last_received_rtp_audio_ms_.emplace(arrival_time_ms);
nisse657bab22017-02-21 14:28:101432 return DELIVERY_OK;
Fredrik Solenberg23fba1f2015-04-29 13:24:011433 }
nissee4bcd6d2017-05-16 11:47:041434 } else if (media_type == MediaType::VIDEO) {
Niels Möller2ff1f2a2018-08-09 14:16:341435 parsed_packet.set_payload_type_frequency(kVideoPayloadTypeFrequency);
Danil Chapovalovb709cf82017-10-04 12:01:451436 if (video_receiver_controller_.OnRtpPacket(parsed_packet)) {
Danil Chapovalov292a73e2017-12-07 16:00:401437 received_bytes_per_second_counter_.Add(length);
1438 received_video_bytes_per_second_counter_.Add(length);
Elad Alon4a87e1c2017-10-03 14:11:341439 event_log_->Log(
Karl Wiberg918f50c2018-07-05 09:40:331440 absl::make_unique<RtcEventRtpPacketIncoming>(parsed_packet));
Danil Chapovalovb709cf82017-10-04 12:01:451441 const int64_t arrival_time_ms = parsed_packet.arrival_time_ms();
saza0d7f04d2017-07-04 11:05:061442 if (!first_received_rtp_video_ms_) {
1443 first_received_rtp_video_ms_.emplace(arrival_time_ms);
1444 }
1445 last_received_rtp_video_ms_.emplace(arrival_time_ms);
nisse5c29a7a2017-02-16 14:52:321446 return DELIVERY_OK;
Fredrik Solenberg23fba1f2015-04-29 13:24:011447 }
1448 }
1449 return DELIVERY_UNKNOWN_SSRC;
pbos@webrtc.org29d58392013-05-16 12:08:031450}
1451
stefan68786d22015-09-08 12:36:151452PacketReceiver::DeliveryStatus Call::DeliverPacket(
1453 MediaType media_type,
Danil Chapovalov292a73e2017-12-07 16:00:401454 rtc::CopyOnWriteBuffer packet,
Niels Möller70082872018-08-07 09:03:121455 int64_t packet_time_us) {
eladalond1dd2f72017-08-25 09:55:571456 RTC_DCHECK_CALLED_SEQUENTIALLY(&configuration_sequence_checker_);
Danil Chapovalov292a73e2017-12-07 16:00:401457 if (RtpHeaderParser::IsRtcp(packet.cdata(), packet.size()))
1458 return DeliverRtcp(media_type, packet.cdata(), packet.size());
pbos@webrtc.org29d58392013-05-16 12:08:031459
Niels Möller70082872018-08-07 09:03:121460 return DeliverRtp(media_type, std::move(packet), packet_time_us);
pbos@webrtc.org29d58392013-05-16 12:08:031461}
1462
nissed2ef3142017-05-11 15:00:581463void Call::OnRecoveredPacket(const uint8_t* packet, size_t length) {
Danil Chapovalovb709cf82017-10-04 12:01:451464 RtpPacketReceived parsed_packet;
1465 if (!parsed_packet.Parse(packet, length))
nissed2ef3142017-05-11 15:00:581466 return;
1467
Danil Chapovalovb709cf82017-10-04 12:01:451468 parsed_packet.set_recovered(true);
nissed2ef3142017-05-11 15:00:581469
brandtrcaea68f2017-08-23 07:55:171470 ReadLockScoped read_lock(*receive_crit_);
Danil Chapovalovb709cf82017-10-04 12:01:451471 auto it = receive_rtp_config_.find(parsed_packet.Ssrc());
brandtrcaea68f2017-08-23 07:55:171472 if (it == receive_rtp_config_.end()) {
Mirko Bonadei675513b2017-11-09 10:09:251473 RTC_LOG(LS_ERROR) << "receive_rtp_config_ lookup failed for ssrc "
1474 << parsed_packet.Ssrc();
brandtrcaea68f2017-08-23 07:55:171475 // Destruction of the receive stream, including deregistering from the
1476 // RtpDemuxer, is not protected by the |receive_crit_| lock. But
1477 // deregistering in the |receive_rtp_config_| map is protected by that lock.
1478 // So by not passing the packet on to demuxing in this case, we prevent
1479 // incoming packets to be passed on via the demuxer to a receive stream
Erik Språng09708512018-03-14 14:16:501480 // which is being torn down.
brandtrcaea68f2017-08-23 07:55:171481 return;
1482 }
Danil Chapovalovb709cf82017-10-04 12:01:451483 parsed_packet.IdentifyExtensions(it->second.extensions);
brandtrcaea68f2017-08-23 07:55:171484
1485 // TODO(brandtr): Update here when we support protecting audio packets too.
Niels Möller2ff1f2a2018-08-09 14:16:341486 parsed_packet.set_payload_type_frequency(kVideoPayloadTypeFrequency);
Danil Chapovalovb709cf82017-10-04 12:01:451487 video_receiver_controller_.OnRtpPacket(parsed_packet);
brandtr4e523862016-10-19 06:50:451488}
1489
nissed44ce052017-02-06 10:23:001490void Call::NotifyBweOfReceivedPacket(const RtpPacketReceived& packet,
1491 MediaType media_type) {
1492 auto it = receive_rtp_config_.find(packet.Ssrc());
nisse4709e892017-02-07 09:18:431493 bool use_send_side_bwe =
1494 (it != receive_rtp_config_.end()) && it->second.use_send_side_bwe;
nissed44ce052017-02-06 10:23:001495
brandtrb29e6522016-12-21 14:37:181496 RTPHeader header;
1497 packet.GetHeader(&header);
nissed44ce052017-02-06 10:23:001498
nisse4709e892017-02-07 09:18:431499 if (!use_send_side_bwe && header.extension.hasTransportSequenceNumber) {
nissed44ce052017-02-06 10:23:001500 // Inconsistent configuration of send side BWE. Do nothing.
1501 // TODO(nisse): Without this check, we may produce RTCP feedback
1502 // packets even when not negotiated. But it would be cleaner to
1503 // move the check down to RTCPSender::SendFeedbackPacket, which
1504 // would also help the PacketRouter to select an appropriate rtp
1505 // module in the case that some, but not all, have RTCP feedback
1506 // enabled.
1507 return;
1508 }
1509 // For audio, we only support send side BWE.
nissee5ad5ca2017-03-30 06:57:431510 if (media_type == MediaType::VIDEO ||
nisse4709e892017-02-07 09:18:431511 (use_send_side_bwe && header.extension.hasTransportSequenceNumber)) {
nisse559af382017-03-21 13:41:121512 receive_side_cc_.OnReceivedPacket(
nissed44ce052017-02-06 10:23:001513 packet.arrival_time_ms(), packet.payload_size() + packet.padding_size(),
1514 header);
1515 }
brandtrb29e6522016-12-21 14:37:181516}
1517
pbos@webrtc.org29d58392013-05-16 12:08:031518} // namespace internal
nisseb8f9a322017-03-27 12:36:151519
pbos@webrtc.org29d58392013-05-16 12:08:031520} // namespace webrtc