Commit 2b086db2 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

msw vout: More debug

parent 13b5baf3
...@@ -1832,7 +1832,7 @@ static int DirectXLockSurface( vout_thread_t *p_vout, picture_t *p_pic ) ...@@ -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, dxresult = IDirectDrawSurface2_Lock( p_pic->p_sys->p_surface, NULL,
&p_pic->p_sys->ddsd, &p_pic->p_sys->ddsd,
DDLOCK_WAIT, NULL); DDLOCK_WAIT, NULL);
#if 0 #ifndef NDEBUG
if( dxresult == DDERR_SURFACELOST ) if( dxresult == DDERR_SURFACELOST )
msg_Dbg( p_vout, "DirectXLockSurface: DDERR_SURFACELOST" ); msg_Dbg( p_vout, "DirectXLockSurface: DDERR_SURFACELOST" );
#endif #endif
......
...@@ -691,7 +691,7 @@ void UpdateRects( vout_thread_t *p_vout, bool b_force ) ...@@ -691,7 +691,7 @@ void UpdateRects( vout_thread_t *p_vout, bool b_force )
return; return;
} }
#if 0 #ifndef NDEBUG
msg_Dbg( p_vout, "DirectXUpdateRects image_dst_clipped coords:" msg_Dbg( p_vout, "DirectXUpdateRects image_dst_clipped coords:"
" %i,%i,%i,%i", " %i,%i,%i,%i",
rect_dest_clipped.left, rect_dest_clipped.top, rect_dest_clipped.left, rect_dest_clipped.top,
...@@ -752,7 +752,7 @@ void UpdateRects( vout_thread_t *p_vout, bool b_force ) ...@@ -752,7 +752,7 @@ void UpdateRects( vout_thread_t *p_vout, bool b_force )
} }
#endif #endif
#if 0 #ifndef NDEBUG
msg_Dbg( p_vout, "DirectXUpdateRects image_src_clipped" msg_Dbg( p_vout, "DirectXUpdateRects image_src_clipped"
" coords: %i,%i,%i,%i", " coords: %i,%i,%i,%i",
rect_src_clipped.left, rect_src_clipped.top, rect_src_clipped.left, rect_src_clipped.top,
......
...@@ -688,8 +688,8 @@ static int GAPILockSurface( vout_thread_t *p_vout, picture_t *p_pic ) ...@@ -688,8 +688,8 @@ static int GAPILockSurface( vout_thread_t *p_vout, picture_t *p_pic )
return VLC_EGENERIC; return VLC_EGENERIC;
} }
#if 0 #ifndef NDEBUG
msg_Err( p_vout, "video (%d,%d,%d,%d) display (%d,%d,%d,%d) " msg_Dbg( p_vout, "video (%d,%d,%d,%d) display (%d,%d,%d,%d) "
"dest (%d,%d,%d,%d)", "dest (%d,%d,%d,%d)",
video_rect.left, video_rect.right, video_rect.left, video_rect.right,
video_rect.top, video_rect.bottom, video_rect.top, video_rect.bottom,
...@@ -701,7 +701,7 @@ static int GAPILockSurface( vout_thread_t *p_vout, picture_t *p_pic ) ...@@ -701,7 +701,7 @@ static int GAPILockSurface( vout_thread_t *p_vout, picture_t *p_pic )
if( !(p_dest = GXBeginDraw()) ) if( !(p_dest = GXBeginDraw()) )
{ {
#if 0 #ifndef NDEBUG
msg_Err( p_vout, "GXBeginDraw error %d ", GetLastError() ); msg_Err( p_vout, "GXBeginDraw error %d ", GetLastError() );
#endif #endif
return VLC_EGENERIC; return VLC_EGENERIC;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment