summaryrefslogtreecommitdiff
path: root/vp9
diff options
context:
space:
mode:
authorDmitry Kovalev <dkovalev@google.com>2014-09-04 14:47:42 -0700
committerDmitry Kovalev <dkovalev@google.com>2014-09-04 14:47:42 -0700
commit91998e638e7d84644de6e6882d4e039c9d4dbe05 (patch)
tree2ecee3358db45c2e11e29829ce68e33e3db03c4e /vp9
parent27db51c6025af11521475f0ad0716d798107c9d8 (diff)
downloadlibvpx-91998e638e7d84644de6e6882d4e039c9d4dbe05.tar
libvpx-91998e638e7d84644de6e6882d4e039c9d4dbe05.tar.gz
libvpx-91998e638e7d84644de6e6882d4e039c9d4dbe05.tar.bz2
libvpx-91998e638e7d84644de6e6882d4e039c9d4dbe05.zip
Removing sz member from vpx_codec_priv.
Change-Id: I811526a9ee9f237604f72abe7fc677e39e0f457f
Diffstat (limited to 'vp9')
-rw-r--r--vp9/vp9_cx_iface.c1
-rw-r--r--vp9/vp9_dx_iface.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/vp9/vp9_cx_iface.c b/vp9/vp9_cx_iface.c
index 26db30cd8..7007e3f7d 100644
--- a/vp9/vp9_cx_iface.c
+++ b/vp9/vp9_cx_iface.c
@@ -670,7 +670,6 @@ static vpx_codec_err_t encoder_init(vpx_codec_ctx_t *ctx,
return VPX_CODEC_MEM_ERROR;
ctx->priv = (vpx_codec_priv_t *)priv;
- ctx->priv->sz = sizeof(*priv);
ctx->priv->init_flags = ctx->init_flags;
ctx->priv->enc.total_encoders = 1;
diff --git a/vp9/vp9_dx_iface.c b/vp9/vp9_dx_iface.c
index b0fb28253..393c66ebd 100644
--- a/vp9/vp9_dx_iface.c
+++ b/vp9/vp9_dx_iface.c
@@ -63,7 +63,6 @@ static vpx_codec_err_t decoder_init(vpx_codec_ctx_t *ctx,
return VPX_CODEC_MEM_ERROR;
ctx->priv = (vpx_codec_priv_t *)priv;
- ctx->priv->sz = sizeof(*priv);
ctx->priv->init_flags = ctx->init_flags;
priv->si.sz = sizeof(priv->si);