summaryrefslogtreecommitdiffstats
path: root/options
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-06-29 22:34:57 +0200
committerwm4 <wm4@nowhere>2017-06-29 22:34:57 +0200
commitb266a334c12fb15d76921517fac38179f9bf99be (patch)
tree4ceb40229e611ad24fb0ea4840461ecf21b2f1da /options
parent300f6a334498059f28ec63406112348c7e00fa64 (diff)
downloadmpv-b266a334c12fb15d76921517fac38179f9bf99be.tar.bz2
mpv-b266a334c12fb15d76921517fac38179f9bf99be.tar.xz
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.
Diffstat (limited to 'options')
-rw-r--r--options/options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/options/options.c b/options/options.c
index 4c42164111..3827709dcc 100644
--- a/options/options.c
+++ b/options/options.c
@@ -928,7 +928,7 @@ const struct MPOpts mp_default_opts = {
.playback_speed = 1.,
.pitch_correction = 1,
.movie_aspect = -1.,
- .aspect_method = 1,
+ .aspect_method = 2,
.field_dominance = -1,
.sub_auto = 0,
.audiofile_auto = -1,