Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
73092d77
Commit
73092d77
authored
Mar 12, 2003
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./src/stream_output/stream_output.c: Win32 compilation fix.
* ./src/misc/modules.c: fixed a pointer indirection bug.
parent
a5abccd4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
10 deletions
+10
-10
src/input/input_programs.c
src/input/input_programs.c
+2
-2
src/misc/modules.c
src/misc/modules.c
+3
-3
src/misc/netutils.c
src/misc/netutils.c
+2
-2
src/stream_output/stream_output.c
src/stream_output/stream_output.c
+3
-3
No files found.
src/input/input_programs.c
View file @
73092d77
...
...
@@ -2,7 +2,7 @@
* input_programs.c: es_descriptor_t, pgrm_descriptor_t management
*****************************************************************************
* Copyright (C) 1999-2002 VideoLAN
* $Id: input_programs.c,v 1.10
2 2003/03/11 23:56:54 gbazin
Exp $
* $Id: input_programs.c,v 1.10
3 2003/03/12 05:26:46 sam
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -753,7 +753,7 @@ static int ProgramCallback( vlc_object_t *p_this, char const *psz_cmd,
if
(
(
newval
.
i_int
>
0
)
)
{
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
input_ChangeProgram
(
p_input
,
newval
.
i_int
);
input_ChangeProgram
(
p_input
,
(
uint16_t
)
newval
.
i_int
);
input_SetStatus
(
p_input
,
INPUT_STATUS_PLAY
);
vlc_mutex_lock
(
&
p_input
->
stream
.
stream_lock
);
}
...
...
src/misc/modules.c
View file @
73092d77
...
...
@@ -2,7 +2,7 @@
* modules.c : Builtin and plugin modules management functions
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: modules.c,v 1.11
5 2003/03/03 16:49:14 gbazin
Exp $
* $Id: modules.c,v 1.11
6 2003/03/12 05:26:46 sam
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Ethan C. Baldridge <BaldridgeE@cadmus.com>
...
...
@@ -586,9 +586,9 @@ static void AllocateAllPlugins( vlc_object_t *p_this )
/* Under BeOS, we need to add beos_GetProgramPath() to access
* files under the current directory */
#ifdef WIN32
if
(
i_dirlen
<
3
||
ppsz_path
[
3
]
!=
'\\'
)
if
(
i_dirlen
<
3
||
(
*
ppsz_path
)
[
3
]
!=
'\\'
)
#else
if
(
ppsz_path
[
0
]
!=
'/'
)
if
(
(
*
ppsz_path
)
[
0
]
!=
'/'
)
#endif
{
i_dirlen
+=
i_vlclen
+
2
;
...
...
src/misc/netutils.c
View file @
73092d77
...
...
@@ -2,7 +2,7 @@
* netutils.c: various network functions
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: netutils.c,v 1.8
0 2003/03/03 14:21:08 gbazin
Exp $
* $Id: netutils.c,v 1.8
1 2003/03/12 05:26:46 sam
Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Benoit Steiner <benny@via.ecp.fr>
...
...
@@ -243,7 +243,7 @@ int __network_ChannelJoin( vlc_object_t *p_this, int i_channel )
/* Build the message */
sprintf
(
psz_mess
,
"%d %u %lu %s
\n
"
,
i_channel
,
VLCS_VERSION
,
(
unsigned
long
)(
mdate
()
/
(
u
64
)
1000000
),
(
unsigned
long
)(
mdate
()
/
(
u
int64_t
)
1000000
),
psz_mac
);
/* Send the message */
...
...
src/stream_output/stream_output.c
View file @
73092d77
...
...
@@ -2,7 +2,7 @@
* stream_output.c : stream output module
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: stream_output.c,v 1.
19 2003/03/11 21:52:05 fenrir
Exp $
* $Id: stream_output.c,v 1.
20 2003/03/12 05:26:46 sam
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Laurent Aimar <fenrir@via.ecp.fr>
...
...
@@ -1183,8 +1183,8 @@ static int mrl_Parse( mrl_t *p_mrl, char *psz_mrl )
#if defined( WIN32 ) || defined( UNDER_CE )
if
(
psz_parser
-
psz_dup
==
1
)
{
msg_Warn
(
p_sout
,
"drive letter %c: found in source string"
,
*
psz_dup
)
;
/*
msg_Warn( p_sout, "drive letter %c: found in source string",
*psz_dup ) ;
*/
psz_parser
=
""
;
}
#endif
...
...
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