changeset 4811:38a9cddd9e4d

added vo_dx,vo_dy (used currently only by X based outputs)
author alex
date Fri, 22 Feb 2002 18:00:38 +0000
parents bb6b9aca7195
children bad436339b03
files libvo/video_out.c libvo/video_out.h
diffstat 2 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/video_out.c	Fri Feb 22 17:58:46 2002 +0000
+++ b/libvo/video_out.c	Fri Feb 22 18:00:38 2002 +0000
@@ -39,6 +39,8 @@
 int vo_screenheight=0;
 
 // requested resolution/bpp:  (-x -y -bpp options)
+int vo_dx=0;
+int vo_dy=0;
 int vo_dwidth=0;
 int vo_dheight=0;
 int vo_dbpp=0;
--- a/libvo/video_out.h	Fri Feb 22 17:58:46 2002 +0000
+++ b/libvo/video_out.h	Fri Feb 22 18:00:38 2002 +0000
@@ -179,12 +179,16 @@
 // NULL terminated array of all drivers
 extern vo_functions_t* video_out_drivers[];
 
+extern int vo_flags;
+
 // correct 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_dx;
+extern int vo_dy;
 extern int vo_dwidth;
 extern int vo_dheight;
 extern int vo_dbpp;