mirror of
https://github.com/mpv-player/mpv
synced 2025-02-16 20:27:23 +00:00
video: change --video-aspect-method default value again
I noticed that the previous default, bitstream, actually breaks with some shitty anamorphic DVD rips that signal square pixel aspect in the bitstream. So I think the "container" method is a better default.
This commit is contained in:
parent
300f6a3344
commit
b266a334c1
@ -825,15 +825,18 @@ Video
|
|||||||
switches mid-stream, switch to preferring the bitstream aspect.
|
switches mid-stream, switch to preferring the bitstream aspect.
|
||||||
This was the default in older mpv and mplayer2. Deprecated.
|
This was the default in older mpv and mplayer2. Deprecated.
|
||||||
:container: Strictly prefer the container aspect ratio. This is apparently
|
:container: Strictly prefer the container aspect ratio. This is apparently
|
||||||
the default behavior with VLC, at least with Matroska.
|
the default behavior with VLC, at least with Matroska. Note that
|
||||||
|
if the container has no aspect ratio set, the behavior is the
|
||||||
|
same as with bitstream.
|
||||||
:bitstream: Strictly prefer the bitstream aspect ratio, unless the bitstream
|
:bitstream: Strictly prefer the bitstream aspect ratio, unless the bitstream
|
||||||
aspect ratio is not set. This is apparently the default behavior
|
aspect ratio is not set. This is apparently the default behavior
|
||||||
with XBMC/kodi, at least with Matroska, and the current default
|
with XBMC/kodi, at least with Matroska.
|
||||||
for mpv.
|
|
||||||
|
|
||||||
Normally you should not set this. Try the ``container`` and ``bitstream``
|
The current default for mpv is ``container``.
|
||||||
choices if you encounter video that has the wrong aspect ratio in mpv,
|
|
||||||
but seems to be correct in other players.
|
Normally you should not set this. Try the various choices if you encounter
|
||||||
|
video that has the wrong aspect ratio in mpv, but seems to be correct in
|
||||||
|
other players.
|
||||||
|
|
||||||
``--video-unscaled=<no|yes|downscale-big>``
|
``--video-unscaled=<no|yes|downscale-big>``
|
||||||
Disable scaling of the video. If the window is larger than the video,
|
Disable scaling of the video. If the window is larger than the video,
|
||||||
|
@ -928,7 +928,7 @@ const struct MPOpts mp_default_opts = {
|
|||||||
.playback_speed = 1.,
|
.playback_speed = 1.,
|
||||||
.pitch_correction = 1,
|
.pitch_correction = 1,
|
||||||
.movie_aspect = -1.,
|
.movie_aspect = -1.,
|
||||||
.aspect_method = 1,
|
.aspect_method = 2,
|
||||||
.field_dominance = -1,
|
.field_dominance = -1,
|
||||||
.sub_auto = 0,
|
.sub_auto = 0,
|
||||||
.audiofile_auto = -1,
|
.audiofile_auto = -1,
|
||||||
|
Loading…
Reference in New Issue
Block a user