blob: 50f21d7e1cdbe594f98fc84127feb8b0d6bf5d76 [file] [log] [blame]
ilnikd60d06a2017-04-05 03:02:20 -07001/*
2 * Copyright (c) 2014 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 API_VIDEO_CODECS_VIDEO_ENCODER_H_
12#define API_VIDEO_CODECS_VIDEO_ENCODER_H_
ilnikd60d06a2017-04-05 03:02:20 -070013
Erik Språngdbdd8392019-01-17 15:27:50 +010014#include <limits>
ilnikd60d06a2017-04-05 03:02:20 -070015#include <memory>
16#include <string>
17#include <vector>
18
Erik Språngdbdd8392019-01-17 15:27:50 +010019#include "absl/container/inlined_vector.h"
Danil Chapovalov0bc58cf2018-06-21 13:32:56 +020020#include "absl/types/optional.h"
Elad Alon8f01c4e2019-06-28 15:19:43 +020021#include "api/fec_controller_override.h"
Erik Språng4d9df382019-03-27 15:00:43 +010022#include "api/units/data_rate.h"
Niels Möller4dc66c52018-10-05 14:17:58 +020023#include "api/video/encoded_image.h"
Erik Språngec475652018-05-15 15:12:55 +020024#include "api/video/video_bitrate_allocation.h"
Erik Språngf93eda12019-01-16 17:10:57 +010025#include "api/video/video_codec_constants.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020026#include "api/video/video_frame.h"
Niels Möller802506c2018-05-31 10:44:51 +020027#include "api/video_codecs/video_codec.h"
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020028#include "rtc_base/checks.h"
Mirko Bonadei276827c2018-10-16 14:13:50 +020029#include "rtc_base/system/rtc_export.h"
ilnikd60d06a2017-04-05 03:02:20 -070030
31namespace webrtc {
32
33class RTPFragmentationHeader;
34// TODO(pbos): Expose these through a public (root) header or change these APIs.
35struct CodecSpecificInfo;
ilnikd60d06a2017-04-05 03:02:20 -070036
Henrik Boström4bab2fc2020-01-21 11:18:06 +010037constexpr int kDefaultMinPixelsPerFrame = 320 * 180;
38
Danil Chapovalov0490c372020-08-04 13:05:43 +020039class RTC_EXPORT EncodedImageCallback {
ilnikd60d06a2017-04-05 03:02:20 -070040 public:
41 virtual ~EncodedImageCallback() {}
42
43 struct Result {
44 enum Error {
45 OK,
46
47 // Failed to send the packet.
48 ERROR_SEND_FAILED,
49 };
50
mflodman351424e2017-08-10 02:43:14 -070051 explicit Result(Error error) : error(error) {}
ilnikd60d06a2017-04-05 03:02:20 -070052 Result(Error error, uint32_t frame_id) : error(error), frame_id(frame_id) {}
53
54 Error error;
55
56 // Frame ID assigned to the frame. The frame ID should be the same as the ID
57 // seen by the receiver for this frame. RTP timestamp of the frame is used
58 // as frame ID when RTP is used to send video. Must be used only when
59 // error=OK.
60 uint32_t frame_id = 0;
61
62 // Tells the encoder that the next frame is should be dropped.
63 bool drop_next_frame = false;
64 };
65
Ilya Nikolaevskiyd79314f2017-10-23 10:45:37 +020066 // Used to signal the encoder about reason a frame is dropped.
67 // kDroppedByMediaOptimizations - dropped by MediaOptimizations (for rate
68 // limiting purposes).
69 // kDroppedByEncoder - dropped by encoder's internal rate limiter.
70 enum class DropReason : uint8_t {
71 kDroppedByMediaOptimizations,
72 kDroppedByEncoder
73 };
74
ilnikd60d06a2017-04-05 03:02:20 -070075 // Callback function which is called when an image has been encoded.
Danil Chapovalov0490c372020-08-04 13:05:43 +020076 // Deprecated, use OnEncodedImage below instead, see bugs.webrtc.org/6471
77 virtual Result OnEncodedImage(const EncodedImage& encoded_image,
78 const CodecSpecificInfo* codec_specific_info,
79 const RTPFragmentationHeader* fragmentation);
80
81 // Callback function which is called when an image has been encoded.
82 // TODO(bugs.webrtc.org/6471): Make pure virtual
83 // when OnEncodedImage above is deleted.
84 virtual Result OnEncodedImage(const EncodedImage& encoded_image,
85 const CodecSpecificInfo* codec_specific_info);
ilnikd60d06a2017-04-05 03:02:20 -070086
Ilya Nikolaevskiyd79314f2017-10-23 10:45:37 +020087 virtual void OnDroppedFrame(DropReason reason) {}
ilnikd60d06a2017-04-05 03:02:20 -070088};
89
Mirko Bonadei276827c2018-10-16 14:13:50 +020090class RTC_EXPORT VideoEncoder {
ilnikd60d06a2017-04-05 03:02:20 -070091 public:
ilnikd60d06a2017-04-05 03:02:20 -070092 struct QpThresholds {
93 QpThresholds(int l, int h) : low(l), high(h) {}
94 QpThresholds() : low(-1), high(-1) {}
95 int low;
96 int high;
97 };
Elad Alon370f93a2019-06-11 14:57:57 +020098
Niels Möller225c7872018-02-22 15:03:53 +010099 // Quality scaling is enabled if thresholds are provided.
Hirokazu Honda11549152019-12-11 18:25:45 +0900100 struct RTC_EXPORT ScalingSettings {
Niels Möller225c7872018-02-22 15:03:53 +0100101 private:
102 // Private magic type for kOff, implicitly convertible to
103 // ScalingSettings.
104 struct KOff {};
105
106 public:
107 // TODO(nisse): Would be nicer if kOff were a constant ScalingSettings
Danil Chapovalov0bc58cf2018-06-21 13:32:56 +0200108 // rather than a magic value. However, absl::optional is not trivially copy
Niels Möller225c7872018-02-22 15:03:53 +0100109 // constructible, and hence a constant ScalingSettings needs a static
110 // initializer, which is strongly discouraged in Chrome. We can hopefully
111 // fix this when we switch to absl::optional or std::optional.
112 static constexpr KOff kOff = {};
113
114 ScalingSettings(int low, int high);
115 ScalingSettings(int low, int high, int min_pixels);
mflodman351424e2017-08-10 02:43:14 -0700116 ScalingSettings(const ScalingSettings&);
Niels Möller225c7872018-02-22 15:03:53 +0100117 ScalingSettings(KOff); // NOLINT(runtime/explicit)
mflodman351424e2017-08-10 02:43:14 -0700118 ~ScalingSettings();
119
Erik Språnge2fd86a2018-10-24 11:32:39 +0200120 absl::optional<QpThresholds> thresholds;
asapersson142fcc92017-08-17 08:58:54 -0700121
122 // We will never ask for a resolution lower than this.
123 // TODO(kthelgason): Lower this limit when better testing
124 // on MediaCodec and fallback implementations are in place.
125 // See https://bugs.chromium.org/p/webrtc/issues/detail?id=7206
Henrik Boström4bab2fc2020-01-21 11:18:06 +0100126 int min_pixels_per_frame = kDefaultMinPixelsPerFrame;
Niels Möller225c7872018-02-22 15:03:53 +0100127
128 private:
129 // Private constructor; to get an object without thresholds, use
130 // the magic constant ScalingSettings::kOff.
131 ScalingSettings();
ilnikd60d06a2017-04-05 03:02:20 -0700132 };
ilnikd60d06a2017-04-05 03:02:20 -0700133
Sergey Silkin3d642f82019-07-03 15:09:33 +0200134 // Bitrate limits for resolution.
135 struct ResolutionBitrateLimits {
136 ResolutionBitrateLimits(int frame_size_pixels,
137 int min_start_bitrate_bps,
138 int min_bitrate_bps,
139 int max_bitrate_bps)
Sergey Silkinbe0adee2019-06-26 14:11:03 +0200140 : frame_size_pixels(frame_size_pixels),
141 min_start_bitrate_bps(min_start_bitrate_bps),
142 min_bitrate_bps(min_bitrate_bps),
143 max_bitrate_bps(max_bitrate_bps) {}
144 // Size of video frame, in pixels, the bitrate thresholds are intended for.
145 int frame_size_pixels = 0;
146 // Recommended minimum bitrate to start encoding.
147 int min_start_bitrate_bps = 0;
148 // Recommended minimum bitrate.
149 int min_bitrate_bps = 0;
150 // Recommended maximum bitrate.
151 int max_bitrate_bps = 0;
Erik Språng79685302019-11-27 17:26:58 +0100152
153 bool operator==(const ResolutionBitrateLimits& rhs) const;
154 bool operator!=(const ResolutionBitrateLimits& rhs) const {
155 return !(*this == rhs);
156 }
Sergey Silkinbe0adee2019-06-26 14:11:03 +0200157 };
158
Erik Språnge2fd86a2018-10-24 11:32:39 +0200159 // Struct containing metadata about the encoder implementing this interface.
Mirko Bonadei54875d02019-11-06 20:16:12 +0100160 struct RTC_EXPORT EncoderInfo {
Erik Språngdbdd8392019-01-17 15:27:50 +0100161 static constexpr uint8_t kMaxFramerateFraction =
162 std::numeric_limits<uint8_t>::max();
163
Erik Språnge2fd86a2018-10-24 11:32:39 +0200164 EncoderInfo();
Mirta Dvornicic897a9912018-11-30 13:12:21 +0100165 EncoderInfo(const EncoderInfo&);
166
Erik Språnge2fd86a2018-10-24 11:32:39 +0200167 ~EncoderInfo();
168
Erik Språng79685302019-11-27 17:26:58 +0100169 std::string ToString() const;
170 bool operator==(const EncoderInfo& rhs) const;
171 bool operator!=(const EncoderInfo& rhs) const { return !(*this == rhs); }
172
Erik Språnge2fd86a2018-10-24 11:32:39 +0200173 // Any encoder implementation wishing to use the WebRTC provided
174 // quality scaler must populate this field.
175 ScalingSettings scaling_settings;
176
Rasmus Brandt5cad55b2019-12-19 09:47:11 +0100177 // The width and height of the incoming video frames should be divisible
178 // by |requested_resolution_alignment|. If they are not, the encoder may
179 // drop the incoming frame.
180 // For example: With I420, this value would be a multiple of 2.
181 // Note that this field is unrelated to any horizontal or vertical stride
182 // requirements the encoder has on the incoming video frame buffers.
183 int requested_resolution_alignment;
184
Erik Språnge2fd86a2018-10-24 11:32:39 +0200185 // If true, encoder supports working with a native handle (e.g. texture
186 // handle for hw codecs) rather than requiring a raw I420 buffer.
187 bool supports_native_handle;
188
189 // The name of this particular encoder implementation, e.g. "libvpx".
190 std::string implementation_name;
Erik Språngd3438aa2018-11-08 16:56:43 +0100191
192 // If this field is true, the encoder rate controller must perform
193 // well even in difficult situations, and produce close to the specified
194 // target bitrate seen over a reasonable time window, drop frames if
195 // necessary in order to keep the rate correct, and react quickly to
196 // changing bitrate targets. If this method returns true, we disable the
197 // frame dropper in the media optimization module and rely entirely on the
198 // encoder to produce media at a bitrate that closely matches the target.
199 // Any overshooting may result in delay buildup. If this method returns
200 // false (default behavior), the media opt frame dropper will drop input
201 // frames if it suspect encoder misbehavior. Misbehavior is common,
202 // especially in hardware codecs. Disable media opt at your own risk.
203 bool has_trusted_rate_controller;
Mirta Dvornicic897a9912018-11-30 13:12:21 +0100204
205 // If this field is true, the encoder uses hardware support and different
206 // thresholds will be used in CPU adaptation.
207 bool is_hardware_accelerated;
208
209 // If this field is true, the encoder uses internal camera sources, meaning
210 // that it does not require/expect frames to be delivered via
211 // webrtc::VideoEncoder::Encode.
212 // Internal source encoders are deprecated and support for them will be
213 // phased out.
214 bool has_internal_source;
Erik Språngdbdd8392019-01-17 15:27:50 +0100215
216 // For each spatial layer (simulcast stream or SVC layer), represented as an
217 // element in |fps_allocation| a vector indicates how many temporal layers
218 // the encoder is using for that spatial layer.
219 // For each spatial/temporal layer pair, the frame rate fraction is given as
220 // an 8bit unsigned integer where 0 = 0% and 255 = 100%.
221 //
222 // If the vector is empty for a given spatial layer, it indicates that frame
223 // rates are not defined and we can't count on any specific frame rate to be
224 // generated. Likely this indicates Vp8TemporalLayersType::kBitrateDynamic.
225 //
226 // The encoder may update this on a per-frame basis in response to both
227 // internal and external signals.
228 //
229 // Spatial layers are treated independently, but temporal layers are
230 // cumulative. For instance, if:
231 // fps_allocation[0][0] = kFullFramerate / 2;
232 // fps_allocation[0][1] = kFullFramerate;
233 // Then half of the frames are in the base layer and half is in TL1, but
234 // since TL1 is assumed to depend on the base layer, the frame rate is
235 // indicated as the full 100% for the top layer.
236 //
237 // Defaults to a single spatial layer containing a single temporal layer
238 // with a 100% frame rate fraction.
239 absl::InlinedVector<uint8_t, kMaxTemporalStreams>
240 fps_allocation[kMaxSpatialLayers];
Sergey Silkinbe0adee2019-06-26 14:11:03 +0200241
Sergey Silkin3d642f82019-07-03 15:09:33 +0200242 // Recommended bitrate limits for different resolutions.
243 std::vector<ResolutionBitrateLimits> resolution_bitrate_limits;
Erik Språngf4e0c292019-10-01 18:50:03 +0200244
Henrik Boströmb0f2e0c2020-03-06 13:32:03 +0100245 // Obtains the limits from |resolution_bitrate_limits| that best matches the
246 // |frame_size_pixels|.
247 absl::optional<ResolutionBitrateLimits>
248 GetEncoderBitrateLimitsForResolution(int frame_size_pixels) const;
249
Erik Språngf4e0c292019-10-01 18:50:03 +0200250 // If true, this encoder has internal support for generating simulcast
251 // streams. Otherwise, an adapter class will be needed.
252 // Even if true, the config provided to InitEncode() might not be supported,
253 // in such case the encoder should return
254 // WEBRTC_VIDEO_CODEC_ERR_SIMULCAST_PARAMETERS_NOT_SUPPORTED.
255 bool supports_simulcast;
Erik Språnge2fd86a2018-10-24 11:32:39 +0200256 };
257
Mirko Bonadei8fa616f2019-11-12 10:05:05 +0100258 struct RTC_EXPORT RateControlParameters {
Erik Språng4c6ca302019-04-08 15:14:01 +0200259 RateControlParameters();
260 RateControlParameters(const VideoBitrateAllocation& bitrate,
Erik Språng16cb8f52019-04-12 13:59:09 +0200261 double framerate_fps);
262 RateControlParameters(const VideoBitrateAllocation& bitrate,
Erik Språng4c6ca302019-04-08 15:14:01 +0200263 double framerate_fps,
264 DataRate bandwidth_allocation);
265 virtual ~RateControlParameters();
266
Erik Språng4d9df382019-03-27 15:00:43 +0100267 // Target bitrate, per spatial/temporal layer.
268 // A target bitrate of 0bps indicates a layer should not be encoded at all.
269 VideoBitrateAllocation bitrate;
270 // Target framerate, in fps. A value <= 0.0 is invalid and should be
271 // interpreted as framerate target not available. In this case the encoder
272 // should fall back to the max framerate specified in |codec_settings| of
273 // the last InitEncode() call.
274 double framerate_fps;
275 // The network bandwidth available for video. This is at least
276 // |bitrate.get_sum_bps()|, but may be higher if the application is not
277 // network constrained.
278 DataRate bandwidth_allocation;
Evan Shrubsole7c079f62019-09-26 09:55:03 +0200279
280 bool operator==(const RateControlParameters& rhs) const;
281 bool operator!=(const RateControlParameters& rhs) const;
Erik Språng4d9df382019-03-27 15:00:43 +0100282 };
283
Elad Alon6c371ca2019-04-04 12:28:51 +0200284 struct LossNotification {
285 // The timestamp of the last decodable frame *prior* to the last received.
286 // (The last received - described below - might itself be decodable or not.)
287 uint32_t timestamp_of_last_decodable;
288 // The timestamp of the last received frame.
289 uint32_t timestamp_of_last_received;
290 // Describes whether the dependencies of the last received frame were
291 // all decodable.
292 // |false| if some dependencies were undecodable, |true| if all dependencies
293 // were decodable, and |nullopt| if the dependencies are unknown.
Elad Alon20789e42019-04-09 11:56:14 +0200294 absl::optional<bool> dependencies_of_last_received_decodable;
Elad Alon6c371ca2019-04-04 12:28:51 +0200295 // Describes whether the received frame was decodable.
296 // |false| if some dependency was undecodable or if some packet belonging
297 // to the last received frame was missed.
298 // |true| if all dependencies were decodable and all packets belonging
299 // to the last received frame were received.
300 // |nullopt| if no packet belonging to the last frame was missed, but the
301 // last packet in the frame was not yet received.
Elad Alon20789e42019-04-09 11:56:14 +0200302 absl::optional<bool> last_received_decodable;
Elad Alon6c371ca2019-04-04 12:28:51 +0200303 };
304
Elad Alon370f93a2019-06-11 14:57:57 +0200305 // Negotiated capabilities which the VideoEncoder may expect the other
306 // side to use.
307 struct Capabilities {
308 explicit Capabilities(bool loss_notification)
309 : loss_notification(loss_notification) {}
310 bool loss_notification;
311 };
312
313 struct Settings {
314 Settings(const Capabilities& capabilities,
315 int number_of_cores,
316 size_t max_payload_size)
317 : capabilities(capabilities),
318 number_of_cores(number_of_cores),
319 max_payload_size(max_payload_size) {}
320
321 Capabilities capabilities;
322 int number_of_cores;
323 size_t max_payload_size;
324 };
325
ilnikd60d06a2017-04-05 03:02:20 -0700326 static VideoCodecVP8 GetDefaultVp8Settings();
327 static VideoCodecVP9 GetDefaultVp9Settings();
328 static VideoCodecH264 GetDefaultH264Settings();
329
330 virtual ~VideoEncoder() {}
331
Elad Alon8f01c4e2019-06-28 15:19:43 +0200332 // Set a FecControllerOverride, through which the encoder may override
333 // decisions made by FecController.
334 // TODO(bugs.webrtc.org/10769): Update downstream, then make pure-virtual.
335 virtual void SetFecControllerOverride(
336 FecControllerOverride* fec_controller_override);
337
ilnikd60d06a2017-04-05 03:02:20 -0700338 // Initialize the encoder with the information from the codecSettings
339 //
340 // Input:
341 // - codec_settings : Codec settings
Elad Alon370f93a2019-06-11 14:57:57 +0200342 // - settings : Settings affecting the encoding itself.
343 // Input for deprecated version:
ilnikd60d06a2017-04-05 03:02:20 -0700344 // - number_of_cores : Number of cores available for the encoder
345 // - max_payload_size : The maximum size each payload is allowed
346 // to have. Usually MTU - overhead.
347 //
348 // Return value : Set bit rate if OK
349 // <0 - Errors:
350 // WEBRTC_VIDEO_CODEC_ERR_PARAMETER
351 // WEBRTC_VIDEO_CODEC_ERR_SIZE
ilnikd60d06a2017-04-05 03:02:20 -0700352 // WEBRTC_VIDEO_CODEC_MEMORY
353 // WEBRTC_VIDEO_CODEC_ERROR
Elad Alon370f93a2019-06-11 14:57:57 +0200354 // TODO(bugs.webrtc.org/10720): After updating downstream projects and posting
355 // an announcement to discuss-webrtc, remove the three-parameters variant
356 // and make the two-parameters variant pure-virtual.
357 /* RTC_DEPRECATED */ virtual int32_t InitEncode(
358 const VideoCodec* codec_settings,
359 int32_t number_of_cores,
360 size_t max_payload_size);
361 virtual int InitEncode(const VideoCodec* codec_settings,
362 const VideoEncoder::Settings& settings);
ilnikd60d06a2017-04-05 03:02:20 -0700363
364 // Register an encode complete callback object.
365 //
366 // Input:
367 // - callback : Callback object which handles encoded images.
368 //
369 // Return value : WEBRTC_VIDEO_CODEC_OK if OK, < 0 otherwise.
370 virtual int32_t RegisterEncodeCompleteCallback(
371 EncodedImageCallback* callback) = 0;
372
373 // Free encoder memory.
374 // Return value : WEBRTC_VIDEO_CODEC_OK if OK, < 0 otherwise.
375 virtual int32_t Release() = 0;
376
377 // Encode an I420 image (as a part of a video stream). The encoded image
378 // will be returned to the user through the encode complete callback.
379 //
380 // Input:
381 // - frame : Image to be encoded
382 // - frame_types : Frame type to be generated by the encoder.
383 //
384 // Return value : WEBRTC_VIDEO_CODEC_OK if OK
385 // <0 - Errors:
386 // WEBRTC_VIDEO_CODEC_ERR_PARAMETER
387 // WEBRTC_VIDEO_CODEC_MEMORY
388 // WEBRTC_VIDEO_CODEC_ERROR
ilnikd60d06a2017-04-05 03:02:20 -0700389 virtual int32_t Encode(const VideoFrame& frame,
Niels Möller9d766b92019-03-28 09:19:35 +0100390 const std::vector<VideoFrameType>* frame_types) = 0;
ilnikd60d06a2017-04-05 03:02:20 -0700391
Erik Språng4d9df382019-03-27 15:00:43 +0100392 // Sets rate control parameters: bitrate, framerate, etc. These settings are
393 // instantaneous (i.e. not moving averages) and should apply from now until
394 // the next call to SetRates().
Erik Språng157b7812019-05-13 11:37:12 +0200395 virtual void SetRates(const RateControlParameters& parameters) = 0;
Erik Språng4d9df382019-03-27 15:00:43 +0100396
Elad Aloncde8ab22019-03-20 11:56:20 +0100397 // Inform the encoder when the packet loss rate changes.
398 //
399 // Input: - packet_loss_rate : The packet loss rate (0.0 to 1.0).
400 virtual void OnPacketLossRateUpdate(float packet_loss_rate);
401
402 // Inform the encoder when the round trip time changes.
403 //
404 // Input: - rtt_ms : The new RTT, in milliseconds.
405 virtual void OnRttUpdate(int64_t rtt_ms);
406
Elad Alon6c371ca2019-04-04 12:28:51 +0200407 // Called when a loss notification is received.
408 virtual void OnLossNotification(const LossNotification& loss_notification);
409
Erik Språngd3438aa2018-11-08 16:56:43 +0100410 // Returns meta-data about the encoder, such as implementation name.
411 // The output of this method may change during runtime. For instance if a
412 // hardware encoder fails, it may fall back to doing software encoding using
413 // an implementation with different characteristics.
Erik Språnge2fd86a2018-10-24 11:32:39 +0200414 virtual EncoderInfo GetEncoderInfo() const;
ilnikd60d06a2017-04-05 03:02:20 -0700415};
ilnikd60d06a2017-04-05 03:02:20 -0700416} // namespace webrtc
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200417#endif // API_VIDEO_CODECS_VIDEO_ENCODER_H_