summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2009-03-30 05:06:17 +0300
committerUoti Urpala <uau@glyph.nonexistent.invalid>2009-04-02 06:51:26 +0300
commit861d6d2bd9b46c8644b7d8683d101157cd459927 (patch)
tree3f78a07ad2a8202089fb1d73f2e3a9013a17876d
parent58497380e5222749892414089d26916095c0485c (diff)
downloadmpv-861d6d2bd9b46c8644b7d8683d101157cd459927.tar.bz2
mpv-861d6d2bd9b46c8644b7d8683d101157cd459927.tar.xz
Make -fixed-vo the default
Lack of -fixed-vo causes the output window to be recreated not only when changing files but also when switching the video stream, and that happens when moving from one ordered chapter source to another. Having the window disappear and reappear (likely at another location if it was ever moved) is just too annoying.
-rw-r--r--DOCS/man/en/mplayer.18
-rw-r--r--defaultopts.c2
2 files changed, 6 insertions, 4 deletions
diff --git a/DOCS/man/en/mplayer.1 b/DOCS/man/en/mplayer.1
index cec09f8735..39ca6543d6 100644
--- a/DOCS/man/en/mplayer.1
+++ b/DOCS/man/en/mplayer.1
@@ -865,10 +865,12 @@ Enqueue files given on the command line in the playlist instead of playing them
immediately.
.
.TP
-.B \-fixed\-vo
-Enforces a fixed video system for multiple files (one (un)initialization for
-all files).
+.B \-nofixed\-vo
+\-fixed\-vo enforces a fixed video system for multiple files (one
+(un)initialization for all files).
Therefore only one window will be opened for all files.
+Now enabled by default, use \-nofixed\-vo to disable and create a new window
+whenever the video stream changes.
Currently the following drivers are fixed-vo compliant: gl, gl2, mga, svga, x11,
xmga, xv, xvidix and dfbmga.
.
diff --git a/defaultopts.c b/defaultopts.c
index fb841e64a1..b35601e917 100644
--- a/defaultopts.c
+++ b/defaultopts.c
@@ -9,7 +9,7 @@ void set_default_mplayer_options(struct MPOpts *opts)
*opts = (const struct MPOpts){
.audio_driver_list = NULL,
.video_driver_list = NULL,
- .fixed_vo = 0,
+ .fixed_vo = 1,
.monitor_pixel_aspect = 1.0,
.vo_panscanrange = 1.0,
.vo_gamma_gamma = 1000,