In the latest nightly there is this code in live555.cpp:
Code: Select all
/* Retrieve the timeout value and set up a timeout prevention thread */
p_sys->i_timeout = p_sys->rtsp->sessionTimeoutParameter();
if( p_sys->i_timeout <= 0 )
p_sys->i_timeout = 60; /* default value from RFC2326 */
if( !p_sys->p_timeout )
{
....
Code: Select all
/* Retrieve the timeout value and set up a timeout prevention thread */
#if LIVEMEDIA_LIBRARY_VERSION_INT >= 1138089600
p_sys->i_timeout = p_sys->rtsp->sessionTimeoutParameter();
#endif
//if( p_sys->i_timeout <= 0 )
// p_sys->i_timeout = 60; /* default value from RFC2326 */
//if( !p_sys->p_timeout )
if( p_sys->i_timeout > 0 && !p_sys->p_timeout )
{
...
Cheers!