Commit bc55afb5 authored by Ilkka Ollakka's avatar Ilkka Ollakka

GET_PARAMETERS doesn't seem to work so well agains DSS 5.5.4,

SET_PARAMETERS works agains DSS 5.5.4 and WMS 2003. WMS2003 doesn't
accept empty parameter/value pair, so have to set something.
parent 31c0f525
...@@ -978,8 +978,7 @@ static int Demux( demux_t *p_demux ) ...@@ -978,8 +978,7 @@ static int Demux( demux_t *p_demux )
/* Check if we need to send the server a Keep-A-Live signal */ /* Check if we need to send the server a Keep-A-Live signal */
if( p_sys->b_timeout_call && p_sys->rtsp && p_sys->ms ) if( p_sys->b_timeout_call && p_sys->rtsp && p_sys->ms )
{ {
char *psz_bye = NULL; p_sys->rtsp->setMediaSessionParameter( *p_sys->ms, "vlc" , "1" );
p_sys->rtsp->getMediaSessionParameter( *p_sys->ms, NULL, psz_bye );
p_sys->b_timeout_call = VLC_FALSE; p_sys->b_timeout_call = VLC_FALSE;
} }
......
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