aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #ifndef CALL_VIDEO_RECEIVE_STREAM_H_ |
| 12 | #define CALL_VIDEO_RECEIVE_STREAM_H_ |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 13 | |
| 14 | #include <limits> |
| 15 | #include <map> |
Mirta Dvornicic | fe68daa | 2019-05-23 13:21:12 +0200 | [diff] [blame] | 16 | #include <set> |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 17 | #include <string> |
| 18 | #include <vector> |
| 19 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 20 | #include "api/call/transport.h" |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 21 | #include "api/crypto/crypto_options.h" |
Anton Sukhanov | 4f08faa | 2019-05-21 11:12:57 -0700 | [diff] [blame] | 22 | #include "api/media_transport_config.h" |
Niels Möller | 4687915 | 2019-01-07 15:54:47 +0100 | [diff] [blame] | 23 | #include "api/media_transport_interface.h" |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 24 | #include "api/rtp_headers.h" |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 25 | #include "api/rtp_parameters.h" |
| 26 | #include "api/rtp_receiver_interface.h" |
Patrik Höglund | 3e11343 | 2017-12-15 14:40:10 +0100 | [diff] [blame] | 27 | #include "api/video/video_content_type.h" |
Niels Möller | c6ce9c5 | 2018-05-11 11:15:30 +0200 | [diff] [blame] | 28 | #include "api/video/video_sink_interface.h" |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 29 | #include "api/video/video_timing.h" |
Niels Möller | cb7e1d2 | 2018-09-11 15:56:04 +0200 | [diff] [blame] | 30 | #include "api/video_codecs/sdp_video_format.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 31 | #include "call/rtp_config.h" |
Niels Möller | 53382cb | 2018-11-27 14:05:08 +0100 | [diff] [blame] | 32 | #include "modules/rtp_rtcp/include/rtcp_statistics.h" |
Patrik Höglund | 3e11343 | 2017-12-15 14:40:10 +0100 | [diff] [blame] | 33 | #include "modules/rtp_rtcp/include/rtp_rtcp_defines.h" |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 34 | |
| 35 | namespace webrtc { |
| 36 | |
Benjamin Wright | 192eeec | 2018-10-17 17:27:25 -0700 | [diff] [blame] | 37 | class FrameDecryptorInterface; |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 38 | class RtpPacketSinkInterface; |
Niels Möller | cbcbc22 | 2018-09-28 09:07:24 +0200 | [diff] [blame] | 39 | class VideoDecoderFactory; |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 40 | |
| 41 | class VideoReceiveStream { |
| 42 | public: |
| 43 | // TODO(mflodman) Move all these settings to VideoDecoder and move the |
| 44 | // declaration to common_types.h. |
| 45 | struct Decoder { |
| 46 | Decoder(); |
| 47 | Decoder(const Decoder&); |
| 48 | ~Decoder(); |
| 49 | std::string ToString() const; |
| 50 | |
Niels Möller | cbcbc22 | 2018-09-28 09:07:24 +0200 | [diff] [blame] | 51 | // Ownership stays with WebrtcVideoEngine (delegated from PeerConnection). |
| 52 | // TODO(nisse): Move one level out, to VideoReceiveStream::Config, and later |
| 53 | // to the configuration of VideoStreamDecoder. |
| 54 | VideoDecoderFactory* decoder_factory = nullptr; |
Niels Möller | cb7e1d2 | 2018-09-11 15:56:04 +0200 | [diff] [blame] | 55 | SdpVideoFormat video_format; |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 56 | |
| 57 | // Received RTP packets with this payload type will be sent to this decoder |
| 58 | // instance. |
| 59 | int payload_type = 0; |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 60 | }; |
| 61 | |
| 62 | struct Stats { |
| 63 | Stats(); |
| 64 | ~Stats(); |
| 65 | std::string ToString(int64_t time_ms) const; |
| 66 | |
| 67 | int network_frame_rate = 0; |
| 68 | int decode_frame_rate = 0; |
| 69 | int render_frame_rate = 0; |
| 70 | uint32_t frames_rendered = 0; |
| 71 | |
| 72 | // Decoder stats. |
| 73 | std::string decoder_implementation_name = "unknown"; |
| 74 | FrameCounts frame_counts; |
| 75 | int decode_ms = 0; |
| 76 | int max_decode_ms = 0; |
| 77 | int current_delay_ms = 0; |
| 78 | int target_delay_ms = 0; |
| 79 | int jitter_buffer_ms = 0; |
| 80 | int min_playout_delay_ms = 0; |
| 81 | int render_delay_ms = 10; |
ilnik | a79cc28 | 2017-08-23 05:24:10 -0700 | [diff] [blame] | 82 | int64_t interframe_delay_max_ms = -1; |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 83 | uint32_t frames_decoded = 0; |
Benjamin Wright | 514f084 | 2018-12-10 09:55:17 -0800 | [diff] [blame] | 84 | int64_t first_frame_received_to_decoded_ms = -1; |
Danil Chapovalov | b9b146c | 2018-06-15 12:28:07 +0200 | [diff] [blame] | 85 | absl::optional<uint64_t> qp_sum; |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 86 | |
| 87 | int current_payload_type = -1; |
| 88 | |
| 89 | int total_bitrate_bps = 0; |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 90 | |
| 91 | int width = 0; |
| 92 | int height = 0; |
| 93 | |
Sergey Silkin | 0237106 | 2019-01-31 16:45:42 +0100 | [diff] [blame] | 94 | uint32_t freeze_count = 0; |
| 95 | uint32_t pause_count = 0; |
| 96 | uint32_t total_freezes_duration_ms = 0; |
| 97 | uint32_t total_pauses_duration_ms = 0; |
| 98 | uint32_t total_frames_duration_ms = 0; |
| 99 | double sum_squared_frame_durations = 0.0; |
| 100 | |
ilnik | 2e1b40b | 2017-09-04 07:57:17 -0700 | [diff] [blame] | 101 | VideoContentType content_type = VideoContentType::UNSPECIFIED; |
| 102 | |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 103 | int sync_offset_ms = std::numeric_limits<int>::max(); |
| 104 | |
| 105 | uint32_t ssrc = 0; |
| 106 | std::string c_name; |
| 107 | StreamDataCounters rtp_stats; |
| 108 | RtcpPacketTypeCounter rtcp_packet_type_counts; |
| 109 | RtcpStatistics rtcp_stats; |
ilnik | 75204c5 | 2017-09-04 03:35:40 -0700 | [diff] [blame] | 110 | |
| 111 | // Timing frame info: all important timestamps for a full lifetime of a |
| 112 | // single 'timing frame'. |
Danil Chapovalov | b9b146c | 2018-06-15 12:28:07 +0200 | [diff] [blame] | 113 | absl::optional<webrtc::TimingFrameInfo> timing_frame_info; |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 114 | }; |
| 115 | |
| 116 | struct Config { |
| 117 | private: |
| 118 | // Access to the copy constructor is private to force use of the Copy() |
| 119 | // method for those exceptional cases where we do use it. |
| 120 | Config(const Config&); |
| 121 | |
| 122 | public: |
| 123 | Config() = delete; |
| 124 | Config(Config&&); |
Niels Möller | 4687915 | 2019-01-07 15:54:47 +0100 | [diff] [blame] | 125 | Config(Transport* rtcp_send_transport, |
Anton Sukhanov | 4f08faa | 2019-05-21 11:12:57 -0700 | [diff] [blame] | 126 | MediaTransportConfig media_transport_config); |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 127 | explicit Config(Transport* rtcp_send_transport); |
| 128 | Config& operator=(Config&&); |
| 129 | Config& operator=(const Config&) = delete; |
| 130 | ~Config(); |
| 131 | |
| 132 | // Mostly used by tests. Avoid creating copies if you can. |
| 133 | Config Copy() const { return Config(*this); } |
| 134 | |
| 135 | std::string ToString() const; |
| 136 | |
Anton Sukhanov | 4f08faa | 2019-05-21 11:12:57 -0700 | [diff] [blame] | 137 | MediaTransportInterface* media_transport() const { |
| 138 | return media_transport_config.media_transport; |
| 139 | } |
| 140 | |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 141 | // Decoders for every payload that we can receive. |
| 142 | std::vector<Decoder> decoders; |
| 143 | |
| 144 | // Receive-stream specific RTP settings. |
| 145 | struct Rtp { |
| 146 | Rtp(); |
| 147 | Rtp(const Rtp&); |
| 148 | ~Rtp(); |
| 149 | std::string ToString() const; |
| 150 | |
| 151 | // Synchronization source (stream identifier) to be received. |
| 152 | uint32_t remote_ssrc = 0; |
| 153 | |
| 154 | // Sender SSRC used for sending RTCP (such as receiver reports). |
| 155 | uint32_t local_ssrc = 0; |
| 156 | |
| 157 | // See RtcpMode for description. |
| 158 | RtcpMode rtcp_mode = RtcpMode::kCompound; |
| 159 | |
| 160 | // Extended RTCP settings. |
| 161 | struct RtcpXr { |
| 162 | // True if RTCP Receiver Reference Time Report Block extension |
| 163 | // (RFC 3611) should be enabled. |
| 164 | bool receiver_reference_time_report = false; |
| 165 | } rtcp_xr; |
| 166 | |
| 167 | // TODO(nisse): This remb setting is currently set but never |
| 168 | // applied. REMB logic is now the responsibility of |
| 169 | // PacketRouter, and it will generate REMB feedback if |
| 170 | // OnReceiveBitrateChanged is used, which depends on how the |
| 171 | // estimators belonging to the ReceiveSideCongestionController |
| 172 | // are configured. Decide if this setting should be deleted, and |
| 173 | // if it needs to be replaced by a setting in PacketRouter to |
| 174 | // disable REMB feedback. |
| 175 | |
| 176 | // See draft-alvestrand-rmcat-remb for information. |
| 177 | bool remb = false; |
| 178 | |
| 179 | // See draft-holmer-rmcat-transport-wide-cc-extensions for details. |
| 180 | bool transport_cc = false; |
| 181 | |
| 182 | // See NackConfig for description. |
| 183 | NackConfig nack; |
| 184 | |
nisse | 3b3622f | 2017-09-26 02:49:21 -0700 | [diff] [blame] | 185 | // Payload types for ULPFEC and RED, respectively. |
| 186 | int ulpfec_payload_type = -1; |
| 187 | int red_payload_type = -1; |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 188 | |
| 189 | // SSRC for retransmissions. |
| 190 | uint32_t rtx_ssrc = 0; |
| 191 | |
| 192 | // Set if the stream is protected using FlexFEC. |
| 193 | bool protected_by_flexfec = false; |
| 194 | |
nisse | 26e3abb | 2017-08-25 04:44:25 -0700 | [diff] [blame] | 195 | // Map from rtx payload type -> media payload type. |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 196 | // For RTX to be enabled, both an SSRC and this mapping are needed. |
nisse | 26e3abb | 2017-08-25 04:44:25 -0700 | [diff] [blame] | 197 | std::map<int, int> rtx_associated_payload_types; |
nisse | 26e3abb | 2017-08-25 04:44:25 -0700 | [diff] [blame] | 198 | |
Mirta Dvornicic | fe68daa | 2019-05-23 13:21:12 +0200 | [diff] [blame] | 199 | // Payload types that should be depacketized using raw depacketizer |
| 200 | // (payload header will not be parsed and must not be present, additional |
| 201 | // meta data is expected to be present in generic frame descriptor |
| 202 | // RTP header extension). |
| 203 | std::set<int> raw_payload_types; |
| 204 | |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 205 | // RTP header extensions used for the received stream. |
| 206 | std::vector<RtpExtension> extensions; |
| 207 | } rtp; |
| 208 | |
| 209 | // Transport for outgoing packets (RTCP). |
| 210 | Transport* rtcp_send_transport = nullptr; |
| 211 | |
Anton Sukhanov | 4f08faa | 2019-05-21 11:12:57 -0700 | [diff] [blame] | 212 | MediaTransportConfig media_transport_config; |
Niels Möller | 4687915 | 2019-01-07 15:54:47 +0100 | [diff] [blame] | 213 | |
Rasmus Brandt | 1e27fec | 2019-01-23 09:47:50 +0100 | [diff] [blame] | 214 | // Must always be set. |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 215 | rtc::VideoSinkInterface<VideoFrame>* renderer = nullptr; |
| 216 | |
| 217 | // Expected delay needed by the renderer, i.e. the frame will be delivered |
| 218 | // this many milliseconds, if possible, earlier than the ideal render time. |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 219 | int render_delay_ms = 10; |
| 220 | |
Rasmus Brandt | 1e27fec | 2019-01-23 09:47:50 +0100 | [diff] [blame] | 221 | // If false, pass frames on to the renderer as soon as they are |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 222 | // available. |
Rasmus Brandt | 1e27fec | 2019-01-23 09:47:50 +0100 | [diff] [blame] | 223 | bool enable_prerenderer_smoothing = true; |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 224 | |
| 225 | // Identifier for an A/V synchronization group. Empty string to disable. |
| 226 | // TODO(pbos): Synchronize streams in a sync group, not just video streams |
| 227 | // to one of the audio streams. |
| 228 | std::string sync_group; |
| 229 | |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 230 | // Target delay in milliseconds. A positive value indicates this stream is |
| 231 | // used for streaming instead of a real-time call. |
| 232 | int target_delay_ms = 0; |
Niels Möller | cbcbc22 | 2018-09-28 09:07:24 +0200 | [diff] [blame] | 233 | |
| 234 | // TODO(nisse): Used with VideoDecoderFactory::LegacyCreateVideoDecoder. |
| 235 | // Delete when that method is retired. |
| 236 | std::string stream_id; |
Benjamin Wright | 192eeec | 2018-10-17 17:27:25 -0700 | [diff] [blame] | 237 | |
| 238 | // An optional custom frame decryptor that allows the entire frame to be |
| 239 | // decrypted in whatever way the caller choses. This is not required by |
| 240 | // default. |
| 241 | rtc::scoped_refptr<webrtc::FrameDecryptorInterface> frame_decryptor; |
| 242 | |
| 243 | // Per PeerConnection cryptography options. |
| 244 | CryptoOptions crypto_options; |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 245 | }; |
| 246 | |
| 247 | // Starts stream activity. |
| 248 | // When a stream is active, it can receive, process and deliver packets. |
| 249 | virtual void Start() = 0; |
| 250 | // Stops stream activity. |
| 251 | // When a stream is stopped, it can't receive, process or deliver packets. |
| 252 | virtual void Stop() = 0; |
| 253 | |
| 254 | // TODO(pbos): Add info on currently-received codec to Stats. |
| 255 | virtual Stats GetStats() const = 0; |
| 256 | |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 257 | // RtpDemuxer only forwards a given RTP packet to one sink. However, some |
| 258 | // sinks, such as FlexFEC, might wish to be informed of all of the packets |
| 259 | // a given sink receives (or any set of sinks). They may do so by registering |
| 260 | // themselves as secondary sinks. |
| 261 | virtual void AddSecondarySink(RtpPacketSinkInterface* sink) = 0; |
| 262 | virtual void RemoveSecondarySink(const RtpPacketSinkInterface* sink) = 0; |
| 263 | |
Jonas Oreland | 49ac595 | 2018-09-26 16:04:32 +0200 | [diff] [blame] | 264 | virtual std::vector<RtpSource> GetSources() const = 0; |
| 265 | |
Ruslan Burakov | 493a650 | 2019-02-27 15:32:48 +0100 | [diff] [blame] | 266 | // Sets a base minimum for the playout delay. Base minimum delay sets lower |
| 267 | // bound on minimum delay value determining lower bound on playout delay. |
| 268 | // |
| 269 | // Returns true if value was successfully set, false overwise. |
| 270 | virtual bool SetBaseMinimumPlayoutDelayMs(int delay_ms) = 0; |
| 271 | |
| 272 | // Returns current value of base minimum delay in milliseconds. |
| 273 | virtual int GetBaseMinimumPlayoutDelayMs() const = 0; |
| 274 | |
Benjamin Wright | a556448 | 2019-04-03 10:44:18 -0700 | [diff] [blame] | 275 | // Allows a FrameDecryptor to be attached to a VideoReceiveStream after |
| 276 | // creation without resetting the decoder state. |
| 277 | virtual void SetFrameDecryptor( |
| 278 | rtc::scoped_refptr<FrameDecryptorInterface> frame_decryptor) = 0; |
| 279 | |
aleloi | 440b6d9 | 2017-08-22 05:43:23 -0700 | [diff] [blame] | 280 | protected: |
| 281 | virtual ~VideoReceiveStream() {} |
| 282 | }; |
| 283 | |
| 284 | } // namespace webrtc |
| 285 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 286 | #endif // CALL_VIDEO_RECEIVE_STREAM_H_ |