Skip to content
Snippets Groups Projects
Commit 0fa97d87 authored by Lyndon Brown's avatar Lyndon Brown
Browse files

rtp: set range for --sout-rtp-ttl

(to set lower bound).
parent 85e6c979
No related branches found
No related tags found
No related merge requests found
Pipeline #179836 passed with stage
in 17 minutes and 35 seconds
......@@ -70,6 +70,7 @@
#include <ctype.h>
#include <errno.h>
#include <assert.h>
#include <limits.h>
/*****************************************************************************
* Module descriptor
......@@ -211,6 +212,7 @@ vlc_module_begin ()
add_integer( SOUT_CFG_PREFIX "ttl", -1, TTL_TEXT,
TTL_LONGTEXT )
change_integer_range( -1, INT_MAX )
add_bool( SOUT_CFG_PREFIX "rtcp-mux", false,
RTCP_MUX_TEXT, RTCP_MUX_LONGTEXT )
add_integer( SOUT_CFG_PREFIX "caching", MS_FROM_VLC_TICK(DEFAULT_PTS_DELAY),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment