]> git.sesse.net Git - vlc/commitdiff
* modules/video_filter/deinterlace/deinterlace.c,
authorGildas Bazin <gbazin@videolan.org>
Tue, 28 Jan 2003 13:03:13 +0000 (13:03 +0000)
committerGildas Bazin <gbazin@videolan.org>
Tue, 28 Jan 2003 13:03:13 +0000 (13:03 +0000)
  modules/video_output/x11/xcommon.c: modified debug messages.

modules/video_filter/deinterlace/deinterlace.c
modules/video_output/x11/xcommon.c

index 7e7b88d139eee7383d85ce63df4aaf73b2660ba1..0b20d9290572dd3f85b0c537bf0219a7f4dbaedd 100644 (file)
@@ -2,7 +2,7 @@
  * deinterlace.c : deinterlacer plugin for vlc
  *****************************************************************************
  * 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>
  *
@@ -198,6 +198,8 @@ static void SetFilterMethod( vout_thread_t *p_vout, char *psz_method )
         msg_Err( p_vout, "no valid deinterlace mode provided, "
                  "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,
     int i_old_mode = p_vout->p_sys->i_mode;
 
     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 );
 
index a05809d43d8e1655d7c82986816066701d201e8e..b5418778f3680e1edbfa4d538a906f5d7a1899ea 100644 (file)
@@ -2,7 +2,7 @@
  * xcommon.c: Functions common to the X11 and XVideo plugins
  *****************************************************************************
  * 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>
  *          Samuel Hocevar <sam@zoy.org>
@@ -758,10 +758,6 @@ static int ManageVideo( vout_thread_t *p_vout )
 
         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
         /* We need to signal the vout thread about the size change because it
          * is doing the rescaling */