Remove macroblock::skip_optimize.

This is not used since the commint 00cd5de536fd5545d8fb663b2db81c014e3e6a41,
"Remove skip_recode speed feature".

Change-Id: Ic03da6c0095f6285a3889d5d22e8aaa2e6cbfd79
This commit is contained in:
Yushin Cho
2016-06-21 14:29:56 -07:00
committed by Yaowu Xu
parent eafb2e62ac
commit e2b403b979
2 changed files with 0 additions and 3 deletions

View File

@@ -81,7 +81,6 @@ struct macroblock {
MB_MODE_INFO_EXT *mbmi_ext;
int skip_block;
int select_tx_size;
int skip_optimize;
int q_index;
// The equivalent error at the current rdmult of one whole bit (not one

View File

@@ -2175,7 +2175,6 @@ static void encode_sb(AV1_COMP *cpi, ThreadData *td, const TileInfo *const tile,
if (!x->skip) {
int this_rate = 0;
x->skip_optimize = 0;
x->use_lp32x32fdct = cpi->sf.use_lp32x32fdct;
av1_encode_sb_supertx(x, bsize);
@@ -5019,7 +5018,6 @@ static void encode_superblock(AV1_COMP *cpi, ThreadData *td, TOKENEXTRA **t,
const int mi_width = num_8x8_blocks_wide_lookup[bsize];
const int mi_height = num_8x8_blocks_high_lookup[bsize];
x->skip_optimize = ctx->is_coded;
ctx->is_coded = 1;
x->use_lp32x32fdct = cpi->sf.use_lp32x32fdct;