summaryrefslogtreecommitdiffstats
path: root/libvo/vo_xv.c
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-08 20:14:08 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-03-08 20:14:08 +0000
commit62f6b6fadac719f11f229e07d55c7dbd57abb114 (patch)
treec86287a996062ef78a572678c3e0594e2446f710 /libvo/vo_xv.c
parent73719375cdabb11f3c38b29d7283e03df14286d2 (diff)
downloadmpv-62f6b6fadac719f11f229e07d55c7dbd57abb114.tar.bz2
mpv-62f6b6fadac719f11f229e07d55c7dbd57abb114.tar.xz
small changes in libvo's X11 support
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4994 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_xv.c')
-rw-r--r--libvo/vo_xv.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/libvo/vo_xv.c b/libvo/vo_xv.c
index d1f225ec23..7965ee317c 100644
--- a/libvo/vo_xv.c
+++ b/libvo/vo_xv.c
@@ -94,10 +94,6 @@ static Window mRoot;
static uint32_t drwX,drwY,drwWidth,drwHeight,drwBorderWidth,drwDepth;
static uint32_t drwcX,drwcY,dwidth,dheight;
-#ifdef HAVE_NEW_GUI
- static uint32_t mdwidth,mdheight;
-#endif
-
static void (*draw_alpha_fnc)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride);
static void draw_alpha_yv12(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride){
@@ -337,11 +333,6 @@ static uint32_t config(uint32_t width, uint32_t height, uint32_t d_width, uint32
image_width = width;
image_format=format;
-#ifdef HAVE_NEW_GUI
- mdwidth=width;
- mdheight=height;
-#endif
-
vo_fs=flags&1;
if ( vo_fs )
{ vo_old_width=d_width; vo_old_height=d_height; }
@@ -501,17 +492,6 @@ static uint32_t config(uint32_t width, uint32_t height, uint32_t d_width, uint32
current_buf=0;
-#ifdef HAVE_NEW_GUI
- if ( vo_window != None )
- {
- dwidth=mdwidth; dheight=mdheight;
- if ( vo_fs )
- {
- dwidth=vo_screenwidth;
- dheight=vo_screenwidth * mdheight / mdwidth;
- }
- }
-#endif
set_gamma_correction();
XGetGeometry( mDisplay,vo_window,&mRoot,&drwX,&drwY,&drwWidth,&drwHeight,&drwBorderWidth,&drwDepth );
@@ -583,15 +563,6 @@ static void check_events(void)
XTranslateCoordinates( mDisplay,vo_window,mRoot,0,0,&drwcX,&drwcY,&mRoot );
printf( "[xv] dcx: %d dcy: %d dx: %d dy: %d dw: %d dh: %d\n",drwcX,drwcY,drwX,drwY,drwWidth,drwHeight );
- #ifdef HAVE_NEW_GUI
- dwidth=mdwidth; dheight=mdheight;
- if ( vo_fs )
- {
- dwidth=vo_screenwidth;
- dheight=vo_screenwidth * mdheight / mdwidth;
- }
- #endif
-
aspect(&dwidth,&dheight,A_NOZOOM);
if ( vo_fs )
{