changeset 11625:a18a54997671

change some hardcoded thresholds to match results of previous 100l bugfix (without the 100000000l this time!)
author rfelker
date Thu, 11 Dec 2003 05:03:52 +0000
parents 03e8cbee7333
children 168e540bad66
files libmpcodecs/pullup.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/pullup.c	Thu Dec 11 04:56:19 2003 +0000
+++ b/libmpcodecs/pullup.c	Thu Dec 11 05:03:52 2003 +0000
@@ -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];