shithub: libvpx

Download patch

ref: 39ceef38a7819aa1fee4234410160094016f0d28
parent: 06c70d304ff1f672acbabbc3fae0a8202919a868
author: Yaowu Xu <yaowu@google.com>
date: Thu Nov 18 04:10:30 EST 2010

changed MAX_PSNR to 100

Changing the MAX_PSNR to 100 to allow testing of further experiments
on extending quantizer range to near lossless. With an effective
quantizer of 1, encoder achieves ~68DB, which is consistent with
fdct/idct round trip error.

Change-Id: I7b6d0e94a8936968ef42e82e63ebb13999c36832

--- a/vp8/encoder/psnr.c
+++ b/vp8/encoder/psnr.c
@@ -13,7 +13,7 @@
 #include "math.h"
 #include "systemdependent.h" /* for vp8_clear_system_state() */
 
-#define MAX_PSNR 60
+#define MAX_PSNR 100
 
 double vp8_mse2psnr(double Samples, double Peak, double Mse)
 {