CVS: main/libvo video_out.c,1.40,1.41 video_out.h,1.19,1.20
Update of /cvsroot/mplayer/main/libvo In directory mplayer:/var/tmp.root/cvs-serv13659 Modified Files: video_out.c video_out.h Log Message: added VOFLAG_* definitions and int vo_flags Index: video_out.c =================================================================== RCS file: /cvsroot/mplayer/main/libvo/video_out.c,v retrieving revision 1.40 retrieving revision 1.41 diff -u -r1.40 -r1.41 --- video_out.c 12 Feb 2002 15:06:04 -0000 1.40 +++ video_out.c 17 Feb 2002 03:06:38 -0000 1.41 @@ -31,6 +31,8 @@ #include "../linux/shmem.h" +int vo_flags=0; + // currect resolution/bpp on screen: (should be autodetected by vo_init()) int vo_depthonscreen=0; int vo_screenwidth=0; Index: video_out.h =================================================================== RCS file: /cvsroot/mplayer/main/libvo/video_out.h,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- video_out.h 17 Feb 2002 00:33:50 -0000 1.19 +++ video_out.h 17 Feb 2002 03:06:38 -0000 1.20 @@ -34,6 +34,11 @@ #define VO_NOTAVAIL -2 #define VO_NOTIMPL -3 +#define VOFLAG_FULLSCREEN 0x01 +#define VOFLAG_MODESWITCHING 0x02 +#define VOFLAG_SWSCALE 0x04 +#define VOFLAG_FLIPPING 0x08 + typedef struct vo_info_s { /* driver name ("Matrox Millennium G200/G400" */
participants (1)
-
Alex Beregszaszi