From: JackyChen Date: Thu, 4 Sep 2014 21:08:18 +0000 (-0700) Subject: Update the condition when COPY_BLOCK is chosen. X-Git-Tag: v1.4.0~846^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d75266f14135d35509d2a7a609bd879f805d4903;p=libvpx Update the condition when COPY_BLOCK is chosen. The change is just to keep the condition the same with VP8. Change-Id: I9662b40996126605945dd853c0cbe8916c1ce578 --- diff --git a/vp9/encoder/vp9_denoiser.c b/vp9/encoder/vp9_denoiser.c index e047f7ef6..12f6d3abd 100644 --- a/vp9/encoder/vp9_denoiser.c +++ b/vp9/encoder/vp9_denoiser.c @@ -130,7 +130,8 @@ static VP9_DENOISER_DECISION denoiser_filter(const uint8_t *sig, int sig_stride, // Otherwise, we try to dampen the filter if the delta is not too high. delta = ((abs(total_adj) - total_adj_strong_thresh(bs, increase_denoising)) >> 8) + 1; - if (delta > delta_thresh(bs, increase_denoising)) { + + if (delta >= delta_thresh(bs, increase_denoising)) { return COPY_BLOCK; }