Merge "vp9-denoiser: Increase threshold for mode re-evaluation."

This commit is contained in:
Marco Paniconi 2015-12-03 23:52:46 +00:00 committed by Gerrit Code Review
commit b38a7cd169

View File

@ -1703,7 +1703,7 @@ void vp9_pick_inter_mode(VP9_COMP *cpi, MACROBLOCK *x,
decision == FILTER_BLOCK &&
cpi->noise_estimate.enabled &&
cpi->noise_estimate.level > kLow &&
zero_last_cost_orig < (best_rdc.rdcost << 2)) {
zero_last_cost_orig < (best_rdc.rdcost << 3)) {
// Check if we should pick ZEROMV on denoised signal.
int rate = 0;
int64_t dist = 0;