]> git.sesse.net Git - vlc/commitdiff
* added network to the list of the plugins directories in Makefile
authorGildas Bazin <gbazin@videolan.org>
Sun, 3 Mar 2002 20:42:21 +0000 (20:42 +0000)
committerGildas Bazin <gbazin@videolan.org>
Sun, 3 Mar 2002 20:42:21 +0000 (20:42 +0000)
* small bugfixes

Makefile
plugins/x11/xcommon.c
src/input/input_programs.c
src/video_output/video_output.c

index 8a40af987f728d96e87dacee6a87a4e35557893b..1b94c638c39520405b2f5b81fea78051c82fd13f 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -47,6 +47,7 @@ PLUGINS_DIR :=        ac3_adec \
                mpeg_system \
                mpeg_adec \
                mpeg_vdec \
+               network \
                qnx \
                qt \
                sdl \
index 107d0dc7bee5addb02ac9a2799734473e8a055d7..b31695f957be4a6f5771a1b42d847373f0d4d2e8 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.19 2002/02/24 20:51:10 gbazin Exp $
+ * $Id: xcommon.c,v 1.20 2002/03/03 20:42:21 gbazin Exp $
  *
  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  *          Samuel Hocevar <sam@zoy.org>
@@ -344,6 +344,7 @@ static int vout_Create( vout_thread_t *p_vout )
 #endif
 
     /* Create blank cursor (for mouse cursor autohiding) */
+    p_vout->p_sys->i_time_mouse_last_moved = mdate();
     p_vout->p_sys->b_mouse_pointer_visible = 1;
     CreateCursor( p_vout );
 
index 9d4c23593e338d98bc232af3fc1906b4805baed4..f3585c03bb07535bedb31b177e6ce449348e5fc3 100644 (file)
@@ -2,7 +2,7 @@
  * input_programs.c: es_descriptor_t, pgrm_descriptor_t management
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
- * $Id: input_programs.c,v 1.71 2002/02/19 00:50:19 sam Exp $
+ * $Id: input_programs.c,v 1.72 2002/03/03 20:42:21 gbazin Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -535,6 +535,8 @@ int input_SelectES( input_thread_t * p_input, es_descriptor_t * p_es )
         return( -1 );
     }
 
+    p_es->thread_id = 0;
+
     switch( p_es->i_type )
     {
     case AC3_AUDIO_ES:
index 88e4c6870c7e1f0d3e8ad960cbc454766087c701..9b2feff3fa3f2bf5144c1af4eea583c783066ca6 100644 (file)
@@ -5,7 +5,7 @@
  * thread, and destroy a previously oppened video output thread.
  *****************************************************************************
  * Copyright (C) 2000-2001 VideoLAN
- * $Id: video_output.c,v 1.163 2002/03/01 00:33:18 massiot Exp $
+ * $Id: video_output.c,v 1.164 2002/03/03 20:42:21 gbazin Exp $
  *
  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  *
@@ -151,6 +151,7 @@ vout_thread_t * vout_CreateThread   ( int *pi_status,
     p_vout->b_scale      = 1;
     p_vout->b_fullscreen = 0;
     p_vout->render_time  = 10;
+    p_vout->c_fps_samples= 0;
 
     /* user requested fullscreen? */
     if( config_GetIntVariable( VOUT_FULLSCREEN_VAR ) )