shithub: libvpx

Download patch

ref: 78cde4f593ef7b7014d64219a8986e79c115cdb9
parent: 43622dd92aa169ea55a24e1422bcb75de7fb7032
parent: c69a141a9e3910361e79f936cc09b237d9c0f1d6
author: Jacky Chen <[email protected]>
date: Thu Apr 28 14:06:29 EDT 2016

Merge "vp9: Don't force block size to 8x8 in denoiser."

--- a/vp9/encoder/vp9_pickmode.c
+++ b/vp9/encoder/vp9_pickmode.c
@@ -1845,8 +1845,7 @@
       cpi->denoiser.denoising_level > kDenLowLow &&
       cpi->denoiser.reset == 0) {
     VP9_DENOISER_DECISION decision = COPY_BLOCK;
-    vp9_denoiser_denoise(cpi, x, mi_row, mi_col, VPXMAX(BLOCK_8X8, bsize),
-                         ctx, &decision);
+    vp9_denoiser_denoise(cpi, x, mi_row, mi_col, bsize, ctx, &decision);
     // If INTRA or GOLDEN reference was selected, re-evaluate ZEROMV on denoised
     // result. Only do this under noise conditions, and if rdcost of ZEROMV on
     // original source is not significantly higher than rdcost of best mode.