diff options
author | wm4 <wm4@nowhere> | 2013-12-03 23:25:49 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2013-12-04 00:07:39 +0100 |
commit | 3201a40234e89590d1b8a7f65dcd08a71691e644 (patch) | |
tree | 9a9c71a1606e7207070fc412e8a7a4aada4e7be5 /DOCS/man | |
parent | 43a6dd1ed5b35e3464adb994ab4cb900563d3da3 (diff) | |
download | mpv-3201a40234e89590d1b8a7f65dcd08a71691e644.tar.bz2 mpv-3201a40234e89590d1b8a7f65dcd08a71691e644.tar.xz |
vf_dsize: use option parser
Mostly backwards compatible, we don't change much because we just want
to get rid of the legacy option string handling.
You can't pass an aspect as first argument anymore.
Diffstat (limited to 'DOCS/man')
-rw-r--r-- | DOCS/man/en/vf.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/DOCS/man/en/vf.rst b/DOCS/man/en/vf.rst index 7c5b524875..8f5ebc3885 100644 --- a/DOCS/man/en/vf.rst +++ b/DOCS/man/en/vf.rst @@ -156,7 +156,7 @@ Available filters are: :0: Disable accurate rounding (default). :1: Enable accurate rounding. -``dsize[=aspect|w:h:aspect-method:r]`` +``dsize[=w:h:aspect-method:r:aspect]`` Changes the intended display size/aspect at an arbitrary point in the filter chain. Aspect can be given as a fraction (4/3) or floating point number (1.33). Alternatively, you may specify the exact display width and @@ -205,6 +205,9 @@ Available filters are: Rounds up to make both width and height divisible by ``<r>`` (default: 1). + ``<aspect>`` + Force an aspect ratio. + ``format[=fmt[:outfmt]]`` Restricts the color space for the next filter without doing any conversion. Use together with the scale filter for a real conversion. |