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.
This commit is contained in:
Uoti Urpala 2009-03-30 05:06:17 +03:00
parent 58497380e5
commit 861d6d2bd9
2 changed files with 6 additions and 4 deletions

View File

@ -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.
.

View File

@ -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,