summaryrefslogtreecommitdiff
path: root/vp9/vp9_cx_iface.c
diff options
context:
space:
mode:
authorhui su <huisu@google.com>2016-05-11 19:15:57 -0700
committerhui su <huisu@google.com>2016-05-11 20:23:52 -0700
commit3c206aca04e5b9df18c6d2e3bd4a4337f5bb14fb (patch)
tree0337b59f05abb652b6fca86ed24bc0bfe34a542f /vp9/vp9_cx_iface.c
parent2f55beb355476e716fd42e8fc107f1ba2b5b7977 (diff)
downloadlibvpx-3c206aca04e5b9df18c6d2e3bd4a4337f5bb14fb.tar
libvpx-3c206aca04e5b9df18c6d2e3bd4a4337f5bb14fb.tar.gz
libvpx-3c206aca04e5b9df18c6d2e3bd4a4337f5bb14fb.tar.bz2
libvpx-3c206aca04e5b9df18c6d2e3bd4a4337f5bb14fb.zip
Fix typos in control function for VP9E_SET_TARGET_LEVEL
Change-Id: Ic797c6be579c3434681a5e9dbb3900ae49c43958
Diffstat (limited to 'vp9/vp9_cx_iface.c')
-rw-r--r--vp9/vp9_cx_iface.c2
1 files changed, 1 insertions, 1 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);
}