Commit ddc7a493 authored by Gildas Bazin's avatar Gildas Bazin


* added network to the list of the plugins directories in Makefile
* small bugfixes
parent 669c712a
......@@ -47,6 +47,7 @@ PLUGINS_DIR := ac3_adec \
mpeg_system \
mpeg_adec \
mpeg_vdec \
network \
qnx \
qt \
sdl \
......
......@@ -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 );
......
......@@ -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:
......
......@@ -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 ) )
......
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