Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
ddc7a493
Commit
ddc7a493
authored
Mar 03, 2002
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* added network to the list of the plugins directories in Makefile * small bugfixes
parent
669c712a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
3 deletions
+8
-3
Makefile
Makefile
+1
-0
plugins/x11/xcommon.c
plugins/x11/xcommon.c
+2
-1
src/input/input_programs.c
src/input/input_programs.c
+3
-1
src/video_output/video_output.c
src/video_output/video_output.c
+2
-1
No files found.
Makefile
View file @
ddc7a493
...
...
@@ -47,6 +47,7 @@ PLUGINS_DIR := ac3_adec \
mpeg_system
\
mpeg_adec
\
mpeg_vdec
\
network
\
qnx
\
qt
\
sdl
\
...
...
plugins/x11/xcommon.c
View file @
ddc7a493
...
...
@@ -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
);
...
...
src/input/input_programs.c
View file @
ddc7a493
...
...
@@ -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.7
1 2002/02/19 00:50:19 sam
Exp $
* $Id: input_programs.c,v 1.7
2 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
:
...
...
src/video_output/video_output.c
View file @
ddc7a493
...
...
@@ -5,7 +5,7 @@
* thread, and destroy a previously oppened video output thread.
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: video_output.c,v 1.16
3 2002/03/01 00:33:18 massiot
Exp $
* $Id: video_output.c,v 1.16
4 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
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment