summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r--libvo/video_out.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index ec317e00e8..05898ea7ba 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -31,6 +31,17 @@
#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
//