[MPlayer-cvslog] CVS: main/libvo vo_xvmc.c,1.17,1.18
Jindrich Makovicka CVS
syncmail at mplayerhq.hu
Wed Apr 13 21:38:47 CEST 2005
CVS change done by Jindrich Makovicka CVS
Update of /cvsroot/mplayer/main/libvo
In directory mail:/var2/tmp/cvs-serv6333
Modified Files:
vo_xvmc.c
Log Message:
messed ordering of switch branches, 10l for Ivan
Index: vo_xvmc.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_xvmc.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- vo_xvmc.c 10 Apr 2005 16:30:53 -0000 1.17
+++ vo_xvmc.c 13 Apr 2005 19:38:44 -0000 1.18
@@ -1365,9 +1365,6 @@
return VO_TRUE;
case VOCTRL_FULLSCREEN:
vo_x11_fullscreen();
- case VOCTRL_GET_PANSCAN:
- if ( !vo_config_count || !vo_fs ) return VO_FALSE;
- return VO_TRUE;
// indended, fallthrough to update panscan on fullscreen/windowed switch
case VOCTRL_SET_PANSCAN:
if ( ( vo_fs && ( vo_panscan != vo_panscan_amount ) ) || ( !vo_fs && vo_panscan_amount ) )
@@ -1382,7 +1379,9 @@
}
}
return VO_TRUE;
-
+ case VOCTRL_GET_PANSCAN:
+ if ( !vo_config_count || !vo_fs ) return VO_FALSE;
+ return VO_TRUE;
case VOCTRL_SET_EQUALIZER:
{
va_list ap;
More information about the MPlayer-cvslog
mailing list