From 8ca11dda9e73865ccb97c1c3563c1f10b226f633 Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Fri, 20 Mar 2009 15:22:15 +0200 Subject: VO: Don't force window position in X11 VOs Disable by default the code that forcefully moved the video output window to the middle of the screen whenever it was reconfigured or created. That behavior was really annoying when switching video streams within a file, and overriding the window manager like that is not good default behavior for the initial creation of a window either. Add a new option "-force-window-position" that can be used to restore the old behavior. --- options.h | 1 + 1 file changed, 1 insertion(+) (limited to 'options.h') diff --git a/options.h b/options.h index 2f35fe2a76..7e1a67c2b9 100644 --- a/options.h +++ b/options.h @@ -10,6 +10,7 @@ typedef struct MPOpts { int screen_size_y; int vo_screenwidth; int vo_screenheight; + int force_window_position; float force_monitor_aspect; float monitor_pixel_aspect; int vidmode; -- cgit v1.2.3 From 694c067e19dcbabe8f6121923fe628b9bfa6ac32 Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Mon, 30 Mar 2009 02:06:58 +0300 Subject: options: Move osd_level and osd_duration to options struct --- options.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'options.h') diff --git a/options.h b/options.h index 7e1a67c2b9..33dcccd883 100644 --- a/options.h +++ b/options.h @@ -25,6 +25,8 @@ typedef struct MPOpts { int vo_gamma_saturation; int vo_gamma_hue; + int osd_level; + int osd_duration; int loop_times; int correct_pts; int user_correct_pts; -- cgit v1.2.3 From 96daf7ed5ef96b86f2539164c27155bc830aa2a6 Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Wed, 8 Apr 2009 02:37:27 +0300 Subject: Add option -noordered-chapters. --- options.h | 1 + 1 file changed, 1 insertion(+) (limited to 'options.h') diff --git a/options.h b/options.h index 33dcccd883..a7411f83bc 100644 --- a/options.h +++ b/options.h @@ -28,6 +28,7 @@ typedef struct MPOpts { int osd_level; int osd_duration; int loop_times; + int ordered_chapters; int correct_pts; int user_correct_pts; int key_fifo_size; -- cgit v1.2.3