From 89ec46e6b8aa4bcb57777ca4f657dabf20cfbd45 Mon Sep 17 00:00:00 2001 From: Dmitry Kovalev Date: Fri, 21 Mar 2014 14:08:19 -0700 Subject: [PATCH] Removing unused members from VP9D_CONFIG struct. Change-Id: I83a201ab4dcf2f00131f2030f382c6dbfcb39d7e --- vp9/decoder/vp9_decoder.h | 2 -- vp9/vp9_dx_iface.c | 1 - 2 files changed, 3 deletions(-) diff --git a/vp9/decoder/vp9_decoder.h b/vp9/decoder/vp9_decoder.h index a9458c4d4..e99b21af6 100644 --- a/vp9/decoder/vp9_decoder.h +++ b/vp9/decoder/vp9_decoder.h @@ -31,10 +31,8 @@ typedef struct { int width; int height; int version; - int postprocess; int max_threads; int inv_tile_order; - int input_partition; } VP9D_CONFIG; typedef struct VP9Decompressor { diff --git a/vp9/vp9_dx_iface.c b/vp9/vp9_dx_iface.c index 72701d9d1..4c9350edb 100644 --- a/vp9/vp9_dx_iface.c +++ b/vp9/vp9_dx_iface.c @@ -280,7 +280,6 @@ static vpx_codec_err_t decode_one(vpx_codec_alg_priv_t *ctx, oxcf.width = ctx->si.w; oxcf.height = ctx->si.h; oxcf.version = 9; - oxcf.postprocess = 0; oxcf.max_threads = ctx->cfg.threads; oxcf.inv_tile_order = ctx->invert_tile_order; optr = vp9_create_decompressor(&oxcf); -- 2.50.1