Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
6da8c603
Commit
6da8c603
authored
Jan 02, 2003
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetic.
parent
cba9544f
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
19 deletions
+14
-19
extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
+1
-6
extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
...s/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
+0
-0
modules/demux/util/sub.h
modules/demux/util/sub.h
+2
-2
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+2
-2
modules/misc/network/ipv4.c
modules/misc/network/ipv4.c
+4
-4
modules/misc/sap.c
modules/misc/sap.c
+2
-2
src/misc/modules.c
src/misc/modules.c
+3
-3
No files found.
extras/MacOSX/Resources/English.lproj/MainMenu.nib/info.nib
View file @
6da8c603
...
...
@@ -7,17 +7,12 @@
<key>
IBEditorPositions
</key>
<dict>
<key>
29
</key>
<string>
333 594
308 44 0 0 1152 746
</string>
<string>
266 466
308 44 0 0 1152 746
</string>
<key>
303
</key>
<string>
93 566 72 114 0 0 1600 1178
</string>
</dict>
<key>
IBFramework Version
</key>
<string>
291.0
</string>
<key>
IBOpenObjects
</key>
<array>
<integer>
29
</integer>
<integer>
636
</integer>
</array>
<key>
IBSystem Version
</key>
<string>
6G30
</string>
</dict>
...
...
extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib
View file @
6da8c603
No preview for this file type
modules/demux/util/sub.h
View file @
6da8c603
...
...
@@ -2,7 +2,7 @@
* sub.h
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: sub.h,v 1.
1 2002/11/15 18:10:26 fenrir
Exp $
* $Id: sub.h,v 1.
2 2003/01/02 23:50:55 massiot
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -144,7 +144,7 @@ static inline
}
else
{
msg_
Err
(
p_input
,
"failed to start subtitle demux"
);
msg_
Warn
(
p_input
,
"failed to start subtitle demux"
);
if
(
p_sub
->
p_module
)
{
module_Unneed
(
p_sub
,
p_sub
->
p_module
);
...
...
modules/gui/macosx/intf.m
View file @
6da8c603
...
...
@@ -2,7 +2,7 @@
* intf.m: MacOS X interface plugin
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: intf.m,v 1.1
5 2003/01/02 23:09:30
massiot Exp $
* $Id: intf.m,v 1.1
6 2003/01/02 23:50:55
massiot Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Christophe Massiot <massiot@via.ecp.fr>
...
...
@@ -218,7 +218,7 @@ static void Run( intf_thread_t *p_intf )
[
o_mi_stop
setTitle
:
_NS
(
"Stop"
)];
[
o_mi_faster
setTitle
:
_NS
(
"Faster"
)];
[
o_mi_slower
setTitle
:
_NS
(
"Slower"
)];
[
o_mi_previous
setTitle
:
_NS
(
"Prev"
)];
[
o_mi_previous
setTitle
:
_NS
(
"Prev
ious
"
)];
[
o_mi_next
setTitle
:
_NS
(
"Next"
)];
[
o_mi_loop
setTitle
:
_NS
(
"Loop"
)];
[
o_mi_vol_up
setTitle
:
_NS
(
"Louder"
)];
...
...
modules/misc/network/ipv4.c
View file @
6da8c603
...
...
@@ -2,7 +2,7 @@
* ipv4.c: IPv4 network abstraction layer
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: ipv4.c,v 1.1
0 2002/12/16 16:48:04 gbazin
Exp $
* $Id: ipv4.c,v 1.1
1 2003/01/02 23:50:55 massiot
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Mathias Kretschmer <mathias@research.att.com>
...
...
@@ -319,10 +319,10 @@ static int OpenUDP( vlc_object_t * p_this, network_socket_t * p_socket )
(
char
*
)
&
imr
,
sizeof
(
struct
ip_mreq
)
)
==
-
1
)
{
#ifdef HAVE_ERRNO_H
msg_
Err
(
p_this
,
"failed to join IP multicast group (%s)"
,
strerror
(
errno
)
);
msg_
Warn
(
p_this
,
"failed to join IP multicast group (%s)"
,
strerror
(
errno
)
);
#else
msg_
Err
(
p_this
,
"failed to join IP multicast group"
);
msg_
Warn
(
p_this
,
"failed to join IP multicast group"
);
#endif
#if defined( WIN32 ) || defined( UNDER_CE )
closesocket
(
i_handle
);
...
...
modules/misc/sap.c
View file @
6da8c603
...
...
@@ -2,7 +2,7 @@
* sap.c : SAP interface module
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: sap.c,v 1.
5 2002/12/10 00:02:29 gitan
Exp $
* $Id: sap.c,v 1.
6 2003/01/02 23:50:55 massiot
Exp $
*
* Authors: Arnaud Schauly <gitan@via.ecp.fr>
*
...
...
@@ -186,7 +186,7 @@ static void Run( intf_thread_t *p_intf )
if
(
!
(
p_network
=
module_Need
(
p_intf
,
"network"
,
psz_network
)
)
)
{
msg_
Err
(
p_intf
,
"failed to open a connection (udp)"
);
msg_
Warn
(
p_intf
,
"failed to open a connection (udp)"
);
return
;
}
module_Unneed
(
p_intf
,
p_network
);
...
...
src/misc/modules.c
View file @
6da8c603
...
...
@@ -2,7 +2,7 @@
* modules.c : Builtin and plugin modules management functions
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: modules.c,v 1.10
8 2002/12/13 01:56:30 gbazin
Exp $
* $Id: modules.c,v 1.10
9 2003/01/02 23:50:55 massiot
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Ethan C. Baldridge <BaldridgeE@cadmus.com>
...
...
@@ -496,8 +496,8 @@ module_t * __module_Need( vlc_object_t *p_this, const char *psz_capability,
}
else
if
(
psz_name
!=
NULL
&&
*
psz_name
)
{
msg_
Err
(
p_this
,
"no %s module matching
\"
%s
\"
could be loaded"
,
psz_capability
,
(
psz_name
&&
*
psz_name
)
?
psz_name
:
"any"
);
msg_
Warn
(
p_this
,
"no %s module matching
\"
%s
\"
could be loaded"
,
psz_capability
,
(
psz_name
&&
*
psz_name
)
?
psz_name
:
"any"
);
}
if
(
psz_shortcuts
)
...
...
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