blob: d72ef0d8ffb68c702b56780a61599a5114267377 [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
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020019#include "api/call/transport.h"
Stefan Holmer64be7fa2018-10-04 15:21:55 +020020#include "api/fec_controller.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020021#include "api/video_codecs/video_encoder.h"
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020022#include "call/rtp_config.h"
Stefan Holmerf7044682018-07-17 10:16:41 +020023#include "call/rtp_payload_params.h"
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020024#include "call/rtp_transport_controller_send_interface.h"
Stefan Holmer9416ef82018-07-19 10:34:38 +020025#include "call/rtp_video_sender_interface.h"
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020026#include "logging/rtc_event_log/rtc_event_log.h"
27#include "modules/rtp_rtcp/include/flexfec_sender.h"
philipel1a4746a2018-07-09 15:52:29 +020028#include "modules/rtp_rtcp/source/rtp_video_header.h"
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020029#include "modules/utility/include/process_thread.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020030#include "rtc_base/constructormagic.h"
31#include "rtc_base/criticalsection.h"
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020032#include "rtc_base/rate_limiter.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020033#include "rtc_base/thread_annotations.h"
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020034#include "rtc_base/thread_checker.h"
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +000035
36namespace webrtc {
37
Benjamin Wright192eeec2018-10-17 17:27:25 -070038class FrameEncryptorInterface;
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +000039class RTPFragmentationHeader;
40class RtpRtcp;
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020041class RtpTransportControllerSendInterface;
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +000042
Stefan Holmer9416ef82018-07-19 10:34:38 +020043// RtpVideoSender routes outgoing data to the correct sending RTP module, based
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +000044// on the simulcast layer in RTPVideoHeader.
Stefan Holmer64be7fa2018-10-04 15:21:55 +020045class RtpVideoSender : public RtpVideoSenderInterface,
46 public OverheadObserver,
47 public VCMProtectionCallback,
48 public PacketFeedbackObserver {
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +000049 public:
Per83d09102016-04-15 14:59:13 +020050 // Rtp modules are assumed to be sorted in simulcast index order.
Stefan Holmer9416ef82018-07-19 10:34:38 +020051 RtpVideoSender(
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020052 std::map<uint32_t, RtpState> suspended_ssrcs,
53 const std::map<uint32_t, RtpPayloadState>& states,
54 const RtpConfig& rtp_config,
Jiawei Ou55718122018-11-09 13:17:39 -080055 int rtcp_report_interval_ms,
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020056 Transport* send_transport,
57 const RtpSenderObservers& observers,
58 RtpTransportControllerSendInterface* transport,
59 RtcEventLog* event_log,
Stefan Holmer64be7fa2018-10-04 15:21:55 +020060 RateLimiter* retransmission_limiter, // move inside RtpTransport
Benjamin Wright192eeec2018-10-17 17:27:25 -070061 std::unique_ptr<FecController> fec_controller,
62 FrameEncryptorInterface* frame_encryptor,
63 const CryptoOptions& crypto_options); // move inside RtpTransport
Stefan Holmer9416ef82018-07-19 10:34:38 +020064 ~RtpVideoSender() override;
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +000065
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020066 // RegisterProcessThread register |module_process_thread| with those objects
67 // that use it. Registration has to happen on the thread were
68 // |module_process_thread| was created (libjingle's worker thread).
69 // TODO(perkj): Replace the use of |module_process_thread| with a TaskQueue,
70 // maybe |worker_queue|.
71 void RegisterProcessThread(ProcessThread* module_process_thread) override;
72 void DeRegisterProcessThread() override;
73
Stefan Holmer9416ef82018-07-19 10:34:38 +020074 // RtpVideoSender will only route packets if being active, all packets will be
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +000075 // dropped otherwise.
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020076 void SetActive(bool active) override;
Seth Hampsoncc7125f2018-02-02 08:46:16 -080077 // Sets the sending status of the rtp modules and appropriately sets the
78 // payload router to active if any rtp modules are active.
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020079 void SetActiveModules(const std::vector<bool> active_modules) override;
80 bool IsActive() override;
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +000081
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020082 void OnNetworkAvailability(bool network_available) override;
83 std::map<uint32_t, RtpState> GetRtpStates() const override;
84 std::map<uint32_t, RtpPayloadState> GetRtpPayloadStates() const override;
85
Stefan Holmerdbdb3a02018-07-17 16:03:46 +020086 void DeliverRtcp(const uint8_t* packet, size_t length) override;
87
Stefan Holmer64be7fa2018-10-04 15:21:55 +020088 // Implements webrtc::VCMProtectionCallback.
89 int ProtectionRequest(const FecProtectionParams* delta_params,
90 const FecProtectionParams* key_params,
91 uint32_t* sent_video_rate_bps,
92 uint32_t* sent_nack_rate_bps,
93 uint32_t* sent_fec_rate_bps) override;
Åsa Persson4bece9a2017-10-06 10:04:04 +020094
kjellander02b3d272016-04-20 05:05:54 -070095 // Implements EncodedImageCallback.
96 // Returns 0 if the packet was routed / sent, -1 otherwise.
Sergey Ulanov525df3f2016-08-02 17:46:41 -070097 EncodedImageCallback::Result OnEncodedImage(
98 const EncodedImage& encoded_image,
99 const CodecSpecificInfo* codec_specific_info,
100 const RTPFragmentationHeader* fragmentation) override;
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +0000101
Stefan Holmerdbdb3a02018-07-17 16:03:46 +0200102 void OnBitrateAllocationUpdated(
103 const VideoBitrateAllocation& bitrate) override;
sprang1a646ee2016-12-01 06:34:11 -0800104
Stefan Holmer64be7fa2018-10-04 15:21:55 +0200105 void OnTransportOverheadChanged(
106 size_t transport_overhead_bytes_per_packet) override;
107 // Implements OverheadObserver.
108 void OnOverheadChanged(size_t overhead_bytes_per_packet) override;
109 void OnBitrateUpdated(uint32_t bitrate_bps,
110 uint8_t fraction_loss,
111 int64_t rtt,
112 int framerate) override;
113 uint32_t GetPayloadBitrateBps() const override;
114 uint32_t GetProtectionBitrateBps() const override;
115 void SetEncodingData(size_t width,
116 size_t height,
117 size_t num_temporal_layers) override;
118
119 // From PacketFeedbackObserver.
120 void OnPacketAdded(uint32_t ssrc, uint16_t seq_num) override;
121 void OnPacketFeedbackVector(
122 const std::vector<PacketFeedback>& packet_feedback_vector) override;
123
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +0000124 private:
danilchapa37de392017-09-09 04:17:22 -0700125 void UpdateModuleSendingState() RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_);
Stefan Holmerdbdb3a02018-07-17 16:03:46 +0200126 void ConfigureProtection(const RtpConfig& rtp_config);
127 void ConfigureSsrcs(const RtpConfig& rtp_config);
Amit Hilbuch77938e62018-12-21 09:23:38 -0800128 void ConfigureRids(const RtpConfig& rtp_config);
Stefan Holmer64be7fa2018-10-04 15:21:55 +0200129 bool FecEnabled() const;
130 bool NackEnabled() const;
Erik Språng482b3ef2019-01-08 16:19:11 +0100131 uint32_t GetPacketizationOverheadRate() const;
Peter Boström8b79b072016-02-26 16:31:37 +0100132
Stefan Holmer64be7fa2018-10-04 15:21:55 +0200133 const bool send_side_bwe_with_overhead_;
Erik Språngc12d41b2019-01-09 09:55:31 +0100134 const bool account_for_packetization_overhead_;
Stefan Holmer64be7fa2018-10-04 15:21:55 +0200135
136 // TODO(holmer): Remove crit_ once RtpVideoSender runs on the
137 // transport task queue.
pbosd8de1152016-02-01 09:00:51 -0800138 rtc::CriticalSection crit_;
danilchapa37de392017-09-09 04:17:22 -0700139 bool active_ RTC_GUARDED_BY(crit_);
mflodman@webrtc.org7ac374a2015-02-20 12:45:40 +0000140
Stefan Holmerdbdb3a02018-07-17 16:03:46 +0200141 ProcessThread* module_process_thread_;
142 rtc::ThreadChecker module_process_thread_checker_;
143 std::map<uint32_t, RtpState> suspended_ssrcs_;
144
145 std::unique_ptr<FlexfecSender> flexfec_sender_;
Stefan Holmer64be7fa2018-10-04 15:21:55 +0200146 std::unique_ptr<FecController> fec_controller_;
Niels Möller2a152672018-08-08 12:03:00 +0200147 // Rtp modules are assumed to be sorted in simulcast index order.
Stefan Holmerdbdb3a02018-07-17 16:03:46 +0200148 const std::vector<std::unique_ptr<RtpRtcp>> rtp_modules_;
149 const RtpConfig rtp_config_;
150 RtpTransportControllerSendInterface* const transport_;
Per83d09102016-04-15 14:59:13 +0200151
philipel25d31ec2018-08-08 16:33:01 +0200152 // When using the generic descriptor we want all simulcast streams to share
153 // one frame id space (so that the SFU can switch stream without having to
154 // rewrite the frame id), therefore |shared_frame_id| has to live in a place
155 // where we are aware of all the different streams.
156 int64_t shared_frame_id_ = 0;
Åsa Persson4bece9a2017-10-06 10:04:04 +0200157 std::vector<RtpPayloadParams> params_ RTC_GUARDED_BY(crit_);
158
Stefan Holmer64be7fa2018-10-04 15:21:55 +0200159 size_t transport_overhead_bytes_per_packet_ RTC_GUARDED_BY(crit_);
160 size_t overhead_bytes_per_packet_ RTC_GUARDED_BY(crit_);
161 uint32_t protection_bitrate_bps_;
162 uint32_t encoder_target_rate_bps_;
163
164 std::unordered_set<uint16_t> feedback_packet_seq_num_set_;
165 std::vector<bool> loss_mask_vector_ RTC_GUARDED_BY(crit_);
166
Stefan Holmer9416ef82018-07-19 10:34:38 +0200167 RTC_DISALLOW_COPY_AND_ASSIGN(RtpVideoSender);
mflodman@webrtc.org02270cd2015-02-06 13:10:19 +0000168};
169
170} // namespace webrtc
171
Stefan Holmer9416ef82018-07-19 10:34:38 +0200172#endif // CALL_RTP_VIDEO_SENDER_H_