summaryrefslogtreecommitdiff
path: root/vp8/encoder
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2011-05-11 23:32:06 -0700
committerYaowu Xu <yaowu@google.com>2011-05-11 23:32:06 -0700
commitbd9d890605efc10252a86c47668a13d219808819 (patch)
treeb2a0a95c86e4a8150fc1103b9b9603c97ee96e58 /vp8/encoder
parentba6f60dba70ad56fbfd1080bb4555f078bc774bf (diff)
downloadlibvpx-bd9d890605efc10252a86c47668a13d219808819.tar
libvpx-bd9d890605efc10252a86c47668a13d219808819.tar.gz
libvpx-bd9d890605efc10252a86c47668a13d219808819.tar.bz2
libvpx-bd9d890605efc10252a86c47668a13d219808819.zip
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
Diffstat (limited to 'vp8/encoder')
-rw-r--r--vp8/encoder/rdopt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp8/encoder/rdopt.c b/vp8/encoder/rdopt.c
index 880153fef..6c71bbd34 100644
--- a/vp8/encoder/rdopt.c
+++ b/vp8/encoder/rdopt.c
@@ -207,7 +207,7 @@ void vp8_initialize_rd_consts(VP8_COMP *cpi, int Qvalue)
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;