Commit cdef0915 authored by Gildas Bazin's avatar Gildas Bazin

* modules/video_filter/deinterlace/deinterlace.c,
  modules/video_output/x11/xcommon.c: modified debug messages.
parent f6015e93
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* deinterlace.c : deinterlacer plugin for vlc * deinterlace.c : deinterlacer plugin for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2000, 2001, 2002, 2003 VideoLAN * Copyright (C) 2000, 2001, 2002, 2003 VideoLAN
* $Id: deinterlace.c,v 1.7 2003/01/28 12:30:44 gbazin Exp $ * $Id: deinterlace.c,v 1.8 2003/01/28 13:03:13 gbazin Exp $
* *
* Authors: Samuel Hocevar <sam@zoy.org> * Authors: Samuel Hocevar <sam@zoy.org>
* *
...@@ -198,6 +198,8 @@ static void SetFilterMethod( vout_thread_t *p_vout, char *psz_method ) ...@@ -198,6 +198,8 @@ static void SetFilterMethod( vout_thread_t *p_vout, char *psz_method )
msg_Err( p_vout, "no valid deinterlace mode provided, " msg_Err( p_vout, "no valid deinterlace mode provided, "
"using \"discard\"" ); "using \"discard\"" );
} }
msg_Dbg( p_vout, "using %s deinterlace method", psz_method );
} }
/***************************************************************************** /*****************************************************************************
...@@ -727,7 +729,6 @@ static int FilterCallback( vlc_object_t *p_this, char const *psz_cmd, ...@@ -727,7 +729,6 @@ static int FilterCallback( vlc_object_t *p_this, char const *psz_cmd,
int i_old_mode = p_vout->p_sys->i_mode; int i_old_mode = p_vout->p_sys->i_mode;
vlc_mutex_lock( &p_vout->p_sys->filter_lock ); vlc_mutex_lock( &p_vout->p_sys->filter_lock );
msg_Err( p_vout, "filter method: %s", newval.psz_string );
SetFilterMethod( p_vout, newval.psz_string ); SetFilterMethod( p_vout, newval.psz_string );
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* xcommon.c: Functions common to the X11 and XVideo plugins * xcommon.c: Functions common to the X11 and XVideo plugins
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2001 VideoLAN * Copyright (C) 1998-2001 VideoLAN
* $Id: xcommon.c,v 1.10 2003/01/15 13:48:14 sam Exp $ * $Id: xcommon.c,v 1.11 2003/01/28 13:03:13 gbazin Exp $
* *
* Authors: Vincent Seguin <seguin@via.ecp.fr> * Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org> * Samuel Hocevar <sam@zoy.org>
...@@ -758,10 +758,6 @@ static int ManageVideo( vout_thread_t *p_vout ) ...@@ -758,10 +758,6 @@ static int ManageVideo( vout_thread_t *p_vout )
p_vout->i_changes &= ~VOUT_SIZE_CHANGE; p_vout->i_changes &= ~VOUT_SIZE_CHANGE;
msg_Dbg( p_vout, "video display resized (%dx%d)",
p_vout->p_sys->p_win->i_width,
p_vout->p_sys->p_win->i_height );
#ifdef MODULE_NAME_IS_x11 #ifdef MODULE_NAME_IS_x11
/* We need to signal the vout thread about the size change because it /* We need to signal the vout thread about the size change because it
* is doing the rescaling */ * is doing the rescaling */
......
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