Mercurial > mplayer.hg
diff libmpcodecs/vf_pullup.c @ 13267:8d4a16cb1e97
pullup docs + new feature for slow cpus :)
| author | rfelker |
|---|---|
| date | Mon, 06 Sep 2004 21:25:59 +0000 |
| parents | bb9bf9a97ac6 |
| children | fe1dfcfcc3bf |
line wrap: on
line diff
--- a/libmpcodecs/vf_pullup.c Mon Sep 06 20:11:37 2004 +0000 +++ b/libmpcodecs/vf_pullup.c Mon Sep 06 21:25:59 2004 +0000 @@ -77,7 +77,6 @@ c->stride[1] = c->stride[2] = mpi->chroma_width; c->stride[3] = c->w[3]; c->background[1] = c->background[2] = 128; - c->metric_plane = 0; } if (gCpuCaps.hasMMX) c->cpu |= PULLUP_CPU_MMX; @@ -324,8 +323,9 @@ c->junk_left = c->junk_right = 1; c->junk_top = c->junk_bottom = 4; c->strict_breaks = 0; + c->metric_plane = 0; if (args) { - sscanf(args, "%d:%d:%d:%d:%d", &c->junk_left, &c->junk_right, &c->junk_top, &c->junk_bottom, &c->strict_breaks); + sscanf(args, "%d:%d:%d:%d:%d:%d", &c->junk_left, &c->junk_right, &c->junk_top, &c->junk_bottom, &c->strict_breaks, &c->metric_plane); } return 1; }
