[MPlayer-cvslog] CVS: main/libmpcodecs ve_x264.c,1.12,1.13

Loren Merritt CVS syncmail at mplayerhq.hu
Fri Jan 7 12:11:24 CET 2005


CVS change done by Loren Merritt CVS

Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var2/tmp/cvs-serv12101/libmpcodecs

Modified Files:
	ve_x264.c 
Log Message:
x264: disable subq=0 (the huge bitrate penalty wasn't worth the speed),
and set default subq to best. wording.
renumber direct_pred (temporal seems to be best)


Index: ve_x264.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/ve_x264.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ve_x264.c	2 Jan 2005 22:35:37 -0000	1.12
+++ ve_x264.c	7 Jan 2005 11:11:21 -0000	1.13
@@ -90,7 +90,7 @@
 static float qblur = 0.5;
 static float complexity_blur = 20;
 static char *rc_eq = "tex*blurTex^(qComp-1)";
-static int subq = 3;
+static int subq = 5;
 static int psnr = 0;
 static int log_level = 2;
 
@@ -127,7 +127,7 @@
     {"qcomp", &qcomp, CONF_TYPE_FLOAT, CONF_RANGE, 0, 1, NULL},
     {"qblur", &qblur, CONF_TYPE_FLOAT, CONF_RANGE, 0, 99, NULL},
     {"cplx_blur", &complexity_blur, CONF_TYPE_FLOAT, CONF_RANGE, 0, 999, NULL},
-    {"subq", &subq, CONF_TYPE_INT, CONF_RANGE, 0, 5, NULL},
+    {"subq", &subq, CONF_TYPE_INT, CONF_RANGE, 1, 5, NULL},
     {"psnr", &psnr, CONF_TYPE_FLAG, 0, 0, 1, NULL},
     {"nopsnr", &psnr, CONF_TYPE_FLAG, 0, 1, 0, NULL},
     {"log", &log_level, CONF_TYPE_INT, CONF_RANGE, -1, 3, NULL},




More information about the MPlayer-cvslog mailing list