summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vp9/encoder/vp9_noise_estimate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/encoder/vp9_noise_estimate.c b/vp9/encoder/vp9_noise_estimate.c
index bd98d221a..b60500346 100644
--- a/vp9/encoder/vp9_noise_estimate.c
+++ b/vp9/encoder/vp9_noise_estimate.c
@@ -124,7 +124,7 @@ void vp9_update_noise_estimate(VP9_COMP *const cpi) {
last_source = &cpi->denoiser.last_source;
// Tune these thresholds for different resolutions when denoising is
// enabled.
- if (cm->width > 640 && cm->width < 1920) {
+ if (cm->width > 640 && cm->width <= 1920) {
thresh_consec_zeromv = 2;
thresh_sum_diff = 200;
thresh_sum_spatial = (120 * 120) << 8;