[vlc-devel] commit: Removed debug messages. (Laurent Aimar )
git version control
git at videolan.org
Sat Jun 6 01:06:34 CEST 2009
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Sat Jun 6 01:06:09 2009 +0200| [bc629a4ab7c863f5b33d326d073cbcac0484b37d] | committer: Laurent Aimar
Removed debug messages.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=bc629a4ab7c863f5b33d326d073cbcac0484b37d
---
modules/video_filter/logo.c | 3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/modules/video_filter/logo.c b/modules/video_filter/logo.c
index a3fce92..d6028e2 100644
--- a/modules/video_filter/logo.c
+++ b/modules/video_filter/logo.c
@@ -530,13 +530,10 @@ static int Mouse( filter_t *p_filter, vlc_mouse_t *p_mouse,
else if( vlc_mouse_HasReleased( p_old, p_new, MOUSE_BUTTON_LEFT ) )
p_sys->b_mouse_grab = false;
- msg_Err( p_filter, "Mouse: %d G: %d", b_over, p_sys->b_mouse_grab );
-
if( p_sys->b_mouse_grab )
{
int i_dx, i_dy;
vlc_mouse_GetMotion( &i_dx, &i_dy, p_old, p_new );
- msg_Err( p_filter, "Mouse: d=%d:%d", i_dx, i_dy );
p_sys->i_pos_x = __MIN( __MAX( p_sys->i_pos_x + i_dx, 0 ),
p_filter->fmt_in.video.i_width - i_logo_w );
p_sys->i_pos_y = __MIN( __MAX( p_sys->i_pos_y + i_dy, 0 ),
More information about the vlc-devel
mailing list