blob: cb831760d14b93a361462af623a0721067873cd0 [file] [log] [blame]
aleloi440b6d92017-08-22 05:43:23 -07001/*
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 Bonadei92ea95e2017-09-15 06:47:31 +020011#ifndef CALL_VIDEO_SEND_STREAM_H_
12#define CALL_VIDEO_SEND_STREAM_H_
aleloi440b6d92017-08-22 05:43:23 -070013
14#include <map>
15#include <string>
16#include <utility>
17#include <vector>
18
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020019#include "api/call/transport.h"
20#include "api/rtpparameters.h"
Patrik Höglund3e113432017-12-15 14:40:10 +010021#include "api/rtp_headers.h"
Patrik Höglundbe214a22018-01-04 12:14:35 +010022#include "api/videosinkinterface.h"
Patrik Höglund9e194032018-01-04 15:58:20 +010023#include "api/videosourceinterface.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020024#include "call/rtp_config.h"
25#include "call/video_config.h"
Mirko Bonadei71207422017-09-15 13:58:09 +020026#include "common_types.h" // NOLINT(build/include)
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020027#include "common_video/include/frame_callback.h"
Patrik Höglund3e113432017-12-15 14:40:10 +010028#include "modules/rtp_rtcp/include/rtp_rtcp_defines.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020029#include "rtc_base/platform_file.h"
aleloi440b6d92017-08-22 05:43:23 -070030
31namespace webrtc {
32
33class VideoEncoder;
34
35class VideoSendStream {
36 public:
37 struct StreamStats {
38 StreamStats();
39 ~StreamStats();
40
41 std::string ToString() const;
42
43 FrameCounts frame_counts;
44 bool is_rtx = false;
45 bool is_flexfec = false;
46 int width = 0;
47 int height = 0;
48 // TODO(holmer): Move bitrate_bps out to the webrtc::Call layer.
49 int total_bitrate_bps = 0;
50 int retransmit_bitrate_bps = 0;
51 int avg_delay_ms = 0;
52 int max_delay_ms = 0;
53 StreamDataCounters rtp_stats;
54 RtcpPacketTypeCounter rtcp_packet_type_counts;
55 RtcpStatistics rtcp_stats;
56 };
57
58 struct Stats {
59 Stats();
60 ~Stats();
61 std::string ToString(int64_t time_ms) const;
62 std::string encoder_implementation_name = "unknown";
63 int input_frame_rate = 0;
64 int encode_frame_rate = 0;
65 int avg_encode_time_ms = 0;
66 int encode_usage_percent = 0;
67 uint32_t frames_encoded = 0;
Ilya Nikolaevskiyd79314f2017-10-23 10:45:37 +020068 uint32_t frames_dropped_by_capturer = 0;
69 uint32_t frames_dropped_by_encoder_queue = 0;
70 uint32_t frames_dropped_by_rate_limiter = 0;
71 uint32_t frames_dropped_by_encoder = 0;
aleloi440b6d92017-08-22 05:43:23 -070072 rtc::Optional<uint64_t> qp_sum;
73 // Bitrate the encoder is currently configured to use due to bandwidth
74 // limitations.
75 int target_media_bitrate_bps = 0;
76 // Bitrate the encoder is actually producing.
77 int media_bitrate_bps = 0;
78 // Media bitrate this VideoSendStream is configured to prefer if there are
79 // no bandwidth limitations.
80 int preferred_media_bitrate_bps = 0;
81 bool suspended = false;
82 bool bw_limited_resolution = false;
83 bool cpu_limited_resolution = false;
84 bool bw_limited_framerate = false;
85 bool cpu_limited_framerate = false;
86 // Total number of times resolution as been requested to be changed due to
87 // CPU/quality adaptation.
88 int number_of_cpu_adapt_changes = 0;
89 int number_of_quality_adapt_changes = 0;
Åsa Perssonc3ed6302017-11-16 14:04:52 +010090 bool has_entered_low_resolution = false;
aleloi440b6d92017-08-22 05:43:23 -070091 std::map<uint32_t, StreamStats> substreams;
ilnik50864a82017-09-06 12:32:35 -070092 webrtc::VideoContentType content_type =
93 webrtc::VideoContentType::UNSPECIFIED;
aleloi440b6d92017-08-22 05:43:23 -070094 };
95
96 struct Config {
97 public:
98 Config() = delete;
99 Config(Config&&);
100 explicit Config(Transport* send_transport);
101
102 Config& operator=(Config&&);
103 Config& operator=(const Config&) = delete;
104
105 ~Config();
106
107 // Mostly used by tests. Avoid creating copies if you can.
108 Config Copy() const { return Config(*this); }
109
110 std::string ToString() const;
111
112 struct EncoderSettings {
113 EncoderSettings() = default;
114 EncoderSettings(std::string payload_name,
115 int payload_type,
116 VideoEncoder* encoder)
117 : payload_name(std::move(payload_name)),
118 payload_type(payload_type),
119 encoder(encoder) {}
120 std::string ToString() const;
121
122 std::string payload_name;
123 int payload_type = -1;
124
125 // TODO(sophiechang): Delete this field when no one is using internal
126 // sources anymore.
127 bool internal_source = false;
128
129 // Allow 100% encoder utilization. Used for HW encoders where CPU isn't
130 // expected to be the limiting factor, but a chip could be running at
131 // 30fps (for example) exactly.
132 bool full_overuse_time = false;
133
Niels Möller6539f692018-01-18 08:58:50 +0100134 // Enables the new method to estimate the cpu load from encoding, used for
135 // cpu adaptation.
136 bool experiment_cpu_load_estimator = false;
137
aleloi440b6d92017-08-22 05:43:23 -0700138 // Uninitialized VideoEncoder instance to be used for encoding. Will be
139 // initialized from inside the VideoSendStream.
140 VideoEncoder* encoder = nullptr;
141 } encoder_settings;
142
143 static const size_t kDefaultMaxPacketSize = 1500 - 40; // TCP over IPv4.
144 struct Rtp {
145 Rtp();
146 Rtp(const Rtp&);
147 ~Rtp();
148 std::string ToString() const;
149
150 std::vector<uint32_t> ssrcs;
151
152 // See RtcpMode for description.
153 RtcpMode rtcp_mode = RtcpMode::kCompound;
154
155 // Max RTP packet size delivered to send transport from VideoEngine.
156 size_t max_packet_size = kDefaultMaxPacketSize;
157
158 // RTP header extensions to use for this send stream.
159 std::vector<RtpExtension> extensions;
160
161 // See NackConfig for description.
162 NackConfig nack;
163
164 // See UlpfecConfig for description.
165 UlpfecConfig ulpfec;
166
167 struct Flexfec {
168 Flexfec();
169 Flexfec(const Flexfec&);
170 ~Flexfec();
171 // Payload type of FlexFEC. Set to -1 to disable sending FlexFEC.
172 int payload_type = -1;
173
174 // SSRC of FlexFEC stream.
175 uint32_t ssrc = 0;
176
177 // Vector containing a single element, corresponding to the SSRC of the
178 // media stream being protected by this FlexFEC stream.
179 // The vector MUST have size 1.
180 //
181 // TODO(brandtr): Update comment above when we support
182 // multistream protection.
183 std::vector<uint32_t> protected_media_ssrcs;
184 } flexfec;
185
186 // Settings for RTP retransmission payload format, see RFC 4588 for
187 // details.
188 struct Rtx {
189 Rtx();
190 Rtx(const Rtx&);
191 ~Rtx();
192 std::string ToString() const;
193 // SSRCs to use for the RTX streams.
194 std::vector<uint32_t> ssrcs;
195
196 // Payload type to use for the RTX stream.
197 int payload_type = -1;
198 } rtx;
199
200 // RTCP CNAME, see RFC 3550.
201 std::string c_name;
202 } rtp;
203
204 // Transport for outgoing packets.
205 Transport* send_transport = nullptr;
206
207 // Called for each I420 frame before encoding the frame. Can be used for
208 // effects, snapshots etc. 'nullptr' disables the callback.
209 rtc::VideoSinkInterface<VideoFrame>* pre_encode_callback = nullptr;
210
211 // Called for each encoded frame, e.g. used for file storage. 'nullptr'
212 // disables the callback. Also measures timing and passes the time
213 // spent on encoding. This timing will not fire if encoding takes longer
214 // than the measuring window, since the sample data will have been dropped.
215 EncodedFrameObserver* post_encode_callback = nullptr;
216
217 // Expected delay needed by the renderer, i.e. the frame will be delivered
218 // this many milliseconds, if possible, earlier than expected render time.
219 // Only valid if |local_renderer| is set.
220 int render_delay_ms = 0;
221
222 // Target delay in milliseconds. A positive value indicates this stream is
223 // used for streaming instead of a real-time call.
224 int target_delay_ms = 0;
225
226 // True if the stream should be suspended when the available bitrate fall
227 // below the minimum configured bitrate. If this variable is false, the
228 // stream may send at a rate higher than the estimated available bitrate.
229 bool suspend_below_min_bitrate = false;
230
231 // Enables periodic bandwidth probing in application-limited region.
232 bool periodic_alr_bandwidth_probing = false;
233
Alex Narestb3944f02017-10-13 14:56:18 +0200234 // Track ID as specified during track creation.
235 std::string track_id;
236
aleloi440b6d92017-08-22 05:43:23 -0700237 private:
238 // Access to the copy constructor is private to force use of the Copy()
239 // method for those exceptional cases where we do use it.
240 Config(const Config&);
241 };
242
243 // Starts stream activity.
244 // When a stream is active, it can receive, process and deliver packets.
245 virtual void Start() = 0;
246 // Stops stream activity.
247 // When a stream is stopped, it can't receive, process or deliver packets.
248 virtual void Stop() = 0;
249
250 // Based on the spec in
251 // https://w3c.github.io/webrtc-pc/#idl-def-rtcdegradationpreference.
252 // These options are enforced on a best-effort basis. For instance, all of
253 // these options may suffer some frame drops in order to avoid queuing.
254 // TODO(sprang): Look into possibility of more strictly enforcing the
255 // maintain-framerate option.
256 enum class DegradationPreference {
257 // Don't take any actions based on over-utilization signals.
258 kDegradationDisabled,
259 // On over-use, request lower frame rate, possibly causing frame drops.
260 kMaintainResolution,
261 // On over-use, request lower resolution, possibly causing down-scaling.
262 kMaintainFramerate,
263 // Try to strike a "pleasing" balance between frame rate or resolution.
264 kBalanced,
265 };
266
267 virtual void SetSource(
268 rtc::VideoSourceInterface<webrtc::VideoFrame>* source,
269 const DegradationPreference& degradation_preference) = 0;
270
271 // Set which streams to send. Must have at least as many SSRCs as configured
272 // in the config. Encoder settings are passed on to the encoder instance along
273 // with the VideoStream settings.
274 virtual void ReconfigureVideoEncoder(VideoEncoderConfig config) = 0;
275
276 virtual Stats GetStats() = 0;
277
278 // Takes ownership of each file, is responsible for closing them later.
279 // Calling this method will close and finalize any current logs.
280 // Some codecs produce multiple streams (VP8 only at present), each of these
281 // streams will log to a separate file. kMaxSimulcastStreams in common_types.h
282 // gives the max number of such streams. If there is no file for a stream, or
283 // the file is rtc::kInvalidPlatformFileValue, frames from that stream will
284 // not be logged.
285 // If a frame to be written would make the log too large the write fails and
286 // the log is closed and finalized. A |byte_limit| of 0 means no limit.
287 virtual void EnableEncodedFrameRecording(
288 const std::vector<rtc::PlatformFile>& files,
289 size_t byte_limit) = 0;
290 inline void DisableEncodedFrameRecording() {
291 EnableEncodedFrameRecording(std::vector<rtc::PlatformFile>(), 0);
292 }
293
294 protected:
295 virtual ~VideoSendStream() {}
296};
297
298} // namespace webrtc
299
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200300#endif // CALL_VIDEO_SEND_STREAM_H_