[MPlayer-cvslog] r28454 - trunk/libvo/vo_direct3d.c

reimar subversion at mplayerhq.hu
Tue Feb 3 11:21:17 CET 2009


Author: reimar
Date: Tue Feb  3 11:21:17 2009
New Revision: 28454

Log:
Cosmetics: remove empty line, improve some messages.

Modified:
   trunk/libvo/vo_direct3d.c

Modified: trunk/libvo/vo_direct3d.c
==============================================================================
--- trunk/libvo/vo_direct3d.c	Tue Feb  3 11:17:14 2009	(r28453)
+++ trunk/libvo/vo_direct3d.c	Tue Feb  3 11:21:17 2009	(r28454)
@@ -860,19 +860,17 @@ static void flip_page(void)
     RECT rect = {0, 0, vo_dwidth, vo_dheight};
     if (FAILED(IDirect3DDevice9_Present(priv->d3d_device, &rect, 0, 0, 0))) {
         mp_msg(MSGT_VO, MSGL_V,
-               "<vo_direct3d>Video adapter became uncooperative.\n");
-        mp_msg(MSGT_VO, MSGL_ERR, "<vo_direct3d>Trying to reinitialize it...\n");
+               "<vo_direct3d>Trying to reinitialize uncooperative video adapter.\n");
         if (!reconfigure_d3d()) {
-            mp_msg(MSGT_VO, MSGL_V, "<vo_direct3d>Reinitialization Failed.\n");
+            mp_msg(MSGT_VO, MSGL_V, "<vo_direct3d>Reinitialization failed.\n");
             return;
         }
         if (FAILED(IDirect3DDevice9_Present(priv->d3d_device, &rect, 0, 0, 0))) {
-            mp_msg(MSGT_VO, MSGL_V, "<vo_direct3d>Reinitialization Failed.\n");
+            mp_msg(MSGT_VO, MSGL_V, "<vo_direct3d>Reinitialization failed.\n");
             return;
         }
         else
             mp_msg(MSGT_VO, MSGL_V, "<vo_direct3d>Video adapter reinitialized.\n");
-
     }
 }
 



More information about the MPlayer-cvslog mailing list