2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
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.
12 /*!\defgroup vp8_encoder WebM VP8 Encoder
20 * \brief Provides definitions for using the VP8 encoder algorithm within the
21 * vpx Codec Interface.
25 #include "vpx/vpx_codec_impl_top.h"
27 /*!\name Algorithm interface for VP8
29 * This interface provides the capability to encode raw VP8 streams, as would
30 * be found in AVI files.
33 extern vpx_codec_iface_t vpx_codec_vp8_cx_algo
;
34 extern vpx_codec_iface_t
* vpx_codec_vp8_cx(void);
35 /*!@} - end algorithm interface member group*/
42 /*!\brief Don't reference the last frame
44 * When this flag is set, the encoder will not use the last frame as a
45 * predictor. When not set, the encoder will choose whether to use the
46 * last frame or not automatically.
48 #define VP8_EFLAG_NO_REF_LAST (1<<16)
51 /*!\brief Don't reference the golden frame
53 * When this flag is set, the encoder will not use the golden frame as a
54 * predictor. When not set, the encoder will choose whether to use the
55 * golden frame or not automatically.
57 #define VP8_EFLAG_NO_REF_GF (1<<17)
60 /*!\brief Don't reference the alternate reference frame
62 * When this flag is set, the encoder will not use the alt ref frame as a
63 * predictor. When not set, the encoder will choose whether to use the
64 * alt ref frame or not automatically.
66 #define VP8_EFLAG_NO_REF_ARF (1<<21)
69 /*!\brief Don't update the last frame
71 * When this flag is set, the encoder will not update the last frame with
72 * the contents of the current frame.
74 #define VP8_EFLAG_NO_UPD_LAST (1<<18)
77 /*!\brief Don't update the golden frame
79 * When this flag is set, the encoder will not update the golden frame with
80 * the contents of the current frame.
82 #define VP8_EFLAG_NO_UPD_GF (1<<22)
85 /*!\brief Don't update the alternate reference frame
87 * When this flag is set, the encoder will not update the alt ref frame with
88 * the contents of the current frame.
90 #define VP8_EFLAG_NO_UPD_ARF (1<<23)
93 /*!\brief Force golden frame update
95 * When this flag is set, the encoder copy the contents of the current frame
96 * to the golden frame buffer.
98 #define VP8_EFLAG_FORCE_GF (1<<19)
101 /*!\brief Force alternate reference frame update
103 * When this flag is set, the encoder copy the contents of the current frame
104 * to the alternate reference frame buffer.
106 #define VP8_EFLAG_FORCE_ARF (1<<24)
109 /*!\brief Disable entropy update
111 * When this flag is set, the encoder will not update its internal entropy
112 * model based on the entropy of this frame.
114 #define VP8_EFLAG_NO_UPD_ENTROPY (1<<20)
117 /*!\brief VP8 encoder control functions
119 * This set of macros define the control functions available for the VP8
122 * \sa #vpx_codec_control
124 enum vp8e_enc_control_id
126 VP8E_UPD_ENTROPY
= 5, /**< control function to set mode of entropy update in encoder */
127 VP8E_UPD_REFERENCE
, /**< control function to set reference update mode in encoder */
128 VP8E_USE_REFERENCE
, /**< control function to set which reference frame encoder can use */
129 VP8E_SET_ROI_MAP
, /**< control function to pass an ROI map to encoder */
130 VP8E_SET_ACTIVEMAP
, /**< control function to pass an Active map to encoder */
131 VP8E_SET_SCALEMODE
= 11, /**< control function to set encoder scaling mode */
132 /*!\brief control function to set vp8 encoder cpuused
134 * Changes in this value influences, among others, the encoder's selection
135 * of motion estimation methods. Values greater than 0 will increase encoder
136 * speed at the expense of quality.
137 * The full set of adjustments can be found in
138 * onyx_if.c:vp8_set_speed_features().
139 * \todo List highlights of the changes at various levels.
141 * \note Valid range: -16..16
143 VP8E_SET_CPUUSED
= 13,
144 VP8E_SET_ENABLEAUTOALTREF
, /**< control function to enable vp8 to automatic set and use altref frame */
145 VP8E_SET_NOISE_SENSITIVITY
, /**< control function to set noise sensitivity */
146 VP8E_SET_SHARPNESS
, /**< control function to set sharpness */
147 VP8E_SET_STATIC_THRESHOLD
, /**< control function to set the threshold for macroblocks treated static */
148 VP8E_SET_TOKEN_PARTITIONS
, /**< control function to set the number of token partitions */
149 VP8E_GET_LAST_QUANTIZER
, /**< return the quantizer chosen by the
150 encoder for the last frame using the internal
152 VP8E_GET_LAST_QUANTIZER_64
, /**< return the quantizer chosen by the
153 encoder for the last frame, using the 0..63
154 scale as used by the rc_*_quantizer config
156 VP8E_SET_ARNR_MAXFRAMES
, /**< control function to set the max number of frames blurred creating arf*/
157 VP8E_SET_ARNR_STRENGTH
, /**< control function to set the filter strength for the arf */
158 VP8E_SET_ARNR_TYPE
, /**< control function to set the type of filter to use for the arf*/
159 VP8E_SET_TUNING
, /**< control function to set visual tuning */
160 /*!\brief control function to set constrained quality level
162 * \attention For this value to be used vpx_codec_enc_cfg_t::g_usage must be
164 * \note Valid range: 0..63
169 /*!\brief vpx 1-D scaling mode
171 * This set of constants define 1-D vpx scaling modes
173 typedef enum vpx_scaling_mode_1d
182 /*!\brief vpx region of interest map
184 * These defines the data structures for the region of interest map
188 typedef struct vpx_roi_map
190 unsigned char *roi_map
; /**< specify an id between 0 and 3 for each 16x16 region within a frame */
191 unsigned int rows
; /**< number of rows */
192 unsigned int cols
; /**< number of cols */
193 int delta_q
[4]; /**< quantizer delta [-64, 64] off baseline for regions with id between 0 and 3*/
194 int delta_lf
[4]; /**< loop filter strength delta [-32, 32] for regions with id between 0 and 3 */
195 unsigned int static_threshold
[4];/**< threshold for region to be treated as static */
198 /*!\brief vpx active region map
200 * These defines the data structures for active region map
205 typedef struct vpx_active_map
207 unsigned char *active_map
; /**< specify an on (1) or off (0) each 16x16 region within a frame */
208 unsigned int rows
; /**< number of rows */
209 unsigned int cols
; /**< number of cols */
212 /*!\brief vpx image scaling mode
214 * This defines the data structure for image scaling mode
217 typedef struct vpx_scaling_mode
219 VPX_SCALING_MODE h_scaling_mode
; /**< horizontal scaling mode */
220 VPX_SCALING_MODE v_scaling_mode
; /**< vertical scaling mode */
221 } vpx_scaling_mode_t
;
223 /*!\brief VP8 encoding mode
225 * This defines VP8 encoding mode
230 VP8_BEST_QUALITY_ENCODING
,
231 VP8_GOOD_QUALITY_ENCODING
,
232 VP8_REAL_TIME_ENCODING
233 } vp8e_encoding_mode
;
235 /*!\brief VP8 token partition mode
237 * This defines VP8 partitioning mode for compressed data, i.e., the number of
238 * sub-streams in the bitstream. Used for parallelized decoding.
244 VP8_ONE_TOKENPARTITION
= 0,
245 VP8_TWO_TOKENPARTITION
= 1,
246 VP8_FOUR_TOKENPARTITION
= 2,
247 VP8_EIGHT_TOKENPARTITION
= 3,
248 } vp8e_token_partitions
;
251 /*!\brief VP8 model tuning parameters
253 * Changes the encoder to tune for certain types of input material.
263 /*!\brief VP8 encoder control function parameter type
265 * Defines the data types that VP8E control functions take. Note that
266 * additional common controls are defined in vp8.h
271 /* These controls have been deprecated in favor of the flags parameter to
272 * vpx_codec_encode(). See the definition of VP8_EFLAG_* above.
274 VPX_CTRL_USE_TYPE_DEPRECATED(VP8E_UPD_ENTROPY
, int)
275 VPX_CTRL_USE_TYPE_DEPRECATED(VP8E_UPD_REFERENCE
, int)
276 VPX_CTRL_USE_TYPE_DEPRECATED(VP8E_USE_REFERENCE
, int)
278 VPX_CTRL_USE_TYPE(VP8E_SET_ROI_MAP
, vpx_roi_map_t
*)
279 VPX_CTRL_USE_TYPE(VP8E_SET_ACTIVEMAP
, vpx_active_map_t
*)
280 VPX_CTRL_USE_TYPE(VP8E_SET_SCALEMODE
, vpx_scaling_mode_t
*)
282 VPX_CTRL_USE_TYPE(VP8E_SET_CPUUSED
, int)
283 VPX_CTRL_USE_TYPE(VP8E_SET_ENABLEAUTOALTREF
, unsigned int)
284 VPX_CTRL_USE_TYPE(VP8E_SET_NOISE_SENSITIVITY
, unsigned int)
285 VPX_CTRL_USE_TYPE(VP8E_SET_SHARPNESS
, unsigned int)
286 VPX_CTRL_USE_TYPE(VP8E_SET_STATIC_THRESHOLD
, unsigned int)
287 VPX_CTRL_USE_TYPE(VP8E_SET_TOKEN_PARTITIONS
, vp8e_token_partitions
)
289 VPX_CTRL_USE_TYPE(VP8E_SET_ARNR_MAXFRAMES
, unsigned int)
290 VPX_CTRL_USE_TYPE(VP8E_SET_ARNR_STRENGTH
, unsigned int)
291 VPX_CTRL_USE_TYPE(VP8E_SET_ARNR_TYPE
, unsigned int)
292 VPX_CTRL_USE_TYPE(VP8E_SET_TUNING
, vp8e_tuning
)
293 VPX_CTRL_USE_TYPE(VP8E_SET_CQ_LEVEL
, unsigned int)
295 VPX_CTRL_USE_TYPE(VP8E_GET_LAST_QUANTIZER
, int *)
296 VPX_CTRL_USE_TYPE(VP8E_GET_LAST_QUANTIZER_64
, int *)
298 /*! @} - end defgroup vp8_encoder */
299 #include "vpx/vpx_codec_impl_bottom.h"