CVS: main/libvo video_out.c,1.10,1.11 video_out.h,1.4,1.5 x11_common.c,1.5,1.6
Update of /cvsroot/mplayer/main/libvo In directory usw-pr-cvs1:/tmp/cvs-serv30492/libvo Modified Files: video_out.c video_out.h x11_common.c Log Message: -bpp changes Index: video_out.c =================================================================== RCS file: /cvsroot/mplayer/main/libvo/video_out.c,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** video_out.c 2001/04/05 19:01:27 1.10 --- video_out.c 2001/04/13 13:47:36 1.11 *************** *** 32,35 **** --- 32,46 ---- #include "../linux/shmem.h" + // currect resolution/bpp on screen: (should be autodetected by vo_init()) + int vo_depthonscreen=0; + int vo_screenwidth=0; + int vo_screenheight=0; + + // requested resolution/bpp: (-x -y -bpp options) + int vo_dwidth=0; + int vo_dheight=0; + int vo_dbpp=0; + + // // Externally visible list of all vo drivers Index: video_out.h =================================================================== RCS file: /cvsroot/mplayer/main/libvo/video_out.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** video_out.h 2001/03/27 00:32:24 1.4 --- video_out.h 2001/04/13 13:47:36 1.5 *************** *** 106,108 **** --- 106,117 ---- extern vo_functions_t* video_out_drivers[]; + // currect resolution/bpp on screen: (should be autodetected by vo_init()) + extern int vo_depthonscreen; + extern int vo_screenwidth; + extern int vo_screenheight; + + // requested resolution/bpp: (-x -y -bpp options) + extern int vo_dwidth; + extern int vo_dheight; + extern int vo_dbpp; Index: x11_common.c =================================================================== RCS file: /cvsroot/mplayer/main/libvo/x11_common.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** x11_common.c 2001/04/13 00:54:05 1.5 --- x11_common.c 2001/04/13 13:47:36 1.6 *************** *** 16,25 **** #include <X11/Xatom.h> - int vo_depthonscreen=0; - int vo_screenwidth=0; - int vo_screenheight=0; - int vo_dwidth=0; - int vo_dheight=0; - static int dpms_disabled=0; static int timeout_save=0; --- 16,19 ---- _______________________________________________ Mplayer-cvslog mailing list Mplayer-cvslog@lists.sourceforge.net http://lists.sourceforge.net/lists/listinfo/mplayer-cvslog
participants (1)
-
GEREOFFY