John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1 | /* |
John Koleszar | c2140b8 | 2010-09-09 08:16:39 -0400 | [diff] [blame] | 2 | * Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 3 | * |
John Koleszar | 94c52e4 | 2010-06-18 12:39:21 -0400 | [diff] [blame] | 4 | * Use of this source code is governed by a BSD-style license |
John Koleszar | 09202d8 | 2010-06-04 16:19:40 -0400 | [diff] [blame] | 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 |
John Koleszar | 94c52e4 | 2010-06-18 12:39:21 -0400 | [diff] [blame] | 7 | * in the file PATENTS. All contributing project authors may |
John Koleszar | 09202d8 | 2010-06-04 16:19:40 -0400 | [diff] [blame] | 8 | * be found in the AUTHORS file in the root of the source tree. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 9 | */ |
James Zern | 7386bde | 2013-12-15 18:26:15 -0800 | [diff] [blame] | 10 | #ifndef VPX_VP8CX_H_ |
| 11 | #define VPX_VP8CX_H_ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 12 | |
| 13 | /*!\defgroup vp8_encoder WebM VP8 Encoder |
| 14 | * \ingroup vp8 |
| 15 | * |
| 16 | * @{ |
| 17 | */ |
Johann | e883c74 | 2013-12-16 13:15:26 -0800 | [diff] [blame] | 18 | #include "./vp8.h" |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 19 | |
James Zern | f42d52e | 2011-02-16 17:54:49 -0800 | [diff] [blame] | 20 | /*!\file |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 21 | * \brief Provides definitions for using the VP8 encoder algorithm within the |
| 22 | * vpx Codec Interface. |
| 23 | */ |
Dmitry Kovalev | e288c60 | 2013-09-29 18:00:15 -0700 | [diff] [blame] | 24 | |
| 25 | #ifdef __cplusplus |
| 26 | extern "C" { |
| 27 | #endif |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 28 | |
James Zern | 8e17e82 | 2011-02-24 14:12:57 -0800 | [diff] [blame] | 29 | /*!\name Algorithm interface for VP8 |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 30 | * |
| 31 | * This interface provides the capability to encode raw VP8 streams, as would |
| 32 | * be found in AVI files. |
James Zern | 8e17e82 | 2011-02-24 14:12:57 -0800 | [diff] [blame] | 33 | * @{ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 34 | */ |
John Koleszar | fa7a55b | 2010-09-21 10:35:52 -0400 | [diff] [blame] | 35 | extern vpx_codec_iface_t vpx_codec_vp8_cx_algo; |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 36 | extern vpx_codec_iface_t *vpx_codec_vp8_cx(void); |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 37 | |
John Koleszar | 83b1d90 | 2012-11-05 12:37:14 -0800 | [diff] [blame] | 38 | /* TODO(jkoleszar): These move to VP9 in a later patch set. */ |
John Koleszar | a9c7597 | 2012-11-08 17:09:30 -0800 | [diff] [blame] | 39 | extern vpx_codec_iface_t vpx_codec_vp9_cx_algo; |
| 40 | extern vpx_codec_iface_t *vpx_codec_vp9_cx(void); |
John Koleszar | 83b1d90 | 2012-11-05 12:37:14 -0800 | [diff] [blame] | 41 | |
| 42 | /*!@} - end algorithm interface member group*/ |
John Koleszar | 0952acb | 2010-06-01 11:14:25 -0400 | [diff] [blame] | 43 | |
| 44 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 45 | /* |
| 46 | * Algorithm Flags |
| 47 | */ |
| 48 | |
| 49 | /*!\brief Don't reference the last frame |
| 50 | * |
| 51 | * When this flag is set, the encoder will not use the last frame as a |
| 52 | * predictor. When not set, the encoder will choose whether to use the |
| 53 | * last frame or not automatically. |
| 54 | */ |
| 55 | #define VP8_EFLAG_NO_REF_LAST (1<<16) |
| 56 | |
| 57 | |
| 58 | /*!\brief Don't reference the golden frame |
| 59 | * |
| 60 | * When this flag is set, the encoder will not use the golden frame as a |
| 61 | * predictor. When not set, the encoder will choose whether to use the |
| 62 | * golden frame or not automatically. |
| 63 | */ |
| 64 | #define VP8_EFLAG_NO_REF_GF (1<<17) |
| 65 | |
| 66 | |
| 67 | /*!\brief Don't reference the alternate reference frame |
| 68 | * |
| 69 | * When this flag is set, the encoder will not use the alt ref frame as a |
| 70 | * predictor. When not set, the encoder will choose whether to use the |
| 71 | * alt ref frame or not automatically. |
| 72 | */ |
| 73 | #define VP8_EFLAG_NO_REF_ARF (1<<21) |
| 74 | |
| 75 | |
| 76 | /*!\brief Don't update the last frame |
| 77 | * |
| 78 | * When this flag is set, the encoder will not update the last frame with |
| 79 | * the contents of the current frame. |
| 80 | */ |
| 81 | #define VP8_EFLAG_NO_UPD_LAST (1<<18) |
| 82 | |
| 83 | |
| 84 | /*!\brief Don't update the golden frame |
| 85 | * |
| 86 | * When this flag is set, the encoder will not update the golden frame with |
| 87 | * the contents of the current frame. |
| 88 | */ |
| 89 | #define VP8_EFLAG_NO_UPD_GF (1<<22) |
| 90 | |
| 91 | |
| 92 | /*!\brief Don't update the alternate reference frame |
| 93 | * |
| 94 | * When this flag is set, the encoder will not update the alt ref frame with |
| 95 | * the contents of the current frame. |
| 96 | */ |
| 97 | #define VP8_EFLAG_NO_UPD_ARF (1<<23) |
| 98 | |
| 99 | |
| 100 | /*!\brief Force golden frame update |
| 101 | * |
| 102 | * When this flag is set, the encoder copy the contents of the current frame |
| 103 | * to the golden frame buffer. |
| 104 | */ |
| 105 | #define VP8_EFLAG_FORCE_GF (1<<19) |
| 106 | |
| 107 | |
| 108 | /*!\brief Force alternate reference frame update |
| 109 | * |
| 110 | * When this flag is set, the encoder copy the contents of the current frame |
| 111 | * to the alternate reference frame buffer. |
| 112 | */ |
| 113 | #define VP8_EFLAG_FORCE_ARF (1<<24) |
| 114 | |
| 115 | |
| 116 | /*!\brief Disable entropy update |
| 117 | * |
| 118 | * When this flag is set, the encoder will not update its internal entropy |
| 119 | * model based on the entropy of this frame. |
| 120 | */ |
| 121 | #define VP8_EFLAG_NO_UPD_ENTROPY (1<<20) |
| 122 | |
| 123 | |
| 124 | /*!\brief VP8 encoder control functions |
| 125 | * |
James Zern | 8e17e82 | 2011-02-24 14:12:57 -0800 | [diff] [blame] | 126 | * This set of macros define the control functions available for the VP8 |
| 127 | * encoder interface. |
| 128 | * |
| 129 | * \sa #vpx_codec_control |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 130 | */ |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 131 | enum vp8e_enc_control_id { |
| 132 | VP8E_UPD_ENTROPY = 5, /**< control function to set mode of entropy update in encoder */ |
| 133 | VP8E_UPD_REFERENCE, /**< control function to set reference update mode in encoder */ |
| 134 | VP8E_USE_REFERENCE, /**< control function to set which reference frame encoder can use */ |
| 135 | VP8E_SET_ROI_MAP, /**< control function to pass an ROI map to encoder */ |
| 136 | VP8E_SET_ACTIVEMAP, /**< control function to pass an Active map to encoder */ |
| 137 | VP8E_SET_SCALEMODE = 11, /**< control function to set encoder scaling mode */ |
| 138 | /*!\brief control function to set vp8 encoder cpuused |
| 139 | * |
| 140 | * Changes in this value influences, among others, the encoder's selection |
| 141 | * of motion estimation methods. Values greater than 0 will increase encoder |
| 142 | * speed at the expense of quality. |
| 143 | * The full set of adjustments can be found in |
| 144 | * onyx_if.c:vp8_set_speed_features(). |
| 145 | * \todo List highlights of the changes at various levels. |
| 146 | * |
| 147 | * \note Valid range: -16..16 |
| 148 | */ |
| 149 | VP8E_SET_CPUUSED = 13, |
| 150 | VP8E_SET_ENABLEAUTOALTREF, /**< control function to enable vp8 to automatic set and use altref frame */ |
JackyChen | bb1a236 | 2014-09-12 11:48:44 -0700 | [diff] [blame] | 151 | /*!\brief control function to set noise sensitivity |
| 152 | * |
| 153 | * 0: off, 1: OnYOnly, 2: OnYUV, |
| 154 | * 3: OnYUVAggressive, 4: Adaptive |
| 155 | */ |
| 156 | VP8E_SET_NOISE_SENSITIVITY, |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 157 | VP8E_SET_SHARPNESS, /**< control function to set sharpness */ |
| 158 | VP8E_SET_STATIC_THRESHOLD, /**< control function to set the threshold for macroblocks treated static */ |
| 159 | VP8E_SET_TOKEN_PARTITIONS, /**< control function to set the number of token partitions */ |
| 160 | VP8E_GET_LAST_QUANTIZER, /**< return the quantizer chosen by the |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 161 | encoder for the last frame using the internal |
| 162 | scale */ |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 163 | VP8E_GET_LAST_QUANTIZER_64, /**< return the quantizer chosen by the |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 164 | encoder for the last frame, using the 0..63 |
| 165 | scale as used by the rc_*_quantizer config |
| 166 | parameters */ |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 167 | VP8E_SET_ARNR_MAXFRAMES, /**< control function to set the max number of frames blurred creating arf*/ |
Adrian Grange | 0a386b9 | 2014-04-28 14:28:58 -0700 | [diff] [blame] | 168 | VP8E_SET_ARNR_STRENGTH, //!< control function to set the filter |
| 169 | //!< strength for the arf |
Adrian Grange | a765705 | 2014-05-05 11:31:55 -0700 | [diff] [blame] | 170 | |
| 171 | /*!\deprecated control function to set the filter type to use for the arf */ |
| 172 | VP8E_SET_ARNR_TYPE, |
| 173 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 174 | VP8E_SET_TUNING, /**< control function to set visual tuning */ |
| 175 | /*!\brief control function to set constrained quality level |
| 176 | * |
| 177 | * \attention For this value to be used vpx_codec_enc_cfg_t::g_usage must be |
| 178 | * set to #VPX_CQ. |
| 179 | * \note Valid range: 0..63 |
| 180 | */ |
| 181 | VP8E_SET_CQ_LEVEL, |
John Koleszar | 1654ae9 | 2011-07-28 09:17:32 -0400 | [diff] [blame] | 182 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 183 | /*!\brief Max data rate for Intra frames |
| 184 | * |
| 185 | * This value controls additional clamping on the maximum size of a |
| 186 | * keyframe. It is expressed as a percentage of the average |
| 187 | * per-frame bitrate, with the special (and default) value 0 meaning |
| 188 | * unlimited, or no additional clamping beyond the codec's built-in |
| 189 | * algorithm. |
| 190 | * |
| 191 | * For example, to allocate no more than 4.5 frames worth of bitrate |
| 192 | * to a keyframe, set this to 450. |
| 193 | * |
| 194 | */ |
| 195 | VP8E_SET_MAX_INTRA_BITRATE_PCT, |
Marco | af898b5 | 2014-11-10 13:07:05 -0800 | [diff] [blame] | 196 | VP8E_SET_FRAME_FLAGS, /**< control function to set reference and update frame flags */ |
John Koleszar | 83b1d90 | 2012-11-05 12:37:14 -0800 | [diff] [blame] | 197 | |
Yaowu Xu | 636099f | 2014-10-24 09:31:16 -0700 | [diff] [blame] | 198 | /*!\brief Max data rate for Inter frames |
| 199 | * |
| 200 | * This value controls additional clamping on the maximum size of an |
| 201 | * inter frame. It is expressed as a percentage of the average |
| 202 | * per-frame bitrate, with the special (and default) value 0 meaning |
| 203 | * unlimited, or no additional clamping beyond the codec's built-in |
| 204 | * algorithm. |
| 205 | * |
| 206 | * For example, to allow no more than 4.5 frames worth of bitrate |
| 207 | * to an inter frame, set this to 450. |
| 208 | * |
| 209 | */ |
| 210 | VP8E_SET_MAX_INTER_BITRATE_PCT, |
| 211 | |
Yaowu Xu | 03a60b7 | 2014-10-27 13:13:14 -0700 | [diff] [blame] | 212 | /*!\brief Boost percentage for Golden Frame in CBR mode |
| 213 | * |
| 214 | * This value controls the amount of boost given to Golden Frame in |
| 215 | * CBR mode. It is expressed as a percentage of the average |
| 216 | * per-frame bitrate, with the special (and default) value 0 meaning |
| 217 | * the feature is off, i.e., no golden frame boost in CBR mode and |
| 218 | * average bitrate target is used. |
| 219 | * |
| 220 | * For example, to allow 100% more bits, i.e, 2X, in a golden frame |
| 221 | * than average frame, set this to 100. |
| 222 | * |
| 223 | */ |
| 224 | VP8E_SET_GF_CBR_BOOST_PCT, |
John Koleszar | 83b1d90 | 2012-11-05 12:37:14 -0800 | [diff] [blame] | 225 | |
Marco | af898b5 | 2014-11-10 13:07:05 -0800 | [diff] [blame] | 226 | /*!\brief Codec control function to set the temporal layer id |
| 227 | * |
| 228 | * For temporal scalability: this control allows the application to set the |
| 229 | * layer id for each frame to be encoded. Note that this control must be set |
| 230 | * for every frame prior to encoding. The usage of this control function |
| 231 | * supersedes the internal temporal pattern counter, which is now deprecated. |
| 232 | */ |
| 233 | VP8E_SET_TEMPORAL_LAYER_ID, |
| 234 | |
| 235 | VP8E_SET_SCREEN_CONTENT_MODE, /**<control function to set encoder screen content mode */ |
| 236 | |
Yaowu Xu | 87c436f | 2015-01-13 12:39:42 -0800 | [diff] [blame] | 237 | /*!\brief Codec control function to set lossless encoding mode |
| 238 | * |
| 239 | * VP9 can operate in lossless encoding mode, in which the bitstream |
| 240 | * produced will be able to decode and reconstruct a perfect copy of |
| 241 | * input source. This control function provides a mean to switch encoder |
| 242 | * into lossless coding mode(1) or normal coding mode(0) that may be lossy. |
| 243 | * 0 = lossy coding mode |
| 244 | * 1 = lossless coding mode |
| 245 | * |
| 246 | * By default, encoder operates in normal coding mode (maybe lossy). |
| 247 | */ |
Ronald S. Bultje | 1407bdc | 2013-02-01 09:35:28 -0800 | [diff] [blame] | 248 | VP9E_SET_LOSSLESS, |
Yaowu Xu | 87c436f | 2015-01-13 12:39:42 -0800 | [diff] [blame] | 249 | |
| 250 | /*!\brief Codec control function to set number of tile columns |
| 251 | * |
| 252 | * In encoding and decoding, VP9 allows an input image frame be partitioned |
| 253 | * into separated vertical tile columns, which can be encoded or decoded |
| 254 | * independently. This enables easy implementation of parallel encoding and |
| 255 | * decoding. This control requests the encoder to use column tiles in |
| 256 | * encoding an input frame, with number of tile columns (in Log2 unit) as |
| 257 | * the parameter: |
| 258 | * 0 = 1 tile column |
| 259 | * 1 = 2 tile columns |
| 260 | * 2 = 4 tile columns |
| 261 | * ..... |
| 262 | * n = 2**n tile columns |
| 263 | * The requested tile columns will be capped by encoder based on image size |
| 264 | * limitation (The minimum width of a tile column is 256 pixel, the maximum |
| 265 | * is 4096). |
| 266 | * |
| 267 | * By default, the value is 0, i.e. one single column tile for entire image. |
| 268 | */ |
Ronald S. Bultje | 89a206e | 2013-02-08 11:33:11 -0800 | [diff] [blame] | 269 | VP9E_SET_TILE_COLUMNS, |
Yaowu Xu | 87c436f | 2015-01-13 12:39:42 -0800 | [diff] [blame] | 270 | |
| 271 | /*!\brief Codec control function to set number of tile rows |
| 272 | * |
| 273 | * In encoding and decoding, VP9 allows an input image frame be partitioned |
| 274 | * into separated horizontal tile rows. Tile rows are encoded or decoded |
| 275 | * sequentially. Even though encoding/decoding of later tile rows depends on |
| 276 | * earlier ones, this allows the encoder to output data packets for tile rows |
| 277 | * prior to completely processing all tile rows in a frame, thereby reducing |
| 278 | * the latency in processing between input and output. The parameter |
| 279 | * for this control describes the number of tile rows, which has a valid |
| 280 | * range [0, 2]: |
| 281 | * 0 = 1 tile row |
| 282 | * 1 = 2 tile rows |
| 283 | * 2 = 4 tile rows |
| 284 | * |
| 285 | * By default, the value is 0, i.e. one single row tile for entire image. |
| 286 | */ |
Ronald S. Bultje | 89a206e | 2013-02-08 11:33:11 -0800 | [diff] [blame] | 287 | VP9E_SET_TILE_ROWS, |
Yaowu Xu | 87c436f | 2015-01-13 12:39:42 -0800 | [diff] [blame] | 288 | |
| 289 | /*!\brief Codec control function to enable frame parallel decoding feature |
| 290 | * |
| 291 | * VP9 has a bitstream feature to reduce decoding dependency between frames |
| 292 | * by turning off backward update of probability context used in encoding |
| 293 | * and decoding. This allows staged parallel processing of more than one |
| 294 | * video frames in the decoder. This control function provides a mean to |
| 295 | * turn this feature on or off for bitstreams produced by encoder. |
| 296 | * |
| 297 | * By default, this feature is off. |
| 298 | */ |
Ivan Maltz | 01b35c3 | 2013-09-05 08:55:47 -0700 | [diff] [blame] | 299 | VP9E_SET_FRAME_PARALLEL_DECODING, |
Yaowu Xu | 87c436f | 2015-01-13 12:39:42 -0800 | [diff] [blame] | 300 | |
| 301 | /*!\brief Codec control function to set adaptive quantization mode |
| 302 | * |
| 303 | * VP9 has a segment based feature that allows encoder to adaptively change |
| 304 | * quantization parameter for each segment within a frame to improve the |
| 305 | * subjective quality. This control makes encoder operate in one of the |
| 306 | * several AQ_modes supported. |
| 307 | * |
| 308 | * By default, encoder operates with AQ_Mode 0(adaptive quantization off). |
| 309 | */ |
Guillaume Martres | 1708465 | 2013-11-14 19:23:57 +0100 | [diff] [blame] | 310 | VP9E_SET_AQ_MODE, |
Yaowu Xu | 4ab39e1 | 2015-01-14 09:07:02 -0800 | [diff] [blame] | 311 | |
| 312 | /*!\brief Codec control function to enable/disable periodic Q boost |
| 313 | * |
| 314 | * One VP9 encoder speed feature is to enable quality boost by lowering |
| 315 | * frame level Q periodically. This control function provides a mean to |
| 316 | * turn on/off this feature. |
| 317 | * 0 = off |
| 318 | * 1 = on |
| 319 | * |
| 320 | * By default, the encoder is allowed to use this feature for appropriate |
| 321 | * encoding modes. |
| 322 | */ |
Marco Paniconi | 0eb88c9 | 2014-04-03 15:49:03 -0700 | [diff] [blame] | 323 | VP9E_SET_FRAME_PERIODIC_BOOST, |
Yaowu Xu | 4ab39e1 | 2015-01-14 09:07:02 -0800 | [diff] [blame] | 324 | |
JackyChen | bb1a236 | 2014-09-12 11:48:44 -0700 | [diff] [blame] | 325 | /*!\brief control function to set noise sensitivity |
| 326 | * |
| 327 | * 0: off, 1: OnYOnly |
| 328 | */ |
| 329 | VP9E_SET_NOISE_SENSITIVITY, |
Ivan Maltz | 01b35c3 | 2013-09-05 08:55:47 -0700 | [diff] [blame] | 330 | |
Ivan Maltz | 01b35c3 | 2013-09-05 08:55:47 -0700 | [diff] [blame] | 331 | VP9E_SET_SVC, |
Marco Paniconi | 4864ab2 | 2014-02-06 09:23:17 -0800 | [diff] [blame] | 332 | VP9E_SET_SVC_PARAMETERS, |
Deb Mukherjee | 0ba1542 | 2014-11-07 11:01:53 -0800 | [diff] [blame] | 333 | |
James Zern | 53a11c9 | 2014-02-20 20:36:28 -0800 | [diff] [blame] | 334 | /*!\brief control function to set svc layer for spatial and temporal. |
| 335 | * \note Valid ranges: 0..#vpx_codec_enc_cfg::ss_number_layers for spatial |
| 336 | * layer and 0..#vpx_codec_enc_cfg::ts_number_layers for |
| 337 | * temporal layer. |
| 338 | */ |
Alex Converse | 572de92 | 2014-07-31 08:27:32 -0700 | [diff] [blame] | 339 | VP9E_SET_SVC_LAYER_ID, |
Yaowu Xu | dc08b20 | 2015-01-14 11:17:09 -0800 | [diff] [blame^] | 340 | |
| 341 | /*!\brief control function to set content type. |
| 342 | * \note Valid parameter range: |
| 343 | * VP9E_CONTENT_DEFAULT = Regular video content (Default) |
| 344 | * VP9E_CONTENT_SCREEN = Screen capture content |
| 345 | */ |
Deb Mukherjee | 0ba1542 | 2014-11-07 11:01:53 -0800 | [diff] [blame] | 346 | VP9E_SET_TUNE_CONTENT, |
| 347 | VP9E_GET_SVC_LAYER_ID, |
| 348 | VP9E_REGISTER_CX_CALLBACK, |
John Koleszar | b0da9b3 | 2010-12-17 09:43:39 -0500 | [diff] [blame] | 349 | }; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 350 | |
| 351 | /*!\brief vpx 1-D scaling mode |
| 352 | * |
| 353 | * This set of constants define 1-D vpx scaling modes |
| 354 | */ |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 355 | typedef enum vpx_scaling_mode_1d { |
| 356 | VP8E_NORMAL = 0, |
| 357 | VP8E_FOURFIVE = 1, |
| 358 | VP8E_THREEFIVE = 2, |
| 359 | VP8E_ONETWO = 3 |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 360 | } VPX_SCALING_MODE; |
| 361 | |
| 362 | |
| 363 | /*!\brief vpx region of interest map |
| 364 | * |
| 365 | * These defines the data structures for the region of interest map |
| 366 | * |
| 367 | */ |
| 368 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 369 | typedef struct vpx_roi_map { |
Adrian Grange | f58eca9 | 2013-10-24 15:11:36 -0700 | [diff] [blame] | 370 | /*! An id between 0 and 3 for each 16x16 region within a frame. */ |
| 371 | unsigned char *roi_map; |
| 372 | unsigned int rows; /**< Number of rows. */ |
| 373 | unsigned int cols; /**< Number of columns. */ |
Paul Wilkins | 31ee193 | 2013-04-24 13:04:45 +0100 | [diff] [blame] | 374 | // TODO(paulwilkins): broken for VP9 which has 8 segments |
| 375 | // q and loop filter deltas for each segment |
| 376 | // (see MAX_MB_SEGMENTS) |
Adrian Grange | f58eca9 | 2013-10-24 15:11:36 -0700 | [diff] [blame] | 377 | int delta_q[4]; /**< Quantizer deltas. */ |
| 378 | int delta_lf[4]; /**< Loop filter deltas. */ |
| 379 | /*! Static breakout threshold for each segment. */ |
| 380 | unsigned int static_threshold[4]; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 381 | } vpx_roi_map_t; |
| 382 | |
| 383 | /*!\brief vpx active region map |
| 384 | * |
| 385 | * These defines the data structures for active region map |
| 386 | * |
| 387 | */ |
| 388 | |
| 389 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 390 | typedef struct vpx_active_map { |
| 391 | unsigned char *active_map; /**< specify an on (1) or off (0) each 16x16 region within a frame */ |
| 392 | unsigned int rows; /**< number of rows */ |
| 393 | unsigned int cols; /**< number of cols */ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 394 | } vpx_active_map_t; |
| 395 | |
| 396 | /*!\brief vpx image scaling mode |
| 397 | * |
| 398 | * This defines the data structure for image scaling mode |
| 399 | * |
| 400 | */ |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 401 | typedef struct vpx_scaling_mode { |
| 402 | VPX_SCALING_MODE h_scaling_mode; /**< horizontal scaling mode */ |
| 403 | VPX_SCALING_MODE v_scaling_mode; /**< vertical scaling mode */ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 404 | } vpx_scaling_mode_t; |
| 405 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 406 | /*!\brief VP8 token partition mode |
| 407 | * |
| 408 | * This defines VP8 partitioning mode for compressed data, i.e., the number of |
Dmitry Kovalev | 116e0a1 | 2013-12-27 14:01:12 -0800 | [diff] [blame] | 409 | * sub-streams in the bitstream. Used for parallelized decoding. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 410 | * |
| 411 | */ |
| 412 | |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 413 | typedef enum { |
| 414 | VP8_ONE_TOKENPARTITION = 0, |
| 415 | VP8_TWO_TOKENPARTITION = 1, |
| 416 | VP8_FOUR_TOKENPARTITION = 2, |
John Koleszar | 83b1d90 | 2012-11-05 12:37:14 -0800 | [diff] [blame] | 417 | VP8_EIGHT_TOKENPARTITION = 3 |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 418 | } vp8e_token_partitions; |
| 419 | |
Alex Converse | 572de92 | 2014-07-31 08:27:32 -0700 | [diff] [blame] | 420 | /*!brief VP9 encoder content type */ |
| 421 | typedef enum { |
| 422 | VP9E_CONTENT_DEFAULT, |
| 423 | VP9E_CONTENT_SCREEN, |
| 424 | VP9E_CONTENT_INVALID |
| 425 | } vp9e_tune_content; |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 426 | |
John Koleszar | b0da9b3 | 2010-12-17 09:43:39 -0500 | [diff] [blame] | 427 | /*!\brief VP8 model tuning parameters |
| 428 | * |
| 429 | * Changes the encoder to tune for certain types of input material. |
| 430 | * |
| 431 | */ |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 432 | typedef enum { |
| 433 | VP8_TUNE_PSNR, |
| 434 | VP8_TUNE_SSIM |
John Koleszar | b0da9b3 | 2010-12-17 09:43:39 -0500 | [diff] [blame] | 435 | } vp8e_tuning; |
| 436 | |
Marco Paniconi | 89ec990 | 2014-02-18 17:31:57 -0800 | [diff] [blame] | 437 | /*!\brief vp9 svc layer parameters |
| 438 | * |
| 439 | * This defines the spatial and temporal layer id numbers for svc encoding. |
| 440 | * This is used with the #VP9E_SET_SVC_LAYER_ID control to set the spatial and |
| 441 | * temporal layer id for the current frame. |
| 442 | * |
| 443 | */ |
Marco Paniconi | 4864ab2 | 2014-02-06 09:23:17 -0800 | [diff] [blame] | 444 | typedef struct vpx_svc_layer_id { |
Marco Paniconi | 89ec990 | 2014-02-18 17:31:57 -0800 | [diff] [blame] | 445 | int spatial_layer_id; /**< Spatial layer id number. */ |
| 446 | int temporal_layer_id; /**< Temporal layer id number. */ |
Marco Paniconi | 4864ab2 | 2014-02-06 09:23:17 -0800 | [diff] [blame] | 447 | } vpx_svc_layer_id_t; |
| 448 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 449 | /*!\brief VP8 encoder control function parameter type |
| 450 | * |
| 451 | * Defines the data types that VP8E control functions take. Note that |
| 452 | * additional common controls are defined in vp8.h |
| 453 | * |
| 454 | */ |
| 455 | |
| 456 | |
| 457 | /* These controls have been deprecated in favor of the flags parameter to |
| 458 | * vpx_codec_encode(). See the definition of VP8_EFLAG_* above. |
| 459 | */ |
| 460 | VPX_CTRL_USE_TYPE_DEPRECATED(VP8E_UPD_ENTROPY, int) |
| 461 | VPX_CTRL_USE_TYPE_DEPRECATED(VP8E_UPD_REFERENCE, int) |
| 462 | VPX_CTRL_USE_TYPE_DEPRECATED(VP8E_USE_REFERENCE, int) |
| 463 | |
Marco | af898b5 | 2014-11-10 13:07:05 -0800 | [diff] [blame] | 464 | VPX_CTRL_USE_TYPE(VP8E_SET_FRAME_FLAGS, int) |
| 465 | VPX_CTRL_USE_TYPE(VP8E_SET_TEMPORAL_LAYER_ID, int) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 466 | VPX_CTRL_USE_TYPE(VP8E_SET_ROI_MAP, vpx_roi_map_t *) |
| 467 | VPX_CTRL_USE_TYPE(VP8E_SET_ACTIVEMAP, vpx_active_map_t *) |
| 468 | VPX_CTRL_USE_TYPE(VP8E_SET_SCALEMODE, vpx_scaling_mode_t *) |
| 469 | |
Ivan Maltz | 01b35c3 | 2013-09-05 08:55:47 -0700 | [diff] [blame] | 470 | VPX_CTRL_USE_TYPE(VP9E_SET_SVC, int) |
Minghai Shang | 209ee12 | 2014-09-18 18:05:07 -0700 | [diff] [blame] | 471 | VPX_CTRL_USE_TYPE(VP9E_SET_SVC_PARAMETERS, void *) |
Deb Mukherjee | 0ba1542 | 2014-11-07 11:01:53 -0800 | [diff] [blame] | 472 | VPX_CTRL_USE_TYPE(VP9E_REGISTER_CX_CALLBACK, void *) |
Marco Paniconi | 4864ab2 | 2014-02-06 09:23:17 -0800 | [diff] [blame] | 473 | VPX_CTRL_USE_TYPE(VP9E_SET_SVC_LAYER_ID, vpx_svc_layer_id_t *) |
Ivan Maltz | 01b35c3 | 2013-09-05 08:55:47 -0700 | [diff] [blame] | 474 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 475 | VPX_CTRL_USE_TYPE(VP8E_SET_CPUUSED, int) |
| 476 | VPX_CTRL_USE_TYPE(VP8E_SET_ENABLEAUTOALTREF, unsigned int) |
| 477 | VPX_CTRL_USE_TYPE(VP8E_SET_NOISE_SENSITIVITY, unsigned int) |
| 478 | VPX_CTRL_USE_TYPE(VP8E_SET_SHARPNESS, unsigned int) |
| 479 | VPX_CTRL_USE_TYPE(VP8E_SET_STATIC_THRESHOLD, unsigned int) |
John Koleszar | 83b1d90 | 2012-11-05 12:37:14 -0800 | [diff] [blame] | 480 | VPX_CTRL_USE_TYPE(VP8E_SET_TOKEN_PARTITIONS, int) /* vp8e_token_partitions */ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 481 | |
| 482 | VPX_CTRL_USE_TYPE(VP8E_SET_ARNR_MAXFRAMES, unsigned int) |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 483 | VPX_CTRL_USE_TYPE(VP8E_SET_ARNR_STRENGTH, unsigned int) |
Adrian Grange | a765705 | 2014-05-05 11:31:55 -0700 | [diff] [blame] | 484 | VPX_CTRL_USE_TYPE_DEPRECATED(VP8E_SET_ARNR_TYPE, unsigned int) |
John Koleszar | 83b1d90 | 2012-11-05 12:37:14 -0800 | [diff] [blame] | 485 | VPX_CTRL_USE_TYPE(VP8E_SET_TUNING, int) /* vp8e_tuning */ |
John Koleszar | c6b9039 | 2012-07-13 15:21:29 -0700 | [diff] [blame] | 486 | VPX_CTRL_USE_TYPE(VP8E_SET_CQ_LEVEL, unsigned int) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 487 | |
Ronald S. Bultje | 1407bdc | 2013-02-01 09:35:28 -0800 | [diff] [blame] | 488 | VPX_CTRL_USE_TYPE(VP9E_SET_TILE_COLUMNS, int) |
Ronald S. Bultje | 89a206e | 2013-02-08 11:33:11 -0800 | [diff] [blame] | 489 | VPX_CTRL_USE_TYPE(VP9E_SET_TILE_ROWS, int) |
Ronald S. Bultje | 1407bdc | 2013-02-01 09:35:28 -0800 | [diff] [blame] | 490 | |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 491 | VPX_CTRL_USE_TYPE(VP8E_GET_LAST_QUANTIZER, int *) |
| 492 | VPX_CTRL_USE_TYPE(VP8E_GET_LAST_QUANTIZER_64, int *) |
Deb Mukherjee | 0ba1542 | 2014-11-07 11:01:53 -0800 | [diff] [blame] | 493 | VPX_CTRL_USE_TYPE(VP9E_GET_SVC_LAYER_ID, vpx_svc_layer_id_t *) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 494 | |
John Koleszar | 1654ae9 | 2011-07-28 09:17:32 -0400 | [diff] [blame] | 495 | VPX_CTRL_USE_TYPE(VP8E_SET_MAX_INTRA_BITRATE_PCT, unsigned int) |
Yaowu Xu | 636099f | 2014-10-24 09:31:16 -0700 | [diff] [blame] | 496 | VPX_CTRL_USE_TYPE(VP8E_SET_MAX_INTER_BITRATE_PCT, unsigned int) |
John Koleszar | 1654ae9 | 2011-07-28 09:17:32 -0400 | [diff] [blame] | 497 | |
Yaowu Xu | 03a60b7 | 2014-10-27 13:13:14 -0700 | [diff] [blame] | 498 | VPX_CTRL_USE_TYPE(VP8E_SET_GF_CBR_BOOST_PCT, unsigned int) |
Marco | af898b5 | 2014-11-10 13:07:05 -0800 | [diff] [blame] | 499 | |
| 500 | VPX_CTRL_USE_TYPE(VP8E_SET_SCREEN_CONTENT_MODE, unsigned int) |
| 501 | |
John Koleszar | 83b1d90 | 2012-11-05 12:37:14 -0800 | [diff] [blame] | 502 | VPX_CTRL_USE_TYPE(VP9E_SET_LOSSLESS, unsigned int) |
John Koleszar | 1654ae9 | 2011-07-28 09:17:32 -0400 | [diff] [blame] | 503 | |
John Koleszar | 81708cc | 2013-03-27 11:07:26 -0700 | [diff] [blame] | 504 | VPX_CTRL_USE_TYPE(VP9E_SET_FRAME_PARALLEL_DECODING, unsigned int) |
Ivan Maltz | 01b35c3 | 2013-09-05 08:55:47 -0700 | [diff] [blame] | 505 | |
Guillaume Martres | 1708465 | 2013-11-14 19:23:57 +0100 | [diff] [blame] | 506 | VPX_CTRL_USE_TYPE(VP9E_SET_AQ_MODE, unsigned int) |
| 507 | |
Marco Paniconi | 0eb88c9 | 2014-04-03 15:49:03 -0700 | [diff] [blame] | 508 | VPX_CTRL_USE_TYPE(VP9E_SET_FRAME_PERIODIC_BOOST, unsigned int) |
| 509 | |
JackyChen | bb1a236 | 2014-09-12 11:48:44 -0700 | [diff] [blame] | 510 | VPX_CTRL_USE_TYPE(VP9E_SET_NOISE_SENSITIVITY, unsigned int) |
| 511 | |
Alex Converse | 572de92 | 2014-07-31 08:27:32 -0700 | [diff] [blame] | 512 | VPX_CTRL_USE_TYPE(VP9E_SET_TUNE_CONTENT, int) /* vp9e_tune_content */ |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 513 | /*! @} - end defgroup vp8_encoder */ |
Dmitry Kovalev | e288c60 | 2013-09-29 18:00:15 -0700 | [diff] [blame] | 514 | #ifdef __cplusplus |
| 515 | } // extern "C" |
| 516 | #endif |
| 517 | |
James Zern | 7386bde | 2013-12-15 18:26:15 -0800 | [diff] [blame] | 518 | #endif // VPX_VP8CX_H_ |