Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
b196e281
Commit
b196e281
authored
Mar 29, 2002
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disabled the server argument in udpstream: because it confuses users and is
not of any practical use.
parent
5c07e45d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
4 deletions
+16
-4
plugins/access/udp.c
plugins/access/udp.c
+14
-1
src/interface/main.c
src/interface/main.c
+2
-3
No files found.
plugins/access/udp.c
View file @
b196e281
...
...
@@ -2,7 +2,7 @@
* udp.c: raw UDP access plug-in
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: udp.c,v 1.
6 2002/03/27 22:15:40
massiot Exp $
* $Id: udp.c,v 1.
7 2002/03/29 00:14:19
massiot Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -231,6 +231,19 @@ static int UDPOpen( input_thread_t * p_input )
p_input
->
stream
.
p_selected_area
->
i_tell
=
0
;
p_input
->
stream
.
i_method
=
INPUT_METHOD_NETWORK
;
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
if
(
*
psz_server_addr
||
i_server_port
)
{
intf_ErrMsg
(
"input warning: this UDP syntax is deprecated ; the server argument will be"
);
intf_ErrMsg
(
"ignored (%s:%d). If you wanted to enter a multicast address"
,
psz_server_addr
,
i_server_port
);
intf_ErrMsg
(
"or local port, type : %s:@%s:%d"
,
*
p_input
->
psz_access
?
p_input
->
psz_access
:
"udp"
,
psz_server_addr
,
i_server_port
);
i_server_port
=
0
;
psz_server_addr
=
""
;
}
intf_WarnMsg
(
2
,
"input: opening server=%s:%d local=%s:%d"
,
psz_server_addr
,
i_server_port
,
psz_bind_addr
,
i_bind_port
);
...
...
src/interface/main.c
View file @
b196e281
...
...
@@ -4,7 +4,7 @@
* and spawn threads.
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: main.c,v 1.17
2 2002/03/28 21:21:51
massiot Exp $
* $Id: main.c,v 1.17
3 2002/03/29 00:14:19
massiot Exp $
*
* Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org>
...
...
@@ -936,8 +936,7 @@ static void Usage( const char *psz_module_name )
"
\n
\t
DVD device"
"
\n
[vcd:][device][@[title][,[chapter]]"
"
\n
\t
VCD device"
"
\n
udpstream:[<server>[:<server port>]][@[<bind address>]"
"[:<bind port>]]"
"
\n
udpstream:[@[<bind address>][:<bind port>]]"
"
\n
\t
UDP stream sent by VLS"
"
\n
vlc:loop
\t
Loop execution of the "
"playlist"
...
...
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