vlc | branch: master | Sébastien Escudier <[email protected]> | Mon Mar 21 13:08:20 2011 +0100| [10c9d9e9ccb6f79f15eae2011435279ff24143f0] | committer: Sébastien Escudier
rtsp-tcp variable needs to be created > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=10c9d9e9ccb6f79f15eae2011435279ff24143f0 --- modules/demux/live555.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/modules/demux/live555.cpp b/modules/demux/live555.cpp index 9bf7359..a09c2c0 100644 --- a/modules/demux/live555.cpp +++ b/modules/demux/live555.cpp @@ -697,7 +697,7 @@ static int SessionsSetup( demux_t *p_demux ) unsigned int i_buffer = 0; 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" ); i_client_port = var_InheritInteger( p_demux, "rtp-client-port" ); _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
