# HG changeset patch # User reimar # Date 1399751978 0 # Node ID 5674877e6814d334d10642ec2344025f803cfaac # Parent 15efbc138bd3dbf9cff40f62153a7373596711ab Document nearest-neighbor scaling for vo_gl. diff -r 15efbc138bd3 -r 5674877e6814 DOCS/man/en/mplayer.1 --- a/DOCS/man/en/mplayer.1 Thu May 08 10:30:52 2014 +0000 +++ b/DOCS/man/en/mplayer.1 Sat May 10 19:59:38 2014 +0000 @@ -4358,6 +4358,8 @@ Use experimental unsharp masking with 3x3 support and a default strength of 0.5 (see filter-strength). .IPs 5 Use experimental unsharp masking with 5x5 support and a default strength of 0.5 (see filter-strength). +.IPs 64 +Use nearest-neighbor scaling. .RE .IPs cscale= Select the scaling function to use for chrominance scaling. diff -r 15efbc138bd3 -r 5674877e6814 libvo/vo_gl.c --- a/libvo/vo_gl.c Thu May 08 10:30:52 2014 +0000 +++ b/libvo/vo_gl.c Sat May 10 19:59:38 2014 +0000 @@ -1314,6 +1314,7 @@ " 3: as 1 but without using a lookup texture.\n" " 4: experimental unsharp masking (sharpening).\n" " 5: experimental unsharp masking (sharpening) with larger radius.\n" + " 64: nearest neighbor scaling.\n" " cscale=\n" " as lscale but for chroma (2x slower with little visible effect).\n" " filter-strength=\n"