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
b6cec887
Commit
b6cec887
authored
Dec 11, 2009
by
Pierre Ynard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rtp sout: add missing caching option
It was already used in the code...
parent
bfc6b198
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
modules/stream_out/rtp.c
modules/stream_out/rtp.c
+8
-1
No files found.
modules/stream_out/rtp.c
View file @
b6cec887
...
...
@@ -129,6 +129,11 @@
"This sends and receives RTCP packet multiplexed over the same port " \
"as RTP packets." )
#define CACHING_TEXT N_("Caching value (ms)")
#define CACHING_LONGTEXT N_( \
"Default caching value for outbound RTP streams. This " \
"value should be set in milliseconds." )
#define PROTO_TEXT N_("Transport protocol")
#define PROTO_LONGTEXT N_( \
"This selects which transport protocol to use for RTP." )
...
...
@@ -202,6 +207,8 @@ vlc_module_begin ()
TTL_LONGTEXT
,
true
)
add_bool
(
SOUT_CFG_PREFIX
"rtcp-mux"
,
false
,
NULL
,
RTCP_MUX_TEXT
,
RTCP_MUX_LONGTEXT
,
false
)
add_integer
(
SOUT_CFG_PREFIX
"caching"
,
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
true
)
#ifdef HAVE_SRTP
add_string
(
SOUT_CFG_PREFIX
"key"
,
""
,
NULL
,
...
...
@@ -222,7 +229,7 @@ vlc_module_end ()
static
const
char
*
const
ppsz_sout_options
[]
=
{
"dst"
,
"name"
,
"port"
,
"port-audio"
,
"port-video"
,
"*sdp"
,
"ttl"
,
"mux"
,
"sap"
,
"description"
,
"url"
,
"email"
,
"phone"
,
"proto"
,
"rtcp-mux"
,
"key"
,
"salt"
,
"proto"
,
"rtcp-mux"
,
"
caching"
,
"
key"
,
"salt"
,
"mp4a-latm"
,
NULL
};
...
...
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