[Mplayer-cvslog] CVS: main/libmpcodecs pullup.c,1.10,1.11

Richard Felker CVS rfelker at mplayerhq.hu
Thu Dec 11 06:03:57 CET 2003


Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var/tmp.root/cvs-serv9093

Modified Files:
	pullup.c 
Log Message:
change some hardcoded thresholds to match results of previous 100l bugfix (without the 100000000l this time!)

Index: pullup.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/pullup.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- pullup.c	11 Dec 2003 04:56:19 -0000	1.10
+++ pullup.c	11 Dec 2003 05:03:52 -0000	1.11
@@ -438,10 +438,10 @@
 		if (l > max_l) max_l = l;
 		if (-l > max_r) max_r = -l;
 	}
-	if (max_l + max_r < 128) return;
+	if (max_l + max_r < 64) return;
 	if (max_r > 2*max_l) f->affinity = -1;
 	else if (max_l > 2*max_r) f->affinity = 1;
-	else if (max_l + max_r > 2048) {
+	else if (max_l + max_r > 1024) {
 		l = t = 0;
 		for (i = 0; i < c->metric_len; i++) {
 			l += f->licomb[i] - f->next->licomb[i];



More information about the MPlayer-cvslog mailing list