blob: fedb64d2997a07d4fc7e3d6aa7326b393a148d49 [file] [log] [blame]
brandtr76648da2016-10-20 04:54:48 -07001/*
2 * Copyright (c) 2016 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
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020011#include "call/flexfec_receive_stream_impl.h"
brandtr76648da2016-10-20 04:54:48 -070012
Yves Gerey3e707812018-11-28 16:47:49 +010013#include <stddef.h>
14#include <cstdint>
brandtrfa5a3682017-01-17 01:33:54 -080015#include <string>
Yves Gerey3e707812018-11-28 16:47:49 +010016#include <vector>
brandtrb29e6522016-12-21 06:37:18 -080017
Yves Gerey3e707812018-11-28 16:47:49 +010018#include "api/array_view.h"
19#include "api/call/transport.h"
Steve Anton10542f22019-01-11 09:11:00 -080020#include "api/rtp_parameters.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020021#include "call/rtp_stream_receiver_controller_interface.h"
22#include "modules/rtp_rtcp/include/flexfec_receiver.h"
23#include "modules/rtp_rtcp/include/receive_statistics.h"
24#include "modules/rtp_rtcp/include/rtp_rtcp.h"
25#include "modules/rtp_rtcp/source/rtp_packet_received.h"
26#include "modules/utility/include/process_thread.h"
27#include "rtc_base/checks.h"
28#include "rtc_base/location.h"
29#include "rtc_base/logging.h"
Jonas Olsson0a713b62018-04-04 15:49:32 +020030#include "rtc_base/strings/string_builder.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020031#include "system_wrappers/include/clock.h"
brandtr76648da2016-10-20 04:54:48 -070032
33namespace webrtc {
34
35std::string FlexfecReceiveStream::Stats::ToString(int64_t time_ms) const {
Jonas Olsson0a713b62018-04-04 15:49:32 +020036 char buf[1024];
37 rtc::SimpleStringBuilder ss(buf);
brandtr76648da2016-10-20 04:54:48 -070038 ss << "FlexfecReceiveStream stats: " << time_ms
39 << ", {flexfec_bitrate_bps: " << flexfec_bitrate_bps << "}";
40 return ss.str();
41}
42
brandtr1cfbd602016-12-08 04:17:53 -080043std::string FlexfecReceiveStream::Config::ToString() const {
Jonas Olsson0a713b62018-04-04 15:49:32 +020044 char buf[1024];
45 rtc::SimpleStringBuilder ss(buf);
brandtr1cfbd602016-12-08 04:17:53 -080046 ss << "{payload_type: " << payload_type;
47 ss << ", remote_ssrc: " << remote_ssrc;
48 ss << ", local_ssrc: " << local_ssrc;
49 ss << ", protected_media_ssrcs: [";
50 size_t i = 0;
51 for (; i + 1 < protected_media_ssrcs.size(); ++i)
52 ss << protected_media_ssrcs[i] << ", ";
53 if (!protected_media_ssrcs.empty())
54 ss << protected_media_ssrcs[i];
55 ss << "], transport_cc: " << (transport_cc ? "on" : "off");
brandtrb29e6522016-12-21 06:37:18 -080056 ss << ", rtp_header_extensions: [";
brandtr1cfbd602016-12-08 04:17:53 -080057 i = 0;
brandtrb29e6522016-12-21 06:37:18 -080058 for (; i + 1 < rtp_header_extensions.size(); ++i)
59 ss << rtp_header_extensions[i].ToString() << ", ";
60 if (!rtp_header_extensions.empty())
61 ss << rtp_header_extensions[i].ToString();
brandtr1cfbd602016-12-08 04:17:53 -080062 ss << "]}";
63 return ss.str();
64}
65
brandtr8313a6f2017-01-13 07:41:19 -080066bool FlexfecReceiveStream::Config::IsCompleteAndEnabled() const {
67 // Check if FlexFEC is enabled.
68 if (payload_type < 0)
69 return false;
70 // Do we have the necessary SSRC information?
71 if (remote_ssrc == 0)
72 return false;
73 // TODO(brandtr): Update this check when we support multistream protection.
74 if (protected_media_ssrcs.size() != 1u)
75 return false;
76 return true;
77}
78
brandtr76648da2016-10-20 04:54:48 -070079namespace {
80
81// TODO(brandtr): Update this function when we support multistream protection.
brandtr43c31e72016-11-15 05:26:45 -080082std::unique_ptr<FlexfecReceiver> MaybeCreateFlexfecReceiver(
Sebastian Jansson8026d602019-03-04 19:39:01 +010083 Clock* clock,
brandtr43c31e72016-11-15 05:26:45 -080084 const FlexfecReceiveStream::Config& config,
brandtrb29e6522016-12-21 06:37:18 -080085 RecoveredPacketReceiver* recovered_packet_receiver) {
brandtr1cfbd602016-12-08 04:17:53 -080086 if (config.payload_type < 0) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010087 RTC_LOG(LS_WARNING)
88 << "Invalid FlexFEC payload type given. "
89 << "This FlexfecReceiveStream will therefore be useless.";
brandtr76648da2016-10-20 04:54:48 -070090 return nullptr;
brandtr43c31e72016-11-15 05:26:45 -080091 }
brandtr1cfbd602016-12-08 04:17:53 -080092 RTC_DCHECK_GE(config.payload_type, 0);
93 RTC_DCHECK_LE(config.payload_type, 127);
94 if (config.remote_ssrc == 0) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010095 RTC_LOG(LS_WARNING)
96 << "Invalid FlexFEC SSRC given. "
97 << "This FlexfecReceiveStream will therefore be useless.";
brandtr43c31e72016-11-15 05:26:45 -080098 return nullptr;
99 }
100 if (config.protected_media_ssrcs.empty()) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100101 RTC_LOG(LS_WARNING)
102 << "No protected media SSRC supplied. "
103 << "This FlexfecReceiveStream will therefore be useless.";
brandtr43c31e72016-11-15 05:26:45 -0800104 return nullptr;
105 }
106
107 if (config.protected_media_ssrcs.size() > 1) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100108 RTC_LOG(LS_WARNING)
brandtr76648da2016-10-20 04:54:48 -0700109 << "The supplied FlexfecConfig contained multiple protected "
110 "media streams, but our implementation currently only "
brandtr43c31e72016-11-15 05:26:45 -0800111 "supports protecting a single media stream. "
112 "To avoid confusion, disabling FlexFEC completely.";
113 return nullptr;
brandtr76648da2016-10-20 04:54:48 -0700114 }
brandtr43c31e72016-11-15 05:26:45 -0800115 RTC_DCHECK_EQ(1U, config.protected_media_ssrcs.size());
Sebastian Jansson8026d602019-03-04 19:39:01 +0100116 return std::unique_ptr<FlexfecReceiver>(new FlexfecReceiver(
117 clock, config.remote_ssrc, config.protected_media_ssrcs[0],
118 recovered_packet_receiver));
brandtr76648da2016-10-20 04:54:48 -0700119}
120
brandtrfa5a3682017-01-17 01:33:54 -0800121std::unique_ptr<RtpRtcp> CreateRtpRtcpModule(
Sebastian Jansson8026d602019-03-04 19:39:01 +0100122 Clock* clock,
brandtrfa5a3682017-01-17 01:33:54 -0800123 ReceiveStatistics* receive_statistics,
124 Transport* rtcp_send_transport,
125 RtcpRttStats* rtt_stats) {
126 RtpRtcp::Configuration configuration;
127 configuration.audio = false;
128 configuration.receiver_only = true;
Sebastian Jansson8026d602019-03-04 19:39:01 +0100129 configuration.clock = clock;
brandtrfa5a3682017-01-17 01:33:54 -0800130 configuration.receive_statistics = receive_statistics;
131 configuration.outgoing_transport = rtcp_send_transport;
132 configuration.rtt_stats = rtt_stats;
Danil Chapovalovc44f6cc2019-03-06 11:31:09 +0100133 return RtpRtcp::Create(configuration);
brandtrfa5a3682017-01-17 01:33:54 -0800134}
135
brandtr76648da2016-10-20 04:54:48 -0700136} // namespace
137
brandtr7250b392016-12-19 01:13:46 -0800138FlexfecReceiveStreamImpl::FlexfecReceiveStreamImpl(
Sebastian Jansson8026d602019-03-04 19:39:01 +0100139 Clock* clock,
nisse0f15f922017-06-21 01:05:22 -0700140 RtpStreamReceiverControllerInterface* receiver_controller,
brandtr446fcb62016-12-08 04:14:24 -0800141 const Config& config,
brandtrfa5a3682017-01-17 01:33:54 -0800142 RecoveredPacketReceiver* recovered_packet_receiver,
143 RtcpRttStats* rtt_stats,
144 ProcessThread* process_thread)
145 : config_(config),
Sebastian Jansson8026d602019-03-04 19:39:01 +0100146 receiver_(MaybeCreateFlexfecReceiver(clock,
147 config_,
148 recovered_packet_receiver)),
149 rtp_receive_statistics_(ReceiveStatistics::Create(clock)),
150 rtp_rtcp_(CreateRtpRtcpModule(clock,
151 rtp_receive_statistics_.get(),
brandtrfa5a3682017-01-17 01:33:54 -0800152 config_.rtcp_send_transport,
153 rtt_stats)),
154 process_thread_(process_thread) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100155 RTC_LOG(LS_INFO) << "FlexfecReceiveStreamImpl: " << config_.ToString();
brandtrfa5a3682017-01-17 01:33:54 -0800156
157 // RTCP reporting.
brandtrfa5a3682017-01-17 01:33:54 -0800158 rtp_rtcp_->SetRTCPStatus(config_.rtcp_mode);
159 rtp_rtcp_->SetSSRC(config_.local_ssrc);
tommidea489f2017-03-03 03:20:24 -0800160 process_thread_->RegisterModule(rtp_rtcp_.get(), RTC_FROM_HERE);
nisse0f15f922017-06-21 01:05:22 -0700161
162 // Register with transport.
163 // TODO(nisse): OnRtpPacket in this class delegates all real work to
164 // |receiver_|. So maybe we don't need to implement RtpPacketSinkInterface
165 // here at all, we'd then delete the OnRtpPacket method and instead register
166 // |receiver_| as the RtpPacketSinkInterface for this stream.
167 // TODO(nisse): Passing |this| from the constructor to the RtpDemuxer, before
168 // the object is fully initialized, is risky. But it works in this case
169 // because locking in our caller, Call::CreateFlexfecReceiveStream, ensures
170 // that the demuxer doesn't call OnRtpPacket before this object is fully
171 // constructed. Registering |receiver_| instead of |this| would solve this
172 // problem too.
173 rtp_stream_receiver_ =
174 receiver_controller->CreateReceiver(config_.remote_ssrc, this);
brandtr76648da2016-10-20 04:54:48 -0700175}
176
brandtr7250b392016-12-19 01:13:46 -0800177FlexfecReceiveStreamImpl::~FlexfecReceiveStreamImpl() {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100178 RTC_LOG(LS_INFO) << "~FlexfecReceiveStreamImpl: " << config_.ToString();
brandtrfa5a3682017-01-17 01:33:54 -0800179 process_thread_->DeRegisterModule(rtp_rtcp_.get());
brandtr76648da2016-10-20 04:54:48 -0700180}
181
nisse5c29a7a2017-02-16 06:52:32 -0800182void FlexfecReceiveStreamImpl::OnRtpPacket(const RtpPacketReceived& packet) {
brandtr76648da2016-10-20 04:54:48 -0700183 if (!receiver_)
nisse5c29a7a2017-02-16 06:52:32 -0800184 return;
brandtrfa5a3682017-01-17 01:33:54 -0800185
nisse5c29a7a2017-02-16 06:52:32 -0800186 receiver_->OnRtpPacket(packet);
brandtrfa5a3682017-01-17 01:33:54 -0800187
188 // Do not report media packets in the RTCP RRs generated by |rtp_rtcp_|.
189 if (packet.Ssrc() == config_.remote_ssrc) {
Niels Möller1f3206c2018-09-14 08:26:32 +0200190 rtp_receive_statistics_->OnRtpPacket(packet);
brandtrfa5a3682017-01-17 01:33:54 -0800191 }
brandtr76648da2016-10-20 04:54:48 -0700192}
193
brandtr76648da2016-10-20 04:54:48 -0700194// TODO(brandtr): Implement this member function when we have designed the
195// stats for FlexFEC.
brandtr7250b392016-12-19 01:13:46 -0800196FlexfecReceiveStreamImpl::Stats FlexfecReceiveStreamImpl::GetStats() const {
197 return FlexfecReceiveStream::Stats();
brandtr76648da2016-10-20 04:54:48 -0700198}
199
eladalon42f44f92017-07-25 06:40:06 -0700200const FlexfecReceiveStream::Config& FlexfecReceiveStreamImpl::GetConfig()
201 const {
202 return config_;
203}
204
brandtr76648da2016-10-20 04:54:48 -0700205} // namespace webrtc