Commit 10c9d9e9 authored by Sébastien Escudier's avatar Sébastien Escudier

rtsp-tcp variable needs to be created

parent 71119a76
...@@ -697,7 +697,7 @@ static int SessionsSetup( demux_t *p_demux ) ...@@ -697,7 +697,7 @@ static int SessionsSetup( demux_t *p_demux )
unsigned int i_buffer = 0; unsigned int i_buffer = 0;
unsigned const thresh = 200000; /* RTP reorder threshold .2 second (default .1) */ unsigned const thresh = 200000; /* RTP reorder threshold .2 second (default .1) */
b_rtsp_tcp = var_InheritBool( p_demux, "rtsp-tcp" ) || b_rtsp_tcp = var_CreateGetBool( p_demux, "rtsp-tcp" ) ||
var_InheritBool( p_demux, "rtsp-http" ); var_InheritBool( p_demux, "rtsp-http" );
i_client_port = var_InheritInteger( p_demux, "rtp-client-port" ); i_client_port = var_InheritInteger( p_demux, "rtp-client-port" );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment