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
544ad949
Commit
544ad949
authored
Dec 05, 2005
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update multicast stream output options
parent
923a1852
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
9 deletions
+10
-9
modules/misc/network/ipv4.c
modules/misc/network/ipv4.c
+0
-6
src/libvlc.h
src/libvlc.h
+10
-3
No files found.
modules/misc/network/ipv4.c
View file @
544ad949
...
...
@@ -91,11 +91,6 @@ static int OpenUDP( vlc_object_t * );
/*****************************************************************************
* Module descriptor
*****************************************************************************/
#define MIFACE_TEXT N_("Multicast output interface")
#define MIFACE_LONGTEXT N_( \
"Indicate here the multicast output interface. " \
"This overrides the routing table.")
vlc_module_begin
();
set_shortname
(
"IPv4"
);
set_description
(
_
(
"UDP/IPv4 network abstraction layer"
)
);
...
...
@@ -103,7 +98,6 @@ vlc_module_begin();
set_category
(
CAT_INPUT
);
set_subcategory
(
SUBCAT_INPUT_GENERAL
);
set_callbacks
(
OpenUDP
,
NULL
);
add_string
(
"miface-addr"
,
NULL
,
NULL
,
MIFACE_TEXT
,
MIFACE_LONGTEXT
,
VLC_TRUE
);
vlc_module_end
();
/*****************************************************************************
...
...
src/libvlc.h
View file @
544ad949
...
...
@@ -345,11 +345,16 @@ static char *ppsz_clock_descriptions[] =
"This is the maximum packet size that can be transmitted " \
"over network interface. On Ethernet it is usually 1500 bytes.")
#define TTL_TEXT N_("
Time To Live
")
#define TTL_TEXT N_("
Hop limit (TTL)
")
#define TTL_LONGTEXT N_( \
"
Indicate here the Time To Live
of the multicast packets sent by " \
"
Specify the hop limit (TTL)
of the multicast packets sent by " \
"the stream output.")
#define MIFACE_TEXT N_("Multicast output interface")
#define MIFACE_LONGTEXT N_( \
"Indicate here the multicast output interface. " \
"This overrides the routing table.")
#define INPUT_PROGRAM_TEXT N_("Program to select")
#define INPUT_PROGRAM_LONGTEXT N_( \
"Choose the program to select by giving its Service ID.\n" \
...
...
@@ -1240,7 +1245,6 @@ vlc_module_begin();
SOUT_AUDIO_LONGTEXT
,
VLC_TRUE
);
add_bool
(
"sout-video"
,
1
,
NULL
,
SOUT_VIDEO_TEXT
,
SOUT_VIDEO_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"ttl"
,
1
,
NULL
,
TTL_TEXT
,
TTL_LONGTEXT
,
VLC_TRUE
);
set_subcategory
(
SUBCAT_SOUT_STREAM
);
set_subcategory
(
SUBCAT_SOUT_MUX
);
...
...
@@ -1249,6 +1253,9 @@ vlc_module_begin();
set_subcategory
(
SUBCAT_SOUT_ACO
);
add_module
(
"access_output"
,
"sout access"
,
NULL
,
NULL
,
ACCESS_OUTPUT_TEXT
,
ACCESS_OUTPUT_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"ttl"
,
1
,
NULL
,
TTL_TEXT
,
TTL_LONGTEXT
,
VLC_TRUE
);
add_string
(
"miface-addr"
,
NULL
,
NULL
,
MIFACE_TEXT
,
MIFACE_LONGTEXT
,
VLC_TRUE
);
set_subcategory
(
SUBCAT_SOUT_PACKETIZER
);
add_module
(
"packetizer"
,
"packetizer"
,
NULL
,
NULL
,
PACKETIZER_TEXT
,
PACKETIZER_LONGTEXT
,
VLC_TRUE
);
...
...
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