summaryrefslogtreecommitdiffstats
path: root/libvo/vo_xv.c
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-05-06 16:56:41 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-05-06 16:56:41 +0000
commita1f7ba2ba74d69bbb2b783fdb4e2fc31fb39f5e7 (patch)
treee0e46b55069e0a244d6c203c790a6e387443a9ef /libvo/vo_xv.c
parent48da357ce5714f1375a6ef5358c4380c8c3232b8 (diff)
downloadmpv-a1f7ba2ba74d69bbb2b783fdb4e2fc31fb39f5e7.tar.bz2
mpv-a1f7ba2ba74d69bbb2b783fdb4e2fc31fb39f5e7.tar.xz
fix -fs and 'f'
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6000 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_xv.c')
-rw-r--r--libvo/vo_xv.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/libvo/vo_xv.c b/libvo/vo_xv.c
index ae5658cce4..25f2be7289 100644
--- a/libvo/vo_xv.c
+++ b/libvo/vo_xv.c
@@ -338,9 +338,9 @@ static uint32_t config(uint32_t width, uint32_t height, uint32_t d_width, uint32
vo_mouse_autohide=1;
vo_dwidth=d_width; vo_dheight=d_height;
- vo_fs=flags&1;
- if ( vo_fs )
- { vo_old_width=d_width; vo_old_height=d_height; }
+// vo_fs=flags&1;
+// if ( vo_fs )
+// { vo_old_width=d_width; vo_old_height=d_height; }
#ifdef HAVE_XF86VM
if( flags&0x02 ) vm = 1;
@@ -388,8 +388,8 @@ static uint32_t config(uint32_t width, uint32_t height, uint32_t d_width, uint32
#endif
if ( vo_fs )
{
- hint.width=vo_screenwidth;
- hint.height=vo_screenheight;
+// hint.width=vo_screenwidth;
+// hint.height=vo_screenheight;
#ifdef X11_FULLSCREEN
/* this code replaces X11_FULLSCREEN hack in mplayer.c
* aspect() is available through aspect.h for all vos.
@@ -437,8 +437,9 @@ static uint32_t config(uint32_t width, uint32_t height, uint32_t d_width, uint32
);
XSetStandardProperties(mDisplay, vo_window, hello, hello, None, NULL, 0, &hint);
XSetWMNormalHints( mDisplay,vo_window,&hint );
- if ( vo_fs ) vo_x11_decoration( mDisplay,vo_window,0 );
+// if ( vo_fs ) vo_x11_decoration( mDisplay,vo_window,0 );
XMapWindow(mDisplay, vo_window);
+ if ( flags&1 ) vo_x11_fullscreen();
#ifdef HAVE_XINERAMA
vo_x11_xinerama_move(mDisplay,vo_window);
#endif