shithub: libvpx

Download patch

ref: dd998adc7ae28bcc4e90450d12dac7d0b9e557af
parent: 623e988addfa8add7a21c69aa893ba42f7d5236e
author: Marco <marpan@google.com>
date: Thu Dec 3 08:47:27 EST 2015

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

Change-Id: I57a15aec1cb2d6638f5211d30c2c9f15fb62494f

--- a/vp9/encoder/vp9_pickmode.c
+++ b/vp9/encoder/vp9_pickmode.c
@@ -1703,7 +1703,7 @@
         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;