Write VP9E_SET_TUNE_CONTENT to the correct location.

Change-Id: Ie8c976ececc79fd58c6eb16b7add053dc58e3bb8
This commit is contained in:
Alex Converse 2014-08-06 10:59:16 -07:00
Родитель a6aaab3a9f
Коммит 82eed664f3
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1220,7 +1220,7 @@ static vpx_codec_err_t ctrl_set_svc_parameters(vpx_codec_alg_priv_t *ctx,
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);
}