[MPlayer-cvslog] CVS: main/libvo vo_directx.c,1.62,1.63

Sascha Sommer CVS syncmail at mplayerhq.hu
Mon Mar 13 17:52:05 CET 2006


CVS change done by Sascha Sommer CVS

Update of /cvsroot/mplayer/main/libvo
In directory mail:/var2/tmp/cvs-serv1328/libvo

Modified Files:
	vo_directx.c 
Log Message:
fix for MPlayer taking 100% CPU with -wid on some systems, patch by Martin Fiedler <martin.fiedler at gmx.net>

Index: vo_directx.c
===================================================================
RCS file: /cvsroot/mplayer/main/libvo/vo_directx.c,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- vo_directx.c	5 Feb 2006 09:41:53 -0000	1.62
+++ vo_directx.c	13 Mar 2006 16:52:01 -0000	1.63
@@ -79,6 +79,7 @@
 static RECT monitor_rect;	                        //monitor coordinates 
 static float window_aspect;
 static BOOL (WINAPI* myGetMonitorInfo)(HMONITOR, LPMONITORINFO) = NULL;
+static RECT last_rect = {0xDEADC0DE, 0xDEADC0DE, 0xDEADC0DE, 0xDEADC0DE};
 
 extern void mplayer_put_key(int code);              //let mplayer handel the keyevents 
 extern void vo_draw_text(int dxs,int dys,void (*draw_alpha)(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride));
@@ -435,6 +436,8 @@
 		return 1;
     }
 	
+    last_rect.left = 0xDEADC0DE;   // reset window position cache
+
 	if(vo_adapter_num){ //display other than default
         OurDirectDrawEnumerateEx = (LPDIRECTDRAWENUMERATEEX) GetProcAddress(hddraw_dll,"DirectDrawEnumerateExA");
         if (!OurDirectDrawEnumerateEx){
@@ -532,6 +535,17 @@
     DWORD           dwUpdateFlags=0;
     int width,height;
    
+    if(!vidmode && !vo_fs && WinID!=-1) {
+      RECT current_rect = {0, 0, 0, 0};
+      GetWindowRect(hWnd, &current_rect);
+      if ((current_rect.left   == last_rect.left)
+      &&  (current_rect.top    == last_rect.top)
+      &&  (current_rect.right  == last_rect.right)
+      &&  (current_rect.bottom == last_rect.bottom))
+        return 0;
+      last_rect = current_rect;
+    }
+
     if(vo_fs || vidmode){
       aspect(&width,&height,A_ZOOM);
       rd.left=(vo_screenwidth-width)/2;
@@ -1480,6 +1494,7 @@
 	case VOCTRL_GET_IMAGE:
       	return get_image(data);
     case VOCTRL_QUERY_FORMAT:
+        last_rect.left = 0xDEADC0DE;   // reset window position cache
         return query_format(*((uint32_t*)data));
 	case VOCTRL_DRAW_IMAGE:
         return put_image(data);
@@ -1577,6 +1592,9 @@
 		va_end(ap);
 		return color_ctrl_get(data, value);
 	}
+    case VOCTRL_RESET:
+        last_rect.left = 0xDEADC0DE;   // reset window position cache
+        // fall-through intended
     };
     return VO_NOTIMPL;
 }




More information about the MPlayer-cvslog mailing list