Remove prune three from speed features

Not getting good results for this feature, will try again
when transforms are frozen.

Change-Id: Id12396786cb9369ad34d0bd845f7beba3a037726
This commit is contained in:
Sarah Parker
2016-03-18 13:06:40 -07:00
parent cb61bfa695
commit fab5454a16
3 changed files with 0 additions and 19 deletions

View File

@@ -603,17 +603,6 @@ static int prune_two_for_sby(const VP10_COMP *cpi,
dct_vs_dst(p->src_diff, bw, bw, bh, &hcorr, &vcorr);
}
static int prune_three_for_sby(const VP10_COMP *cpi,
BLOCK_SIZE bsize,
MACROBLOCK *x,
MACROBLOCKD *xd) {
(void) cpi;
(void) bsize;
(void) x;
(void) xd;
return 0;
}
#endif // CONFIG_EXT_TX
// Performance drop: 0.3%, Speed improvement: 5%
@@ -644,9 +633,6 @@ static int prune_tx_types(const VP10_COMP *cpi,
case PRUNE_TWO :
return prune_two_for_sby(cpi, bsize, x, xd);
break;
case PRUNE_THREE :
return prune_three_for_sby(cpi, bsize, x, xd);
break;
#endif
}
assert(0);