shithub: libvpx

Download patch

ref: 82eed664f33197618683bc402263937370fe8d54
parent: a6aaab3a9f87d03cbbb18c608fd4283f27f143c1
author: Alex Converse <aconverse@google.com>
date: Wed Aug 6 06:59:16 EDT 2014

Write VP9E_SET_TUNE_CONTENT to the correct location.

Change-Id: Ie8c976ececc79fd58c6eb16b7add053dc58e3bb8

--- a/vp9/vp9_cx_iface.c
+++ b/vp9/vp9_cx_iface.c
@@ -1220,7 +1220,7 @@
 static vpx_codec_err_t ctrl_set_tune_content(vpx_codec_alg_priv_t *ctx,
                                              va_list args) {
   struct vp9_extracfg extra_cfg = ctx->extra_cfg;
-  ctx->extra_cfg.content = CAST(VP9E_SET_TUNE_CONTENT, args);
+  extra_cfg.content = CAST(VP9E_SET_TUNE_CONTENT, args);
   return update_extra_cfg(ctx, &extra_cfg);
 }