Commit c9a8c32b authored by Dmitry Kovalev's avatar Dmitry Kovalev Committed by Gerrit Code Review
Browse files

Merge "Removing unused members from VP9D_CONFIG struct."

Showing with 0 additions and 3 deletions
...@@ -31,10 +31,8 @@ typedef struct { ...@@ -31,10 +31,8 @@ typedef struct {
int width; int width;
int height; int height;
int version; int version;
int postprocess;
int max_threads; int max_threads;
int inv_tile_order; int inv_tile_order;
int input_partition;
} VP9D_CONFIG; } VP9D_CONFIG;
typedef struct VP9Decompressor { typedef struct VP9Decompressor {
......
...@@ -280,7 +280,6 @@ static vpx_codec_err_t decode_one(vpx_codec_alg_priv_t *ctx, ...@@ -280,7 +280,6 @@ static vpx_codec_err_t decode_one(vpx_codec_alg_priv_t *ctx,
oxcf.width = ctx->si.w; oxcf.width = ctx->si.w;
oxcf.height = ctx->si.h; oxcf.height = ctx->si.h;
oxcf.version = 9; oxcf.version = 9;
oxcf.postprocess = 0;
oxcf.max_threads = ctx->cfg.threads; oxcf.max_threads = ctx->cfg.threads;
oxcf.inv_tile_order = ctx->invert_tile_order; oxcf.inv_tile_order = ctx->invert_tile_order;
optr = vp9_create_decompressor(&oxcf); optr = vp9_create_decompressor(&oxcf);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment