diff options
-rw-r--r-- | DOCS/man/en/mplayer.1 | 2 | ||||
-rw-r--r-- | libvo/vo_gl.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/DOCS/man/en/mplayer.1 b/DOCS/man/en/mplayer.1 index 7d2c1fba9c..f8431cae0e 100644 --- a/DOCS/man/en/mplayer.1 +++ b/DOCS/man/en/mplayer.1 @@ -3652,6 +3652,8 @@ Older cards will not be able to handle this for chroma at least in fullscreen mo .br 2: Use cubic filtering in horizontal, linear filtering in vertical direction. Works on a few more cards than method 1. +.br +3: Same as 1 but does not use a lookup texture. Might be faster on some cards. .RE .IPs cscale=<n> Select the scaling function to use for chrominance scaling. diff --git a/libvo/vo_gl.c b/libvo/vo_gl.c index 0824e25bd1..8dc7150168 100644 --- a/libvo/vo_gl.c +++ b/libvo/vo_gl.c @@ -855,6 +855,7 @@ static int preinit(const char *arg) " 0: use standard bilinear scaling for luma.\n" " 1: use improved bicubic scaling for luma.\n" " 2: use cubic in X, linear in Y direction scaling for luma.\n" + " 3: as 1 but without using a lookup texture.\n" " cscale=<n>\n" " as lscale but for chroma (2x slower with little visible effect).\n" " customprog=<filename>\n" |