blob: eb7e4315be797edf496b6810fa82243c8162406b [file] [log] [blame]
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +00001/*
2 * Copyright (c) 2015 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
Stefan Holmer9416ef82018-07-19 10:34:38 +020011#ifndef CALL_RTP_VIDEO_SENDER_H_
12#define CALL_RTP_VIDEO_SENDER_H_
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +000013
Åsa Persson4bece9a2017-10-06 10:04:04 +020014#include <map>
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020015#include <memory>
Stefan Holmer64be7fa2018-10-04 15:21:55 +020016#include <unordered_set>
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +000017#include <vector>
18
Elad Alon8b60e8b2019-04-08 14:14:05 +020019#include "absl/types/optional.h"
Elad Alon898395d2019-04-10 15:55:00 +020020#include "api/array_view.h"
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020021#include "api/call/transport.h"
Stefan Holmer64be7fa2018-10-04 15:21:55 +020022#include "api/fec_controller.h"
Elad Alon8f01c4e2019-06-28 15:19:43 +020023#include "api/fec_controller_override.h"
Danil Chapovalov83bbe912019-08-07 12:24:53 +020024#include "api/rtc_event_log/rtc_event_log.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020025#include "api/video_codecs/video_encoder.h"
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020026#include "call/rtp_config.h"
Stefan Holmerf7044682018-07-17 10:16:41 +020027#include "call/rtp_payload_params.h"
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020028#include "call/rtp_transport_controller_send_interface.h"
Stefan Holmer9416ef82018-07-19 10:34:38 +020029#include "call/rtp_video_sender_interface.h"
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020030#include "modules/rtp_rtcp/include/flexfec_sender.h"
Erik Språng845c6aa2019-05-29 13:02:24 +020031#include "modules/rtp_rtcp/source/rtp_sender.h"
Niels Möller5fe95102019-03-04 16:49:25 +010032#include "modules/rtp_rtcp/source/rtp_sender_video.h"
Elad Alon8b60e8b2019-04-08 14:14:05 +020033#include "modules/rtp_rtcp/source/rtp_sequence_number_map.h"
philipel1a4746a2018-07-09 15:52:29 +020034#include "modules/rtp_rtcp/source/rtp_video_header.h"
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020035#include "modules/utility/include/process_thread.h"
Steve Anton10542f22019-01-11 09:11:00 -080036#include "rtc_base/constructor_magic.h"
37#include "rtc_base/critical_section.h"
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020038#include "rtc_base/rate_limiter.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020039#include "rtc_base/thread_annotations.h"
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020040#include "rtc_base/thread_checker.h"
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +000041
42namespace webrtc {
43
Benjamin Wright192eeec2018-10-17 17:27:25 -070044class FrameEncryptorInterface;
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +000045class RTPFragmentationHeader;
46class RtpRtcp;
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020047class RtpTransportControllerSendInterface;
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +000048
Niels Möller5fe95102019-03-04 16:49:25 +010049namespace webrtc_internal_rtp_video_sender {
50// RTP state for a single simulcast stream. Internal to the implementation of
51// RtpVideoSender.
52struct RtpStreamSender {
53 RtpStreamSender(std::unique_ptr<PlayoutDelayOracle> playout_delay_oracle,
54 std::unique_ptr<RtpRtcp> rtp_rtcp,
55 std::unique_ptr<RTPSenderVideo> sender_video);
56 ~RtpStreamSender();
57
58 RtpStreamSender(RtpStreamSender&&) = default;
59 RtpStreamSender& operator=(RtpStreamSender&&) = default;
60
61 // Note: Needs pointer stability.
62 std::unique_ptr<PlayoutDelayOracle> playout_delay_oracle;
63 std::unique_ptr<RtpRtcp> rtp_rtcp;
64 std::unique_ptr<RTPSenderVideo> sender_video;
65};
66
67} // namespace webrtc_internal_rtp_video_sender
68
Stefan Holmer9416ef82018-07-19 10:34:38 +020069// RtpVideoSender routes outgoing data to the correct sending RTP module, based
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +000070// on the simulcast layer in RTPVideoHeader.
Stefan Holmer64be7fa2018-10-04 15:21:55 +020071class RtpVideoSender : public RtpVideoSenderInterface,
72 public OverheadObserver,
73 public VCMProtectionCallback,
Sebastian Janssonf2988552019-10-29 17:18:51 +010074 public StreamFeedbackObserver {
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +000075 public:
Per83d09102016-04-15 14:59:13 +020076 // Rtp modules are assumed to be sorted in simulcast index order.
Stefan Holmer9416ef82018-07-19 10:34:38 +020077 RtpVideoSender(
Sebastian Jansson572c60f2019-03-04 18:30:41 +010078 Clock* clock,
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020079 std::map<uint32_t, RtpState> suspended_ssrcs,
80 const std::map<uint32_t, RtpPayloadState>& states,
81 const RtpConfig& rtp_config,
Jiawei Ou55718122018-11-09 13:17:39 -080082 int rtcp_report_interval_ms,
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020083 Transport* send_transport,
84 const RtpSenderObservers& observers,
85 RtpTransportControllerSendInterface* transport,
86 RtcEventLog* event_log,
Stefan Holmer64be7fa2018-10-04 15:21:55 +020087 RateLimiter* retransmission_limiter, // move inside RtpTransport
Benjamin Wright192eeec2018-10-17 17:27:25 -070088 std::unique_ptr<FecController> fec_controller,
89 FrameEncryptorInterface* frame_encryptor,
90 const CryptoOptions& crypto_options); // move inside RtpTransport
Stefan Holmer9416ef82018-07-19 10:34:38 +020091 ~RtpVideoSender() override;
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +000092
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020093 // RegisterProcessThread register |module_process_thread| with those objects
94 // that use it. Registration has to happen on the thread were
95 // |module_process_thread| was created (libjingle's worker thread).
96 // TODO(perkj): Replace the use of |module_process_thread| with a TaskQueue,
97 // maybe |worker_queue|.
98 void RegisterProcessThread(ProcessThread* module_process_thread) override;
99 void DeRegisterProcessThread() override;
100
Stefan Holmer9416ef82018-07-19 10:34:38 +0200101 // RtpVideoSender will only route packets if being active, all packets will be
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +0000102 // dropped otherwise.
Stefan Holmerdbdb3a02018-07-17 16:03:46 +0200103 void SetActive(bool active) override;
Seth Hampsoncc7125f2018-02-02 08:46:16 -0800104 // Sets the sending status of the rtp modules and appropriately sets the
105 // payload router to active if any rtp modules are active.
Stefan Holmerdbdb3a02018-07-17 16:03:46 +0200106 void SetActiveModules(const std::vector<bool> active_modules) override;
107 bool IsActive() override;
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +0000108
Stefan Holmerdbdb3a02018-07-17 16:03:46 +0200109 void OnNetworkAvailability(bool network_available) override;
110 std::map<uint32_t, RtpState> GetRtpStates() const override;
111 std::map<uint32_t, RtpPayloadState> GetRtpPayloadStates() const override;
112
Stefan Holmerdbdb3a02018-07-17 16:03:46 +0200113 void DeliverRtcp(const uint8_t* packet, size_t length) override;
114
Stefan Holmer64be7fa2018-10-04 15:21:55 +0200115 // Implements webrtc::VCMProtectionCallback.
116 int ProtectionRequest(const FecProtectionParams* delta_params,
117 const FecProtectionParams* key_params,
118 uint32_t* sent_video_rate_bps,
119 uint32_t* sent_nack_rate_bps,
120 uint32_t* sent_fec_rate_bps) override;
Åsa Persson4bece9a2017-10-06 10:04:04 +0200121
Elad Alon8f01c4e2019-06-28 15:19:43 +0200122 // Implements FecControllerOverride.
123 void SetFecAllowed(bool fec_allowed) override;
124
kjellander02b3d272016-04-20 05:05:54 -0700125 // Implements EncodedImageCallback.
126 // Returns 0 if the packet was routed / sent, -1 otherwise.
Sergey Ulanov525df3f2016-08-02 17:46:41 -0700127 EncodedImageCallback::Result OnEncodedImage(
128 const EncodedImage& encoded_image,
129 const CodecSpecificInfo* codec_specific_info,
130 const RTPFragmentationHeader* fragmentation) override;
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +0000131
Stefan Holmerdbdb3a02018-07-17 16:03:46 +0200132 void OnBitrateAllocationUpdated(
133 const VideoBitrateAllocation& bitrate) override;
sprang1a646ee2016-12-01 06:34:11 -0800134
Stefan Holmer64be7fa2018-10-04 15:21:55 +0200135 void OnTransportOverheadChanged(
136 size_t transport_overhead_bytes_per_packet) override;
137 // Implements OverheadObserver.
138 void OnOverheadChanged(size_t overhead_bytes_per_packet) override;
Sebastian Jansson82ed2e82019-10-15 15:58:37 +0200139 void OnBitrateUpdated(BitrateAllocationUpdate update, int framerate) override;
Stefan Holmer64be7fa2018-10-04 15:21:55 +0200140 uint32_t GetPayloadBitrateBps() const override;
141 uint32_t GetProtectionBitrateBps() const override;
142 void SetEncodingData(size_t width,
143 size_t height,
144 size_t num_temporal_layers) override;
145
Elad Alon898395d2019-04-10 15:55:00 +0200146 std::vector<RtpSequenceNumberMap::Info> GetSentRtpPacketInfos(
Elad Alon8b60e8b2019-04-08 14:14:05 +0200147 uint32_t ssrc,
Elad Alon898395d2019-04-10 15:55:00 +0200148 rtc::ArrayView<const uint16_t> sequence_numbers) const override;
Elad Alon8b60e8b2019-04-08 14:14:05 +0200149
Sebastian Janssonf2988552019-10-29 17:18:51 +0100150 // From StreamFeedbackObserver.
Stefan Holmer64be7fa2018-10-04 15:21:55 +0200151 void OnPacketFeedbackVector(
Sebastian Janssonf2988552019-10-29 17:18:51 +0100152 std::vector<StreamPacketInfo> packet_feedback_vector) override;
Stefan Holmer64be7fa2018-10-04 15:21:55 +0200153
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +0000154 private:
danilchapa37de392017-09-09 04:17:22 -0700155 void UpdateModuleSendingState() RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_);
Elad Alon62ce0352019-05-23 16:58:53 +0200156 void ConfigureProtection();
157 void ConfigureSsrcs();
158 void ConfigureRids();
Stefan Holmer64be7fa2018-10-04 15:21:55 +0200159 bool FecEnabled() const;
160 bool NackEnabled() const;
Erik Språng482b3ef2019-01-08 16:19:11 +0100161 uint32_t GetPacketizationOverheadRate() const;
Peter Boström8b79b072016-02-26 16:31:37 +0100162
Stefan Holmer64be7fa2018-10-04 15:21:55 +0200163 const bool send_side_bwe_with_overhead_;
Erik Språngc12d41b2019-01-09 09:55:31 +0100164 const bool account_for_packetization_overhead_;
Erik Språng845c6aa2019-05-29 13:02:24 +0200165 const bool use_early_loss_detection_;
Sebastian Janssonc3eb9fd2020-01-29 17:42:52 +0100166 const bool has_packet_feedback_;
Stefan Holmer64be7fa2018-10-04 15:21:55 +0200167
168 // TODO(holmer): Remove crit_ once RtpVideoSender runs on the
169 // transport task queue.
pbosd8de1152016-02-01 09:00:51 -0800170 rtc::CriticalSection crit_;
danilchapa37de392017-09-09 04:17:22 -0700171 bool active_ RTC_GUARDED_BY(crit_);
mflodman@webrtc.org7ac374a2015-02-20 12:45:40 +0000172
Stefan Holmerdbdb3a02018-07-17 16:03:46 +0200173 ProcessThread* module_process_thread_;
174 rtc::ThreadChecker module_process_thread_checker_;
175 std::map<uint32_t, RtpState> suspended_ssrcs_;
176
177 std::unique_ptr<FlexfecSender> flexfec_sender_;
Elad Alon67daf712019-06-28 18:14:36 +0200178
Erik Språng490d76c2019-05-07 09:29:15 -0700179 const std::unique_ptr<FecController> fec_controller_;
Elad Alon67daf712019-06-28 18:14:36 +0200180 bool fec_allowed_ RTC_GUARDED_BY(crit_);
181
Niels Möller2a152672018-08-08 12:03:00 +0200182 // Rtp modules are assumed to be sorted in simulcast index order.
Niels Möller5fe95102019-03-04 16:49:25 +0100183 const std::vector<webrtc_internal_rtp_video_sender::RtpStreamSender>
184 rtp_streams_;
Stefan Holmerdbdb3a02018-07-17 16:03:46 +0200185 const RtpConfig rtp_config_;
Erik Språng6cf554e2019-10-02 20:55:39 +0200186 const absl::optional<VideoCodecType> codec_type_;
Stefan Holmerdbdb3a02018-07-17 16:03:46 +0200187 RtpTransportControllerSendInterface* const transport_;
Per83d09102016-04-15 14:59:13 +0200188
philipel25d31ec2018-08-08 16:33:01 +0200189 // When using the generic descriptor we want all simulcast streams to share
190 // one frame id space (so that the SFU can switch stream without having to
191 // rewrite the frame id), therefore |shared_frame_id| has to live in a place
192 // where we are aware of all the different streams.
193 int64_t shared_frame_id_ = 0;
Åsa Persson4bece9a2017-10-06 10:04:04 +0200194 std::vector<RtpPayloadParams> params_ RTC_GUARDED_BY(crit_);
195
Stefan Holmer64be7fa2018-10-04 15:21:55 +0200196 size_t transport_overhead_bytes_per_packet_ RTC_GUARDED_BY(crit_);
197 size_t overhead_bytes_per_packet_ RTC_GUARDED_BY(crit_);
198 uint32_t protection_bitrate_bps_;
199 uint32_t encoder_target_rate_bps_;
200
Stefan Holmer64be7fa2018-10-04 15:21:55 +0200201 std::vector<bool> loss_mask_vector_ RTC_GUARDED_BY(crit_);
202
Niels Möller949f0fd2019-01-29 09:44:24 +0100203 std::vector<FrameCounts> frame_counts_ RTC_GUARDED_BY(crit_);
204 FrameCountObserver* const frame_count_observer_;
205
Erik Språnga9229042019-10-24 12:39:32 +0200206 // Effectively const map from SSRC to RtpRtcp, for all media SSRCs.
Erik Språng845c6aa2019-05-29 13:02:24 +0200207 // This map is set at construction time and never changed, but it's
Erik Språng490d76c2019-05-07 09:29:15 -0700208 // non-trivial to make it properly const.
Erik Språnga9229042019-10-24 12:39:32 +0200209 std::map<uint32_t, RtpRtcp*> ssrc_to_rtp_module_;
Erik Språng490d76c2019-05-07 09:29:15 -0700210
Stefan Holmer9416ef82018-07-19 10:34:38 +0200211 RTC_DISALLOW_COPY_AND_ASSIGN(RtpVideoSender);
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +0000212};
213
214} // namespace webrtc
215
Stefan Holmer9416ef82018-07-19 10:34:38 +0200216#endif // CALL_RTP_VIDEO_SENDER_H_