ref: d1eca240fb04fae3039ac28510ba0992eb03248d
parent: 4781a6773781b1d81c58c6565cecb975217cf887
parent: 4260a7f2b39c81ff4f39411d6ffe80504900b6da
author: Marco Paniconi <marpan@google.com>
date: Fri Dec 16 18:53:32 EST 2016
Merge "vp9: Change condition to enable recheck_zeromv_after_denoising."
--- a/vp9/encoder/vp9_pickmode.c
+++ b/vp9/encoder/vp9_pickmode.c
@@ -1235,7 +1235,7 @@
// denoised result. Only do this under noise conditions, and if rdcost of
// ZEROMV onoriginal source is not significantly higher than rdcost of best
// mode.
- if (cpi->noise_estimate.enabled && cpi->noise_estimate.level > kLow &&
+ if (cpi->noise_estimate.enabled && cpi->noise_estimate.level > kHigh &&
ctx_den->zero_last_cost_orig < (best_rdc->rdcost << 3) &&
((ctx_den->best_ref_frame == INTRA_FRAME && decision >= FILTER_BLOCK) ||
(ctx_den->best_ref_frame == GOLDEN_FRAME &&