summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-06-14 16:08:49 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-06-14 16:08:49 +0000
commit2727b16cbb4168893b2e73a0090ee8f083002eba (patch)
treee3b7892e8c14491c518cf727b52959a0521e71a8 /DOCS
parent7022f65d0cc4edcb001a39f8836940f8a34ea029 (diff)
downloadmpv-2727b16cbb4168893b2e73a0090ee8f083002eba.tar.bz2
mpv-2727b16cbb4168893b2e73a0090ee8f083002eba.tar.xz
improved -vo gl:lscale documentation
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18712 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/man/en/mplayer.113
1 files changed, 9 insertions, 4 deletions
diff --git a/DOCS/man/en/mplayer.1 b/DOCS/man/en/mplayer.1
index 61b7a9d585..e84c56567a 100644
--- a/DOCS/man/en/mplayer.1
+++ b/DOCS/man/en/mplayer.1
@@ -3079,20 +3079,25 @@ This method is fast but inexact.
.br
6: Use a 3D texture to do conversion via lookup.
Needs the GL_ARB_fragment_program extension and at least four texture units.
+Extremely slow (software emulation) on some (all?) ATI cards since it uses
+a texture with border pixels.
Provides brightness, contrast, saturation, hue and gamma control.
Gamma can also be set independently for red, green and blue.
Speed depends more on GPU memory bandwidth than other methods.
.RE
-.IPs [l|c]scale=<n>
-Select the scaling function to use (seperately for luma and chroma).
-Only valid for yuv modes 2, 3 and 4.
+.IPs lscale=<n>
+Select the scaling function to use for luminance scaling.
+Only valid for yuv modes 2, 3, 4 and 6.
.RSss
0: Use simple linear filtering (default).
.br
1: Use bicubic filtering (better quality).
+Needs one additional texture unit.
Older cards will not be able to handle this for chroma at least in fullscreen mode.
-Also needs one additional texture unit.
.RE
+.IPs cscale=<n>
+Select the scaling function to use for chrominance scaling.
+For details see lscale.
.IPs customprog=<filename>
Load a custom fragment program from <filename>.
See TOOLS/edgedect.fp for an example.