* 1 = lossless coding mode
*
* By default, encoder operates in normal coding mode (maybe lossy).
+ *
+ * Supported in codecs: VP9
*/
VP9E_SET_LOSSLESS,
* is 4096).
*
* By default, the value is 0, i.e. one single column tile for entire image.
+ *
+ * Supported in codecs: VP9
*/
VP9E_SET_TILE_COLUMNS,
* 2 = 4 tile rows
*
* By default, the value is 0, i.e. one single row tile for entire image.
+ *
+ * Supported in codecs: VP9
*/
VP9E_SET_TILE_ROWS,
* turn this feature on or off for bitstreams produced by encoder.
*
* By default, this feature is off.
+ *
+ * Supported in codecs: VP9
*/
VP9E_SET_FRAME_PARALLEL_DECODING,
* several AQ_modes supported.
*
* By default, encoder operates with AQ_Mode 0(adaptive quantization off).
+ *
+ * Supported in codecs: VP9
*/
VP9E_SET_AQ_MODE,
*
* By default, the encoder is allowed to use this feature for appropriate
* encoding modes.
+ *
+ * Supported in codecs: VP9
*/
VP9E_SET_FRAME_PERIODIC_BOOST,
/*!\brief control function to set noise sensitivity
*
* 0: off, 1: OnYOnly
+ *
+ * Supported in codecs: VP9
*/
VP9E_SET_NOISE_SENSITIVITY,
* \note Return value is VPX_CODEC_INVALID_PARAM if the encoder does not
* support SVC in its current encoding mode
* 0: off, 1: on
+ *
+ * Supported in codecs: VP9
*/
VP9E_SET_SVC,
/*!\brief control function to set parameters for SVC.
* \note Parameters contain min_q, max_q, scaling factor for each of the
* SVC layers.
+ *
+ * Supported in codecs: VP9
*/
VP9E_SET_SVC_PARAMETERS,
* \note Valid ranges: 0..#vpx_codec_enc_cfg::ss_number_layers for spatial
* layer and 0..#vpx_codec_enc_cfg::ts_number_layers for
* temporal layer.
+ *
+ * Supported in codecs: VP9
*/
VP9E_SET_SVC_LAYER_ID,
* \note Valid parameter range:
* VP9E_CONTENT_DEFAULT = Regular video content (Default)
* VP9E_CONTENT_SCREEN = Screen capture content
+ *
+ * Supported in codecs: VP9
*/
VP9E_SET_TUNE_CONTENT,
/*!\brief control function to get svc layer ID.
* \note The layer ID returned is for the data packet from the registered
* callback function.
+ *
+ * Supported in codecs: VP9
*/
VP9E_GET_SVC_LAYER_ID,
* 5 = BT_2020
* 6 = RESERVED
* 7 = SRGB
+ *
+ * Supported in codecs: VP9
*/
VP9E_SET_COLOR_SPACE,
};