diff options
author | wm4 <wm4@nowhere> | 2013-01-23 10:56:47 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2013-01-23 10:56:47 +0100 |
commit | 704c0cb2db7d20adc5b744b9714fed60642d8e5c (patch) | |
tree | fcc52a59c605333eb759a1e53f1274161c282a70 /DOCS/man/en | |
parent | 7885fce7ea68d4c64e034b152f2a0b08bb648adc (diff) | |
download | mpv-704c0cb2db7d20adc5b744b9714fed60642d8e5c.tar.bz2 mpv-704c0cb2db7d20adc5b744b9714fed60642d8e5c.tar.xz |
video: remove -x/-y/-xy options
-x/-y were rather useless and obscure. The only use I can see is
forcing a specific aspect ratio without having to calculate the aspect
ratio float value (although --aspect takes values of the form w:h).
This can be also done with --geometry and --no-keepaspect. There was
also a comment that -x/-y is useful for -vm, although I don't see how
this is useful as it still messes up aspect ratio.
-xy is mostly obsolete. It does two things: a) set the window width to
a pixel value, b) scale the window size by a factor. a) is already done
by --autofit (--autofit=num does exactly the same thing as --xy=num, if
num >= 8). b) is not all that useful, so we just drop that
functionality.
Diffstat (limited to 'DOCS/man/en')
-rw-r--r-- | DOCS/man/en/changes.rst | 2 | ||||
-rw-r--r-- | DOCS/man/en/options.rst | 14 |
2 files changed, 2 insertions, 14 deletions
diff --git a/DOCS/man/en/changes.rst b/DOCS/man/en/changes.rst index 2b821d68bd..6f85c5ab38 100644 --- a/DOCS/man/en/changes.rst +++ b/DOCS/man/en/changes.rst @@ -118,6 +118,8 @@ Command line switches -vobsub --sub (pass the .idx file) -ass-bottom-margin --vf=sub=bottom:top -vc ffh264vdpau (etc.) --hwdec=vdpau + -x, -y --geometry + --no-keepaspect + -xy --autofit =================================== =================================== input.conf and slave commands diff --git a/DOCS/man/en/options.rst b/DOCS/man/en/options.rst index a0995db964..d4368baf7b 100644 --- a/DOCS/man/en/options.rst +++ b/DOCS/man/en/options.rst @@ -2329,10 +2329,6 @@ (X11 and win32 only) This tells mpv to attach to an existing window.See ``--slave-broken``. ---x=<width> - Scale image to width <width> (if software/hardware scaling is available). - Disables aspect calculations. - --screen=<all|current|0-32> In multi-monitor configurations (i.e. a single desktop that spans across multiple displays) this option tells mpv which screen to display the @@ -2344,13 +2340,3 @@ This option is not suitable to only set the startup screen (because it will always display on the given screen in fullscreen mode), ``--geometry`` is the best that is available for that purpose currently. - ---xy=<value> - - :value<=8: Scale image by factor <value>. - :value>8: Set width to value and calculate height to keep correct aspect - ratio. - ---y=<height> - Scale image to height <height> (if software/hardware scaling is available). - Disables aspect calculations. |