changeset 14719:a76f1a68ed75

sync to x264 r129: modified ratecontrol equation.
author lorenm
date Thu, 17 Feb 2005 19:32:44 +0000
parents 11376fd550ac
children 4e83e075024f
files libmpcodecs/ve_x264.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/ve_x264.c	Thu Feb 17 15:56:25 2005 +0000
+++ b/libmpcodecs/ve_x264.c	Thu Feb 17 19:32:44 2005 +0000
@@ -49,7 +49,7 @@
 
 #include <x264.h>
 
-#if X264_BUILD < 0x000e
+#if X264_BUILD < 0x0010
 #error We do not support old versions of x264. Get the latest from SVN.
 #endif
 
@@ -90,7 +90,7 @@
 static float qcomp = 0.6;
 static float qblur = 0.5;
 static float complexity_blur = 20;
-static char *rc_eq = "tex*blurTex^(qComp-1)";
+static char *rc_eq = "blurCplx^(1-qComp)";
 static int subq = 5;
 static int psnr = 0;
 static int log_level = 2;