summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vp9/vp9_cx_iface.c2
-rw-r--r--vpx/vp8cx.h6
2 files changed, 4 insertions, 4 deletions
diff --git a/vp9/vp9_cx_iface.c b/vp9/vp9_cx_iface.c
index 5e44ffd50..1a11a6d5b 100644
--- a/vp9/vp9_cx_iface.c
+++ b/vp9/vp9_cx_iface.c
@@ -803,7 +803,7 @@ static vpx_codec_err_t ctrl_set_frame_periodic_boost(vpx_codec_alg_priv_t *ctx,
static vpx_codec_err_t ctrl_set_target_level(vpx_codec_alg_priv_t *ctx,
va_list args) {
struct vp9_extracfg extra_cfg = ctx->extra_cfg;
- extra_cfg.target_level = CAST(VP9E_SET_LEVEL_STATS, args);
+ extra_cfg.target_level = CAST(VP9E_SET_TARGET_LEVEL, args);
return update_extra_cfg(ctx, &extra_cfg);
}
diff --git a/vpx/vp8cx.h b/vpx/vp8cx.h
index 109306f2e..b059d47d1 100644
--- a/vpx/vp8cx.h
+++ b/vpx/vp8cx.h
@@ -562,7 +562,7 @@ enum vp8e_enc_control_id {
*
* Supported in codecs: VP9
*/
- VP9E_SET_TARGET_LEVEL,
+ VP9E_SET_TARGET_LEVEL
};
/*!\brief vpx 1-D scaling mode
@@ -818,8 +818,8 @@ VPX_CTRL_USE_TYPE(VP9E_SET_SVC_REF_FRAME_CONFIG, vpx_svc_ref_frame_config_t *)
VPX_CTRL_USE_TYPE(VP9E_SET_RENDER_SIZE, int *)
#define VPX_CTRL_VP9E_SET_RENDER_SIZE
-VPX_CTRL_USE_TYPE(VP9E_SET_LEVEL_STATS, unsigned int)
-#define VPX_CTRL_VP9E_SET_LEVEL_STATS
+VPX_CTRL_USE_TYPE(VP9E_SET_TARGET_LEVEL, unsigned int)
+#define VPX_CTRL_VP9E_SET_TARGET_LEVEL
/*!\endcond */
/*! @} - end defgroup vp8_encoder */