blob: 679c5c56e0313d7858efffba249c423efaa6f33d [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
brandtrfa5a3682017-01-17 01:33:54 -080013#include <string>
brandtrb29e6522016-12-21 06:37:18 -080014
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020015#include "call/rtp_stream_receiver_controller_interface.h"
16#include "modules/rtp_rtcp/include/flexfec_receiver.h"
17#include "modules/rtp_rtcp/include/receive_statistics.h"
18#include "modules/rtp_rtcp/include/rtp_rtcp.h"
19#include "modules/rtp_rtcp/source/rtp_packet_received.h"
20#include "modules/utility/include/process_thread.h"
21#include "rtc_base/checks.h"
22#include "rtc_base/location.h"
23#include "rtc_base/logging.h"
Jonas Olsson0a713b62018-04-04 15:49:32 +020024#include "rtc_base/strings/string_builder.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020025#include "system_wrappers/include/clock.h"
brandtr76648da2016-10-20 04:54:48 -070026
27namespace webrtc {
28
29std::string FlexfecReceiveStream::Stats::ToString(int64_t time_ms) const {
Jonas Olsson0a713b62018-04-04 15:49:32 +020030 char buf[1024];
31 rtc::SimpleStringBuilder ss(buf);
brandtr76648da2016-10-20 04:54:48 -070032 ss << "FlexfecReceiveStream stats: " << time_ms
33 << ", {flexfec_bitrate_bps: " << flexfec_bitrate_bps << "}";
34 return ss.str();
35}
36
brandtr1cfbd602016-12-08 04:17:53 -080037std::string FlexfecReceiveStream::Config::ToString() const {
Jonas Olsson0a713b62018-04-04 15:49:32 +020038 char buf[1024];
39 rtc::SimpleStringBuilder ss(buf);
brandtr1cfbd602016-12-08 04:17:53 -080040 ss << "{payload_type: " << payload_type;
41 ss << ", remote_ssrc: " << remote_ssrc;
42 ss << ", local_ssrc: " << local_ssrc;
43 ss << ", protected_media_ssrcs: [";
44 size_t i = 0;
45 for (; i + 1 < protected_media_ssrcs.size(); ++i)
46 ss << protected_media_ssrcs[i] << ", ";
47 if (!protected_media_ssrcs.empty())
48 ss << protected_media_ssrcs[i];
49 ss << "], transport_cc: " << (transport_cc ? "on" : "off");
brandtrb29e6522016-12-21 06:37:18 -080050 ss << ", rtp_header_extensions: [";
brandtr1cfbd602016-12-08 04:17:53 -080051 i = 0;
brandtrb29e6522016-12-21 06:37:18 -080052 for (; i + 1 < rtp_header_extensions.size(); ++i)
53 ss << rtp_header_extensions[i].ToString() << ", ";
54 if (!rtp_header_extensions.empty())
55 ss << rtp_header_extensions[i].ToString();
brandtr1cfbd602016-12-08 04:17:53 -080056 ss << "]}";
57 return ss.str();
58}
59
brandtr8313a6f2017-01-13 07:41:19 -080060bool FlexfecReceiveStream::Config::IsCompleteAndEnabled() const {
61 // Check if FlexFEC is enabled.
62 if (payload_type < 0)
63 return false;
64 // Do we have the necessary SSRC information?
65 if (remote_ssrc == 0)
66 return false;
67 // TODO(brandtr): Update this check when we support multistream protection.
68 if (protected_media_ssrcs.size() != 1u)
69 return false;
70 return true;
71}
72
brandtr76648da2016-10-20 04:54:48 -070073namespace {
74
75// TODO(brandtr): Update this function when we support multistream protection.
brandtr43c31e72016-11-15 05:26:45 -080076std::unique_ptr<FlexfecReceiver> MaybeCreateFlexfecReceiver(
77 const FlexfecReceiveStream::Config& config,
brandtrb29e6522016-12-21 06:37:18 -080078 RecoveredPacketReceiver* recovered_packet_receiver) {
brandtr1cfbd602016-12-08 04:17:53 -080079 if (config.payload_type < 0) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010080 RTC_LOG(LS_WARNING)
81 << "Invalid FlexFEC payload type given. "
82 << "This FlexfecReceiveStream will therefore be useless.";
brandtr76648da2016-10-20 04:54:48 -070083 return nullptr;
brandtr43c31e72016-11-15 05:26:45 -080084 }
brandtr1cfbd602016-12-08 04:17:53 -080085 RTC_DCHECK_GE(config.payload_type, 0);
86 RTC_DCHECK_LE(config.payload_type, 127);
87 if (config.remote_ssrc == 0) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010088 RTC_LOG(LS_WARNING)
89 << "Invalid FlexFEC SSRC given. "
90 << "This FlexfecReceiveStream will therefore be useless.";
brandtr43c31e72016-11-15 05:26:45 -080091 return nullptr;
92 }
93 if (config.protected_media_ssrcs.empty()) {
Mirko Bonadei675513b2017-11-09 11:09:25 +010094 RTC_LOG(LS_WARNING)
95 << "No protected media SSRC supplied. "
96 << "This FlexfecReceiveStream will therefore be useless.";
brandtr43c31e72016-11-15 05:26:45 -080097 return nullptr;
98 }
99
100 if (config.protected_media_ssrcs.size() > 1) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100101 RTC_LOG(LS_WARNING)
brandtr76648da2016-10-20 04:54:48 -0700102 << "The supplied FlexfecConfig contained multiple protected "
103 "media streams, but our implementation currently only "
brandtr43c31e72016-11-15 05:26:45 -0800104 "supports protecting a single media stream. "
105 "To avoid confusion, disabling FlexFEC completely.";
106 return nullptr;
brandtr76648da2016-10-20 04:54:48 -0700107 }
brandtr43c31e72016-11-15 05:26:45 -0800108 RTC_DCHECK_EQ(1U, config.protected_media_ssrcs.size());
109 return std::unique_ptr<FlexfecReceiver>(
brandtr1cfbd602016-12-08 04:17:53 -0800110 new FlexfecReceiver(config.remote_ssrc, config.protected_media_ssrcs[0],
brandtrb29e6522016-12-21 06:37:18 -0800111 recovered_packet_receiver));
brandtr76648da2016-10-20 04:54:48 -0700112}
113
brandtrfa5a3682017-01-17 01:33:54 -0800114std::unique_ptr<RtpRtcp> CreateRtpRtcpModule(
115 ReceiveStatistics* receive_statistics,
116 Transport* rtcp_send_transport,
117 RtcpRttStats* rtt_stats) {
118 RtpRtcp::Configuration configuration;
119 configuration.audio = false;
120 configuration.receiver_only = true;
121 configuration.clock = Clock::GetRealTimeClock();
122 configuration.receive_statistics = receive_statistics;
123 configuration.outgoing_transport = rtcp_send_transport;
124 configuration.rtt_stats = rtt_stats;
125 std::unique_ptr<RtpRtcp> rtp_rtcp(RtpRtcp::CreateRtpRtcp(configuration));
126 return rtp_rtcp;
127}
128
brandtr76648da2016-10-20 04:54:48 -0700129} // namespace
130
brandtr7250b392016-12-19 01:13:46 -0800131FlexfecReceiveStreamImpl::FlexfecReceiveStreamImpl(
nisse0f15f922017-06-21 01:05:22 -0700132 RtpStreamReceiverControllerInterface* receiver_controller,
brandtr446fcb62016-12-08 04:14:24 -0800133 const Config& config,
brandtrfa5a3682017-01-17 01:33:54 -0800134 RecoveredPacketReceiver* recovered_packet_receiver,
135 RtcpRttStats* rtt_stats,
136 ProcessThread* process_thread)
137 : config_(config),
brandtrfa5a3682017-01-17 01:33:54 -0800138 receiver_(MaybeCreateFlexfecReceiver(config_, recovered_packet_receiver)),
139 rtp_receive_statistics_(
140 ReceiveStatistics::Create(Clock::GetRealTimeClock())),
141 rtp_rtcp_(CreateRtpRtcpModule(rtp_receive_statistics_.get(),
142 config_.rtcp_send_transport,
143 rtt_stats)),
144 process_thread_(process_thread) {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100145 RTC_LOG(LS_INFO) << "FlexfecReceiveStreamImpl: " << config_.ToString();
brandtrfa5a3682017-01-17 01:33:54 -0800146
147 // RTCP reporting.
brandtrfa5a3682017-01-17 01:33:54 -0800148 rtp_rtcp_->SetRTCPStatus(config_.rtcp_mode);
149 rtp_rtcp_->SetSSRC(config_.local_ssrc);
tommidea489f2017-03-03 03:20:24 -0800150 process_thread_->RegisterModule(rtp_rtcp_.get(), RTC_FROM_HERE);
nisse0f15f922017-06-21 01:05:22 -0700151
152 // Register with transport.
153 // TODO(nisse): OnRtpPacket in this class delegates all real work to
154 // |receiver_|. So maybe we don't need to implement RtpPacketSinkInterface
155 // here at all, we'd then delete the OnRtpPacket method and instead register
156 // |receiver_| as the RtpPacketSinkInterface for this stream.
157 // TODO(nisse): Passing |this| from the constructor to the RtpDemuxer, before
158 // the object is fully initialized, is risky. But it works in this case
159 // because locking in our caller, Call::CreateFlexfecReceiveStream, ensures
160 // that the demuxer doesn't call OnRtpPacket before this object is fully
161 // constructed. Registering |receiver_| instead of |this| would solve this
162 // problem too.
163 rtp_stream_receiver_ =
164 receiver_controller->CreateReceiver(config_.remote_ssrc, this);
brandtr76648da2016-10-20 04:54:48 -0700165}
166
brandtr7250b392016-12-19 01:13:46 -0800167FlexfecReceiveStreamImpl::~FlexfecReceiveStreamImpl() {
Mirko Bonadei675513b2017-11-09 11:09:25 +0100168 RTC_LOG(LS_INFO) << "~FlexfecReceiveStreamImpl: " << config_.ToString();
brandtrfa5a3682017-01-17 01:33:54 -0800169 process_thread_->DeRegisterModule(rtp_rtcp_.get());
brandtr76648da2016-10-20 04:54:48 -0700170}
171
nisse5c29a7a2017-02-16 06:52:32 -0800172void FlexfecReceiveStreamImpl::OnRtpPacket(const RtpPacketReceived& packet) {
brandtr76648da2016-10-20 04:54:48 -0700173 if (!receiver_)
nisse5c29a7a2017-02-16 06:52:32 -0800174 return;
brandtrfa5a3682017-01-17 01:33:54 -0800175
nisse5c29a7a2017-02-16 06:52:32 -0800176 receiver_->OnRtpPacket(packet);
brandtrfa5a3682017-01-17 01:33:54 -0800177
178 // Do not report media packets in the RTCP RRs generated by |rtp_rtcp_|.
179 if (packet.Ssrc() == config_.remote_ssrc) {
Niels Möller1f3206c2018-09-14 08:26:32 +0200180 rtp_receive_statistics_->OnRtpPacket(packet);
brandtrfa5a3682017-01-17 01:33:54 -0800181 }
brandtr76648da2016-10-20 04:54:48 -0700182}
183
brandtr76648da2016-10-20 04:54:48 -0700184// TODO(brandtr): Implement this member function when we have designed the
185// stats for FlexFEC.
brandtr7250b392016-12-19 01:13:46 -0800186FlexfecReceiveStreamImpl::Stats FlexfecReceiveStreamImpl::GetStats() const {
187 return FlexfecReceiveStream::Stats();
brandtr76648da2016-10-20 04:54:48 -0700188}
189
eladalon42f44f92017-07-25 06:40:06 -0700190const FlexfecReceiveStream::Config& FlexfecReceiveStreamImpl::GetConfig()
191 const {
192 return config_;
193}
194
brandtr76648da2016-10-20 04:54:48 -0700195} // namespace webrtc