mirror of https://github.com/mpv-player/mpv
change some hardcoded thresholds to match results of previous 100l bugfix (without the 100000000l this time!)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11626 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
b3b439b7cf
commit
ae72904560
|
@ -438,10 +438,10 @@ static void compute_affinity(struct pullup_context *c, struct pullup_field *f)
|
|||
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];
|
||||
|
|
Loading…
Reference in New Issue