shithub: libvpx

Download patch

ref: bd9d890605efc10252a86c47668a13d219808819
parent: ba6f60dba70ad56fbfd1080bb4555f078bc774bf
author: Yaowu Xu <yaowu@google.com>
date: Wed May 11 19:32:06 EDT 2011

adjusting rd constant slightly by ~10%

This is to reflect the RD improvement in the encoder. The change has a
small positive impact on quality (0.25% by VPXSSIM and 0.05% by PSNR)

Change-Id: Ic66ffc19b10870645088c0624c85556f009fd210

--- a/vp8/encoder/rdopt.c
+++ b/vp8/encoder/rdopt.c
@@ -207,7 +207,7 @@
     int q;
     int i;
     double capped_q = (Qvalue < 160) ? (double)Qvalue : 160.0;
-    double rdconst = 3.00;
+    double rdconst = 2.70;
 
     vp8_clear_system_state();  //__asm emms;
 
--