diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-12-05 15:50:24 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-12-05 15:50:24 +0000 |
commit | 173e7ebc35f2a042f7422fa4350206895e7faa02 (patch) | |
tree | 95bfae1de9b351ada055a7a83fd5ef26a35dbb8d | |
parent | 0ca415447d33c75469724e16aba6385fd80691db (diff) |
Add some forgotten documentation for gl suboptions
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28094 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libvo/vo_gl.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libvo/vo_gl.c b/libvo/vo_gl.c index 736d9f6ae7..452a086b38 100644 --- a/libvo/vo_gl.c +++ b/libvo/vo_gl.c @@ -914,6 +914,8 @@ static int preinit(const char *arg) " Slice size for texture transfer, 0 for whole image\n" " noosd\n" " Do not use OpenGL OSD code\n" + " scaled-osd\n" + " Render OSD at movie resolution and scale it\n" " noaspect\n" " Do not do aspect scaling\n" " rectangle=<0,1,2>\n" @@ -943,9 +945,12 @@ static int preinit(const char *arg) " 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" - " 4: experimental unsharp masking.\n" + " 4: experimental unsharp masking (sharpening).\n" + " 5: experimental unsharp masking (sharpening) with larger radius.\n" " cscale=<n>\n" " as lscale but for chroma (2x slower with little visible effect).\n" + " filter-strength=<value>\n" + " set the effect strength for some lscale/cscale filters\n" " customprog=<filename>\n" " use a custom YUV conversion program\n" " customtex=<filename>\n" @@ -956,6 +961,8 @@ static int preinit(const char *arg) " use texture_rectangle for customtex texture\n" " osdcolor=<0xAARRGGBB>\n" " use the given color for the OSD\n" + " ycbcr\n" + " also try to use the GL_MESA_ycbcr_texture extension\n" "\n" ); return -1; } |