ref: c9a8c32bce638fbf9e54ebd53b1e94a337575acb
parent: ac5bdc0ed80d2d854347166dc7e7c013eefabe8a
parent: 89ec46e6b8aa4bcb57777ca4f657dabf20cfbd45
author: Dmitry Kovalev <dkovalev@google.com>
date: Mon Mar 24 05:27:06 EDT 2014
Merge "Removing unused members from VP9D_CONFIG struct."
--- a/vp9/decoder/vp9_decoder.h
+++ b/vp9/decoder/vp9_decoder.h
@@ -31,10 +31,8 @@
int width;
int height;
int version;
- int postprocess;
int max_threads;
int inv_tile_order;
- int input_partition;
} VP9D_CONFIG;
typedef struct VP9Decompressor {
--- a/vp9/vp9_dx_iface.c
+++ b/vp9/vp9_dx_iface.c
@@ -280,7 +280,6 @@
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);
--
⑨