From 7ef2f59186ae788ef616a30b099a63cdb44bcaa1 Mon Sep 17 00:00:00 2001 From: alex Date: Sun, 17 Feb 2002 03:06:38 +0000 Subject: [PATCH] added VOFLAG_* definitions and int vo_flags git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4737 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/video_out.c | 2 ++ libvo/video_out.h | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/libvo/video_out.c b/libvo/video_out.c index a7835d2e5f..2898ee0e43 100644 --- a/libvo/video_out.c +++ b/libvo/video_out.c @@ -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; diff --git a/libvo/video_out.h b/libvo/video_out.h index e0ce27bd3f..bd6b09a486 100644 --- a/libvo/video_out.h +++ b/libvo/video_out.h @@ -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" */