]> git.sesse.net Git - vlc/commitdiff
msw vout: More debug
authorJean-Baptiste Kempf <jb@videolan.org>
Fri, 17 Jul 2009 22:03:15 +0000 (00:03 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Fri, 17 Jul 2009 22:04:01 +0000 (00:04 +0200)
modules/video_output/msw/directx.c
modules/video_output/msw/events.c
modules/video_output/msw/wingdi.c

index c236617770a8a842f48a7d22285e1d859aa23a93..effb507ab709b35d24063328cd7a64a492a24bda 100644 (file)
@@ -1832,7 +1832,7 @@ static int DirectXLockSurface( vout_thread_t *p_vout, picture_t *p_pic )
             dxresult = IDirectDrawSurface2_Lock( p_pic->p_sys->p_surface, NULL,
                                                  &p_pic->p_sys->ddsd,
                                                  DDLOCK_WAIT, NULL);
-#if 0
+#ifndef NDEBUG
             if( dxresult == DDERR_SURFACELOST )
                 msg_Dbg( p_vout, "DirectXLockSurface: DDERR_SURFACELOST" );
 #endif
index 557dde21cacd012629683b7150fd14b621631069..174f71c992d30c682623b2eaee0cfdef6d871a57 100644 (file)
@@ -691,7 +691,7 @@ void UpdateRects( vout_thread_t *p_vout, bool b_force )
         return;
     }
 
-#if 0
+#ifndef NDEBUG
     msg_Dbg( p_vout, "DirectXUpdateRects image_dst_clipped coords:"
                      " %i,%i,%i,%i",
                      rect_dest_clipped.left, rect_dest_clipped.top,
@@ -752,7 +752,7 @@ void UpdateRects( vout_thread_t *p_vout, bool b_force )
     }
 #endif
 
-#if 0
+#ifndef NDEBUG
     msg_Dbg( p_vout, "DirectXUpdateRects image_src_clipped"
                      " coords: %i,%i,%i,%i",
                      rect_src_clipped.left, rect_src_clipped.top,
index 5db738e522c298b05b1485aacca757e643ccde47..940de59528b4c0313fba31db7b9c479de7a70e25 100644 (file)
@@ -688,8 +688,8 @@ static int GAPILockSurface( vout_thread_t *p_vout, picture_t *p_pic )
             return VLC_EGENERIC;
         }
 
-#if 0
-        msg_Err( p_vout, "video (%d,%d,%d,%d) display (%d,%d,%d,%d) "
+#ifndef NDEBUG
+        msg_Dbg( p_vout, "video (%d,%d,%d,%d) display (%d,%d,%d,%d) "
                  "dest (%d,%d,%d,%d)",
                  video_rect.left, video_rect.right,
                  video_rect.top, video_rect.bottom,
@@ -701,7 +701,7 @@ static int GAPILockSurface( vout_thread_t *p_vout, picture_t *p_pic )
 
         if( !(p_dest = GXBeginDraw()) )
         {
-#if 0
+#ifndef NDEBUG
             msg_Err( p_vout, "GXBeginDraw error %d ", GetLastError() );
 #endif
             return VLC_EGENERIC;