From 91998e638e7d84644de6e6882d4e039c9d4dbe05 Mon Sep 17 00:00:00 2001 From: Dmitry Kovalev <dkovalev@google.com> Date: Thu, 4 Sep 2014 14:47:42 -0700 Subject: [PATCH] Removing sz member from vpx_codec_priv. Change-Id: I811526a9ee9f237604f72abe7fc677e39e0f457f --- vp8/vp8_cx_iface.c | 1 - vp8/vp8_dx_iface.c | 1 - vp9/vp9_cx_iface.c | 1 - vp9/vp9_dx_iface.c | 1 - vpx/internal/vpx_codec_internal.h | 1 - 5 files changed, 5 deletions(-) diff --git a/vp8/vp8_cx_iface.c b/vp8/vp8_cx_iface.c index fc8c4078f5..b1b079cb26 100644 --- a/vp8/vp8_cx_iface.c +++ b/vp8/vp8_cx_iface.c @@ -635,7 +635,6 @@ static vpx_codec_err_t vp8e_init(vpx_codec_ctx_t *ctx, } ctx->priv = (vpx_codec_priv_t *)priv; - ctx->priv->sz = sizeof(*priv); ctx->priv->init_flags = ctx->init_flags; if (ctx->config.enc) diff --git a/vp8/vp8_dx_iface.c b/vp8/vp8_dx_iface.c index 6d9ecc0c89..3ab8ed0ad6 100644 --- a/vp8/vp8_dx_iface.c +++ b/vp8/vp8_dx_iface.c @@ -84,7 +84,6 @@ static void vp8_init_ctx(vpx_codec_ctx_t *ctx) (vpx_codec_alg_priv_t *)vpx_calloc(1, sizeof(*priv)); 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); diff --git a/vp9/vp9_cx_iface.c b/vp9/vp9_cx_iface.c index 26db30cd8b..7007e3f7d3 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 b0fb282533..393c66ebda 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); diff --git a/vpx/internal/vpx_codec_internal.h b/vpx/internal/vpx_codec_internal.h index 02f20791a4..cbfffd0af2 100644 --- a/vpx/internal/vpx_codec_internal.h +++ b/vpx/internal/vpx_codec_internal.h @@ -335,7 +335,6 @@ typedef struct vpx_codec_priv_cb_pair { * and the pointer cast to the proper type. */ struct vpx_codec_priv { - unsigned int sz; const char *err_detail; vpx_codec_flags_t init_flags; struct { -- GitLab