summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-05-04 16:07:01 +0200
committerwm4 <wm4@nowhere>2014-05-04 16:07:01 +0200
commitaa2a9c3e42bac90d097506f46694b7c6c1c7dfc6 (patch)
treee415ff2301024f79b60e05ce22f62b662d021310 /DOCS
parentca7d8681fb36a49fef261ac2bd4216c721f1a5d8 (diff)
downloadmpv-aa2a9c3e42bac90d097506f46694b7c6c1c7dfc6.tar.bz2
mpv-aa2a9c3e42bac90d097506f46694b7c6c1c7dfc6.tar.xz
manpage: fix vf_scale options
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/man/en/vf.rst20
1 files changed, 11 insertions, 9 deletions
diff --git a/DOCS/man/en/vf.rst b/DOCS/man/en/vf.rst
index e4a163bb4c..f3701f04f9 100644
--- a/DOCS/man/en/vf.rst
+++ b/DOCS/man/en/vf.rst
@@ -91,10 +91,12 @@ Available filters are:
``rotate[=0|90|180|270]``
Rotates the image by a multiple of 90 degrees clock-wise.
-``scale[=w:h[:interlaced[:chr-drop[:param[:param2[:noup[:arnd]]]]]]]``
+``scale[=w:h:param:param2:chr-drop:noup:arnd``
Scales the image with the software scaler (slow) and performs a YUV<->RGB
colorspace conversion (see also ``--sws``).
+ All parameters are optional.
+
``<w>,<h>``
scaled width/height (default: original width/height)
@@ -107,14 +109,6 @@ Available filters are:
:-(n+8): Like -n above, but rounding the dimension to the closest
multiple of 16.
- ``<chr-drop>``
- chroma skipping
-
- :0: Use all available input lines for chroma.
- :1: Use only every 2. input line for chroma.
- :2: Use only every 4. input line for chroma.
- :3: Use only every 8. input line for chroma.
-
``<param>[:<param2>]`` (see also ``--sws``)
Set some scaling parameters depending on the type of scaler selected
with ``--sws``::
@@ -130,6 +124,14 @@ Available filters are:
--sws=9 (lanczos): filter length (1-10)
+ ``<chr-drop>``
+ chroma skipping
+
+ :0: Use all available input lines for chroma (default).
+ :1: Use only every 2. input line for chroma.
+ :2: Use only every 4. input line for chroma.
+ :3: Use only every 8. input line for chroma.
+
``<noup>``
Disallow upscaling past the original dimensions.