Merge "Removing unused members from VP9D_CONFIG struct."

This commit is contained in:
Dmitry Kovalev 2014-03-24 09:27:06 -07:00 committed by Gerrit Code Review
commit c9a8c32bce
2 changed files with 0 additions and 3 deletions

View 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 {

View 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);