summaryrefslogtreecommitdiffstats
path: root/DOCS/man/options.rst
diff options
context:
space:
mode:
authorNiklas Haas <git@nand.wakku.to>2016-04-10 17:26:32 +0200
committerwm4 <wm4@nowhere>2016-04-10 18:29:20 +0200
commitb968d779afb9114694976792e903b0591a71a816 (patch)
tree25f128c719d098d2fd2f0611e06c8182a1cce037 /DOCS/man/options.rst
parentb18bfd0352cc1723ad9194a2cd31e263124e62b5 (diff)
downloadmpv-b968d779afb9114694976792e903b0591a71a816.tar.bz2
mpv-b968d779afb9114694976792e903b0591a71a816.tar.xz
aspect: rework --video-unscaled
In the past, --video-unscaled also disabled zooming and aspect ratio corrections. But this didn't make much sense in terms of being a useful option. The new behavior just sets the initial video size to be unscaled, but it's still affected by zoom commands and aspect ratio corrections. To get the old behavior back, --video-aspect=0 --video-zoom=0 need to be added as well (in the general case). Most of the time it should not make a difference though. Also, there seems to have been some additional dst_rect clamping code inside src_dst_split_scaling that didn't seem to either be necessary nor ever get triggered. (The code immediately above it already makes sure to crop the video if it's larger than the dst_rect) No idea why it was there, but I just removed it.
Diffstat (limited to 'DOCS/man/options.rst')
-rw-r--r--DOCS/man/options.rst11
1 files changed, 4 insertions, 7 deletions
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst
index 72a67c85b4..18ac7fd2f0 100644
--- a/DOCS/man/options.rst
+++ b/DOCS/man/options.rst
@@ -684,15 +684,12 @@ Video
``--video-unscaled``
Disable scaling of the video. If the window is larger than the video,
black bars are added. Otherwise, the video is cropped. The video still
- can be influenced by the other ``--video-...`` options. (But not all; for
- example ``--video-zoom`` does nothing if this option is enabled.)
-
- The video and monitor aspects aspect will be ignored. Aspect correction
- would require scaling the video in the X or Y direction, but this option
- disables scaling, disabling all aspect correction.
+ can be influenced by the other ``--video-...`` options.
Note that the scaler algorithm may still be used, even if the video isn't
- scaled. For example, this can influence chroma conversion.
+ scaled. For example, this can influence chroma conversion. The video will
+ also still be scaled in one dimension if the source uses non-square pixels
+ (e.g. anamorphic widescreen DVDs).
This option is disabled if the ``--no-keepaspect`` option is used.