ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 1 | /* |
| 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 Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #ifndef API_VIDEO_CODECS_VIDEO_ENCODER_H_ |
| 12 | #define API_VIDEO_CODECS_VIDEO_ENCODER_H_ |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 13 | |
Erik Språng | dbdd839 | 2019-01-17 15:27:50 +0100 | [diff] [blame] | 14 | #include <limits> |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 15 | #include <memory> |
| 16 | #include <string> |
| 17 | #include <vector> |
| 18 | |
Erik Språng | dbdd839 | 2019-01-17 15:27:50 +0100 | [diff] [blame] | 19 | #include "absl/container/inlined_vector.h" |
Danil Chapovalov | 0bc58cf | 2018-06-21 13:32:56 +0200 | [diff] [blame] | 20 | #include "absl/types/optional.h" |
Elad Alon | 8f01c4e | 2019-06-28 15:19:43 +0200 | [diff] [blame] | 21 | #include "api/fec_controller_override.h" |
Erik Språng | 4d9df38 | 2019-03-27 15:00:43 +0100 | [diff] [blame] | 22 | #include "api/units/data_rate.h" |
Niels Möller | 4dc66c5 | 2018-10-05 14:17:58 +0200 | [diff] [blame] | 23 | #include "api/video/encoded_image.h" |
Erik Språng | ec47565 | 2018-05-15 15:12:55 +0200 | [diff] [blame] | 24 | #include "api/video/video_bitrate_allocation.h" |
Erik Språng | f93eda1 | 2019-01-16 17:10:57 +0100 | [diff] [blame] | 25 | #include "api/video/video_codec_constants.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 26 | #include "api/video/video_frame.h" |
Niels Möller | 802506c | 2018-05-31 10:44:51 +0200 | [diff] [blame] | 27 | #include "api/video_codecs/video_codec.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 28 | #include "rtc_base/checks.h" |
Mirko Bonadei | 276827c | 2018-10-16 14:13:50 +0200 | [diff] [blame] | 29 | #include "rtc_base/system/rtc_export.h" |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 30 | |
| 31 | namespace webrtc { |
| 32 | |
| 33 | class RTPFragmentationHeader; |
| 34 | // TODO(pbos): Expose these through a public (root) header or change these APIs. |
| 35 | struct CodecSpecificInfo; |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 36 | |
| 37 | class EncodedImageCallback { |
| 38 | public: |
| 39 | virtual ~EncodedImageCallback() {} |
| 40 | |
| 41 | struct Result { |
| 42 | enum Error { |
| 43 | OK, |
| 44 | |
| 45 | // Failed to send the packet. |
| 46 | ERROR_SEND_FAILED, |
| 47 | }; |
| 48 | |
mflodman | 351424e | 2017-08-10 02:43:14 -0700 | [diff] [blame] | 49 | explicit Result(Error error) : error(error) {} |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 50 | Result(Error error, uint32_t frame_id) : error(error), frame_id(frame_id) {} |
| 51 | |
| 52 | Error error; |
| 53 | |
| 54 | // Frame ID assigned to the frame. The frame ID should be the same as the ID |
| 55 | // seen by the receiver for this frame. RTP timestamp of the frame is used |
| 56 | // as frame ID when RTP is used to send video. Must be used only when |
| 57 | // error=OK. |
| 58 | uint32_t frame_id = 0; |
| 59 | |
| 60 | // Tells the encoder that the next frame is should be dropped. |
| 61 | bool drop_next_frame = false; |
| 62 | }; |
| 63 | |
Ilya Nikolaevskiy | d79314f | 2017-10-23 10:45:37 +0200 | [diff] [blame] | 64 | // Used to signal the encoder about reason a frame is dropped. |
| 65 | // kDroppedByMediaOptimizations - dropped by MediaOptimizations (for rate |
| 66 | // limiting purposes). |
| 67 | // kDroppedByEncoder - dropped by encoder's internal rate limiter. |
| 68 | enum class DropReason : uint8_t { |
| 69 | kDroppedByMediaOptimizations, |
| 70 | kDroppedByEncoder |
| 71 | }; |
| 72 | |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 73 | // Callback function which is called when an image has been encoded. |
| 74 | virtual Result OnEncodedImage( |
| 75 | const EncodedImage& encoded_image, |
| 76 | const CodecSpecificInfo* codec_specific_info, |
| 77 | const RTPFragmentationHeader* fragmentation) = 0; |
| 78 | |
Ilya Nikolaevskiy | d79314f | 2017-10-23 10:45:37 +0200 | [diff] [blame] | 79 | virtual void OnDroppedFrame(DropReason reason) {} |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 80 | }; |
| 81 | |
Mirko Bonadei | 276827c | 2018-10-16 14:13:50 +0200 | [diff] [blame] | 82 | class RTC_EXPORT VideoEncoder { |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 83 | public: |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 84 | struct QpThresholds { |
| 85 | QpThresholds(int l, int h) : low(l), high(h) {} |
| 86 | QpThresholds() : low(-1), high(-1) {} |
| 87 | int low; |
| 88 | int high; |
| 89 | }; |
Elad Alon | 370f93a | 2019-06-11 14:57:57 +0200 | [diff] [blame] | 90 | |
Niels Möller | 225c787 | 2018-02-22 15:03:53 +0100 | [diff] [blame] | 91 | // Quality scaling is enabled if thresholds are provided. |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 92 | struct ScalingSettings { |
Niels Möller | 225c787 | 2018-02-22 15:03:53 +0100 | [diff] [blame] | 93 | private: |
| 94 | // Private magic type for kOff, implicitly convertible to |
| 95 | // ScalingSettings. |
| 96 | struct KOff {}; |
| 97 | |
| 98 | public: |
| 99 | // TODO(nisse): Would be nicer if kOff were a constant ScalingSettings |
Danil Chapovalov | 0bc58cf | 2018-06-21 13:32:56 +0200 | [diff] [blame] | 100 | // rather than a magic value. However, absl::optional is not trivially copy |
Niels Möller | 225c787 | 2018-02-22 15:03:53 +0100 | [diff] [blame] | 101 | // constructible, and hence a constant ScalingSettings needs a static |
| 102 | // initializer, which is strongly discouraged in Chrome. We can hopefully |
| 103 | // fix this when we switch to absl::optional or std::optional. |
| 104 | static constexpr KOff kOff = {}; |
| 105 | |
| 106 | ScalingSettings(int low, int high); |
| 107 | ScalingSettings(int low, int high, int min_pixels); |
mflodman | 351424e | 2017-08-10 02:43:14 -0700 | [diff] [blame] | 108 | ScalingSettings(const ScalingSettings&); |
Niels Möller | 225c787 | 2018-02-22 15:03:53 +0100 | [diff] [blame] | 109 | ScalingSettings(KOff); // NOLINT(runtime/explicit) |
mflodman | 351424e | 2017-08-10 02:43:14 -0700 | [diff] [blame] | 110 | ~ScalingSettings(); |
| 111 | |
Erik Språng | e2fd86a | 2018-10-24 11:32:39 +0200 | [diff] [blame] | 112 | absl::optional<QpThresholds> thresholds; |
asapersson | 142fcc9 | 2017-08-17 08:58:54 -0700 | [diff] [blame] | 113 | |
| 114 | // We will never ask for a resolution lower than this. |
| 115 | // TODO(kthelgason): Lower this limit when better testing |
| 116 | // on MediaCodec and fallback implementations are in place. |
| 117 | // See https://bugs.chromium.org/p/webrtc/issues/detail?id=7206 |
Erik Språng | e2fd86a | 2018-10-24 11:32:39 +0200 | [diff] [blame] | 118 | int min_pixels_per_frame = 320 * 180; |
Niels Möller | 225c787 | 2018-02-22 15:03:53 +0100 | [diff] [blame] | 119 | |
| 120 | private: |
| 121 | // Private constructor; to get an object without thresholds, use |
| 122 | // the magic constant ScalingSettings::kOff. |
| 123 | ScalingSettings(); |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 124 | }; |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 125 | |
Sergey Silkin | 3d642f8 | 2019-07-03 15:09:33 +0200 | [diff] [blame] | 126 | // Bitrate limits for resolution. |
| 127 | struct ResolutionBitrateLimits { |
| 128 | ResolutionBitrateLimits(int frame_size_pixels, |
| 129 | int min_start_bitrate_bps, |
| 130 | int min_bitrate_bps, |
| 131 | int max_bitrate_bps) |
Sergey Silkin | be0adee | 2019-06-26 14:11:03 +0200 | [diff] [blame] | 132 | : frame_size_pixels(frame_size_pixels), |
| 133 | min_start_bitrate_bps(min_start_bitrate_bps), |
| 134 | min_bitrate_bps(min_bitrate_bps), |
| 135 | max_bitrate_bps(max_bitrate_bps) {} |
| 136 | // Size of video frame, in pixels, the bitrate thresholds are intended for. |
| 137 | int frame_size_pixels = 0; |
| 138 | // Recommended minimum bitrate to start encoding. |
| 139 | int min_start_bitrate_bps = 0; |
| 140 | // Recommended minimum bitrate. |
| 141 | int min_bitrate_bps = 0; |
| 142 | // Recommended maximum bitrate. |
| 143 | int max_bitrate_bps = 0; |
| 144 | }; |
| 145 | |
Erik Språng | e2fd86a | 2018-10-24 11:32:39 +0200 | [diff] [blame] | 146 | // Struct containing metadata about the encoder implementing this interface. |
Mirko Bonadei | 54875d0 | 2019-11-06 20:16:12 +0100 | [diff] [blame] | 147 | struct RTC_EXPORT EncoderInfo { |
Erik Språng | dbdd839 | 2019-01-17 15:27:50 +0100 | [diff] [blame] | 148 | static constexpr uint8_t kMaxFramerateFraction = |
| 149 | std::numeric_limits<uint8_t>::max(); |
| 150 | |
Erik Språng | e2fd86a | 2018-10-24 11:32:39 +0200 | [diff] [blame] | 151 | EncoderInfo(); |
Mirta Dvornicic | 897a991 | 2018-11-30 13:12:21 +0100 | [diff] [blame] | 152 | EncoderInfo(const EncoderInfo&); |
| 153 | |
Erik Språng | e2fd86a | 2018-10-24 11:32:39 +0200 | [diff] [blame] | 154 | ~EncoderInfo(); |
| 155 | |
| 156 | // Any encoder implementation wishing to use the WebRTC provided |
| 157 | // quality scaler must populate this field. |
| 158 | ScalingSettings scaling_settings; |
| 159 | |
| 160 | // If true, encoder supports working with a native handle (e.g. texture |
| 161 | // handle for hw codecs) rather than requiring a raw I420 buffer. |
| 162 | bool supports_native_handle; |
| 163 | |
| 164 | // The name of this particular encoder implementation, e.g. "libvpx". |
| 165 | std::string implementation_name; |
Erik Språng | d3438aa | 2018-11-08 16:56:43 +0100 | [diff] [blame] | 166 | |
| 167 | // If this field is true, the encoder rate controller must perform |
| 168 | // well even in difficult situations, and produce close to the specified |
| 169 | // target bitrate seen over a reasonable time window, drop frames if |
| 170 | // necessary in order to keep the rate correct, and react quickly to |
| 171 | // changing bitrate targets. If this method returns true, we disable the |
| 172 | // frame dropper in the media optimization module and rely entirely on the |
| 173 | // encoder to produce media at a bitrate that closely matches the target. |
| 174 | // Any overshooting may result in delay buildup. If this method returns |
| 175 | // false (default behavior), the media opt frame dropper will drop input |
| 176 | // frames if it suspect encoder misbehavior. Misbehavior is common, |
| 177 | // especially in hardware codecs. Disable media opt at your own risk. |
| 178 | bool has_trusted_rate_controller; |
Mirta Dvornicic | 897a991 | 2018-11-30 13:12:21 +0100 | [diff] [blame] | 179 | |
| 180 | // If this field is true, the encoder uses hardware support and different |
| 181 | // thresholds will be used in CPU adaptation. |
| 182 | bool is_hardware_accelerated; |
| 183 | |
| 184 | // If this field is true, the encoder uses internal camera sources, meaning |
| 185 | // that it does not require/expect frames to be delivered via |
| 186 | // webrtc::VideoEncoder::Encode. |
| 187 | // Internal source encoders are deprecated and support for them will be |
| 188 | // phased out. |
| 189 | bool has_internal_source; |
Erik Språng | dbdd839 | 2019-01-17 15:27:50 +0100 | [diff] [blame] | 190 | |
| 191 | // For each spatial layer (simulcast stream or SVC layer), represented as an |
| 192 | // element in |fps_allocation| a vector indicates how many temporal layers |
| 193 | // the encoder is using for that spatial layer. |
| 194 | // For each spatial/temporal layer pair, the frame rate fraction is given as |
| 195 | // an 8bit unsigned integer where 0 = 0% and 255 = 100%. |
| 196 | // |
| 197 | // If the vector is empty for a given spatial layer, it indicates that frame |
| 198 | // rates are not defined and we can't count on any specific frame rate to be |
| 199 | // generated. Likely this indicates Vp8TemporalLayersType::kBitrateDynamic. |
| 200 | // |
| 201 | // The encoder may update this on a per-frame basis in response to both |
| 202 | // internal and external signals. |
| 203 | // |
| 204 | // Spatial layers are treated independently, but temporal layers are |
| 205 | // cumulative. For instance, if: |
| 206 | // fps_allocation[0][0] = kFullFramerate / 2; |
| 207 | // fps_allocation[0][1] = kFullFramerate; |
| 208 | // Then half of the frames are in the base layer and half is in TL1, but |
| 209 | // since TL1 is assumed to depend on the base layer, the frame rate is |
| 210 | // indicated as the full 100% for the top layer. |
| 211 | // |
| 212 | // Defaults to a single spatial layer containing a single temporal layer |
| 213 | // with a 100% frame rate fraction. |
| 214 | absl::InlinedVector<uint8_t, kMaxTemporalStreams> |
| 215 | fps_allocation[kMaxSpatialLayers]; |
Sergey Silkin | be0adee | 2019-06-26 14:11:03 +0200 | [diff] [blame] | 216 | |
Sergey Silkin | 3d642f8 | 2019-07-03 15:09:33 +0200 | [diff] [blame] | 217 | // Recommended bitrate limits for different resolutions. |
| 218 | std::vector<ResolutionBitrateLimits> resolution_bitrate_limits; |
Erik Språng | f4e0c29 | 2019-10-01 18:50:03 +0200 | [diff] [blame] | 219 | |
| 220 | // If true, this encoder has internal support for generating simulcast |
| 221 | // streams. Otherwise, an adapter class will be needed. |
| 222 | // Even if true, the config provided to InitEncode() might not be supported, |
| 223 | // in such case the encoder should return |
| 224 | // WEBRTC_VIDEO_CODEC_ERR_SIMULCAST_PARAMETERS_NOT_SUPPORTED. |
| 225 | bool supports_simulcast; |
Erik Språng | e2fd86a | 2018-10-24 11:32:39 +0200 | [diff] [blame] | 226 | }; |
| 227 | |
Mirko Bonadei | 8fa616f | 2019-11-12 10:05:05 +0100 | [diff] [blame] | 228 | struct RTC_EXPORT RateControlParameters { |
Erik Språng | 4c6ca30 | 2019-04-08 15:14:01 +0200 | [diff] [blame] | 229 | RateControlParameters(); |
| 230 | RateControlParameters(const VideoBitrateAllocation& bitrate, |
Erik Språng | 16cb8f5 | 2019-04-12 13:59:09 +0200 | [diff] [blame] | 231 | double framerate_fps); |
| 232 | RateControlParameters(const VideoBitrateAllocation& bitrate, |
Erik Språng | 4c6ca30 | 2019-04-08 15:14:01 +0200 | [diff] [blame] | 233 | double framerate_fps, |
| 234 | DataRate bandwidth_allocation); |
| 235 | virtual ~RateControlParameters(); |
| 236 | |
Erik Språng | 4d9df38 | 2019-03-27 15:00:43 +0100 | [diff] [blame] | 237 | // Target bitrate, per spatial/temporal layer. |
| 238 | // A target bitrate of 0bps indicates a layer should not be encoded at all. |
| 239 | VideoBitrateAllocation bitrate; |
| 240 | // Target framerate, in fps. A value <= 0.0 is invalid and should be |
| 241 | // interpreted as framerate target not available. In this case the encoder |
| 242 | // should fall back to the max framerate specified in |codec_settings| of |
| 243 | // the last InitEncode() call. |
| 244 | double framerate_fps; |
| 245 | // The network bandwidth available for video. This is at least |
| 246 | // |bitrate.get_sum_bps()|, but may be higher if the application is not |
| 247 | // network constrained. |
| 248 | DataRate bandwidth_allocation; |
Evan Shrubsole | 7c079f6 | 2019-09-26 09:55:03 +0200 | [diff] [blame] | 249 | |
| 250 | bool operator==(const RateControlParameters& rhs) const; |
| 251 | bool operator!=(const RateControlParameters& rhs) const; |
Erik Språng | 4d9df38 | 2019-03-27 15:00:43 +0100 | [diff] [blame] | 252 | }; |
| 253 | |
Elad Alon | 6c371ca | 2019-04-04 12:28:51 +0200 | [diff] [blame] | 254 | struct LossNotification { |
| 255 | // The timestamp of the last decodable frame *prior* to the last received. |
| 256 | // (The last received - described below - might itself be decodable or not.) |
| 257 | uint32_t timestamp_of_last_decodable; |
| 258 | // The timestamp of the last received frame. |
| 259 | uint32_t timestamp_of_last_received; |
| 260 | // Describes whether the dependencies of the last received frame were |
| 261 | // all decodable. |
| 262 | // |false| if some dependencies were undecodable, |true| if all dependencies |
| 263 | // were decodable, and |nullopt| if the dependencies are unknown. |
Elad Alon | 20789e4 | 2019-04-09 11:56:14 +0200 | [diff] [blame] | 264 | absl::optional<bool> dependencies_of_last_received_decodable; |
Elad Alon | 6c371ca | 2019-04-04 12:28:51 +0200 | [diff] [blame] | 265 | // Describes whether the received frame was decodable. |
| 266 | // |false| if some dependency was undecodable or if some packet belonging |
| 267 | // to the last received frame was missed. |
| 268 | // |true| if all dependencies were decodable and all packets belonging |
| 269 | // to the last received frame were received. |
| 270 | // |nullopt| if no packet belonging to the last frame was missed, but the |
| 271 | // last packet in the frame was not yet received. |
Elad Alon | 20789e4 | 2019-04-09 11:56:14 +0200 | [diff] [blame] | 272 | absl::optional<bool> last_received_decodable; |
Elad Alon | 6c371ca | 2019-04-04 12:28:51 +0200 | [diff] [blame] | 273 | }; |
| 274 | |
Elad Alon | 370f93a | 2019-06-11 14:57:57 +0200 | [diff] [blame] | 275 | // Negotiated capabilities which the VideoEncoder may expect the other |
| 276 | // side to use. |
| 277 | struct Capabilities { |
| 278 | explicit Capabilities(bool loss_notification) |
| 279 | : loss_notification(loss_notification) {} |
| 280 | bool loss_notification; |
| 281 | }; |
| 282 | |
| 283 | struct Settings { |
| 284 | Settings(const Capabilities& capabilities, |
| 285 | int number_of_cores, |
| 286 | size_t max_payload_size) |
| 287 | : capabilities(capabilities), |
| 288 | number_of_cores(number_of_cores), |
| 289 | max_payload_size(max_payload_size) {} |
| 290 | |
| 291 | Capabilities capabilities; |
| 292 | int number_of_cores; |
| 293 | size_t max_payload_size; |
| 294 | }; |
| 295 | |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 296 | static VideoCodecVP8 GetDefaultVp8Settings(); |
| 297 | static VideoCodecVP9 GetDefaultVp9Settings(); |
| 298 | static VideoCodecH264 GetDefaultH264Settings(); |
| 299 | |
| 300 | virtual ~VideoEncoder() {} |
| 301 | |
Elad Alon | 8f01c4e | 2019-06-28 15:19:43 +0200 | [diff] [blame] | 302 | // Set a FecControllerOverride, through which the encoder may override |
| 303 | // decisions made by FecController. |
| 304 | // TODO(bugs.webrtc.org/10769): Update downstream, then make pure-virtual. |
| 305 | virtual void SetFecControllerOverride( |
| 306 | FecControllerOverride* fec_controller_override); |
| 307 | |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 308 | // Initialize the encoder with the information from the codecSettings |
| 309 | // |
| 310 | // Input: |
| 311 | // - codec_settings : Codec settings |
Elad Alon | 370f93a | 2019-06-11 14:57:57 +0200 | [diff] [blame] | 312 | // - settings : Settings affecting the encoding itself. |
| 313 | // Input for deprecated version: |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 314 | // - number_of_cores : Number of cores available for the encoder |
| 315 | // - max_payload_size : The maximum size each payload is allowed |
| 316 | // to have. Usually MTU - overhead. |
| 317 | // |
| 318 | // Return value : Set bit rate if OK |
| 319 | // <0 - Errors: |
| 320 | // WEBRTC_VIDEO_CODEC_ERR_PARAMETER |
| 321 | // WEBRTC_VIDEO_CODEC_ERR_SIZE |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 322 | // WEBRTC_VIDEO_CODEC_MEMORY |
| 323 | // WEBRTC_VIDEO_CODEC_ERROR |
Elad Alon | 370f93a | 2019-06-11 14:57:57 +0200 | [diff] [blame] | 324 | // TODO(bugs.webrtc.org/10720): After updating downstream projects and posting |
| 325 | // an announcement to discuss-webrtc, remove the three-parameters variant |
| 326 | // and make the two-parameters variant pure-virtual. |
| 327 | /* RTC_DEPRECATED */ virtual int32_t InitEncode( |
| 328 | const VideoCodec* codec_settings, |
| 329 | int32_t number_of_cores, |
| 330 | size_t max_payload_size); |
| 331 | virtual int InitEncode(const VideoCodec* codec_settings, |
| 332 | const VideoEncoder::Settings& settings); |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 333 | |
| 334 | // Register an encode complete callback object. |
| 335 | // |
| 336 | // Input: |
| 337 | // - callback : Callback object which handles encoded images. |
| 338 | // |
| 339 | // Return value : WEBRTC_VIDEO_CODEC_OK if OK, < 0 otherwise. |
| 340 | virtual int32_t RegisterEncodeCompleteCallback( |
| 341 | EncodedImageCallback* callback) = 0; |
| 342 | |
| 343 | // Free encoder memory. |
| 344 | // Return value : WEBRTC_VIDEO_CODEC_OK if OK, < 0 otherwise. |
| 345 | virtual int32_t Release() = 0; |
| 346 | |
| 347 | // Encode an I420 image (as a part of a video stream). The encoded image |
| 348 | // will be returned to the user through the encode complete callback. |
| 349 | // |
| 350 | // Input: |
| 351 | // - frame : Image to be encoded |
| 352 | // - frame_types : Frame type to be generated by the encoder. |
| 353 | // |
| 354 | // Return value : WEBRTC_VIDEO_CODEC_OK if OK |
| 355 | // <0 - Errors: |
| 356 | // WEBRTC_VIDEO_CODEC_ERR_PARAMETER |
| 357 | // WEBRTC_VIDEO_CODEC_MEMORY |
| 358 | // WEBRTC_VIDEO_CODEC_ERROR |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 359 | virtual int32_t Encode(const VideoFrame& frame, |
Niels Möller | 9d766b9 | 2019-03-28 09:19:35 +0100 | [diff] [blame] | 360 | const std::vector<VideoFrameType>* frame_types) = 0; |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 361 | |
Erik Språng | 4d9df38 | 2019-03-27 15:00:43 +0100 | [diff] [blame] | 362 | // Sets rate control parameters: bitrate, framerate, etc. These settings are |
| 363 | // instantaneous (i.e. not moving averages) and should apply from now until |
| 364 | // the next call to SetRates(). |
Erik Språng | 157b781 | 2019-05-13 11:37:12 +0200 | [diff] [blame] | 365 | virtual void SetRates(const RateControlParameters& parameters) = 0; |
Erik Språng | 4d9df38 | 2019-03-27 15:00:43 +0100 | [diff] [blame] | 366 | |
Elad Alon | cde8ab2 | 2019-03-20 11:56:20 +0100 | [diff] [blame] | 367 | // Inform the encoder when the packet loss rate changes. |
| 368 | // |
| 369 | // Input: - packet_loss_rate : The packet loss rate (0.0 to 1.0). |
| 370 | virtual void OnPacketLossRateUpdate(float packet_loss_rate); |
| 371 | |
| 372 | // Inform the encoder when the round trip time changes. |
| 373 | // |
| 374 | // Input: - rtt_ms : The new RTT, in milliseconds. |
| 375 | virtual void OnRttUpdate(int64_t rtt_ms); |
| 376 | |
Elad Alon | 6c371ca | 2019-04-04 12:28:51 +0200 | [diff] [blame] | 377 | // Called when a loss notification is received. |
| 378 | virtual void OnLossNotification(const LossNotification& loss_notification); |
| 379 | |
Erik Språng | d3438aa | 2018-11-08 16:56:43 +0100 | [diff] [blame] | 380 | // Returns meta-data about the encoder, such as implementation name. |
| 381 | // The output of this method may change during runtime. For instance if a |
| 382 | // hardware encoder fails, it may fall back to doing software encoding using |
| 383 | // an implementation with different characteristics. |
Erik Språng | e2fd86a | 2018-10-24 11:32:39 +0200 | [diff] [blame] | 384 | virtual EncoderInfo GetEncoderInfo() const; |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 385 | }; |
ilnik | d60d06a | 2017-04-05 03:02:20 -0700 | [diff] [blame] | 386 | } // namespace webrtc |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 387 | #endif // API_VIDEO_CODECS_VIDEO_ENCODER_H_ |