]> granicus.if.org Git - libvpx/commitdiff
Removing unused members from VP9D_CONFIG struct.
authorDmitry Kovalev <dkovalev@google.com>
Fri, 21 Mar 2014 21:08:19 +0000 (14:08 -0700)
committerDmitry Kovalev <dkovalev@google.com>
Fri, 21 Mar 2014 21:08:19 +0000 (14:08 -0700)
Change-Id: I83a201ab4dcf2f00131f2030f382c6dbfcb39d7e

vp9/decoder/vp9_decoder.h
vp9/vp9_dx_iface.c

index a9458c4d4ee9688e651fa20646357690f3bc04c1..e99b21af68f6c009201dc43f95453b829aa5daf3 100644 (file)
@@ -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 {
index 72701d9d1a37d14c676c134c013c6686ec0b3d1d..4c9350edb2fa9d80f2ca170b15e05d41ca63e49e 100644 (file)
@@ -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);