Commit 7295811a authored by Rémi Duraffort's avatar Rémi Duraffort

Cleaning.

parent 194c86f1
...@@ -243,7 +243,7 @@ static int Open ( vlc_object_t *p_this ) ...@@ -243,7 +243,7 @@ static int Open ( vlc_object_t *p_this )
demux_t *p_demux = (demux_t*)p_this; demux_t *p_demux = (demux_t*)p_this;
demux_sys_t *p_sys = NULL; demux_sys_t *p_sys = NULL;
int i, i_return; int i_return;
int i_error = VLC_EGENERIC; int i_error = VLC_EGENERIC;
if( p_demux->s ) if( p_demux->s )
...@@ -518,13 +518,11 @@ createnew: ...@@ -518,13 +518,11 @@ createnew:
} }
describe: describe:
authenticator.setUsernameAndPassword( (const char*)psz_user, authenticator.setUsernameAndPassword( psz_user, psz_pwd );
(const char*)psz_pwd );
/* */ /* */
const int i_timeout = var_CreateGetInteger(p_demux, "ipv4-timeout") / 1000;
#if LIVEMEDIA_LIBRARY_VERSION_INT >= 1223337600 #if LIVEMEDIA_LIBRARY_VERSION_INT >= 1223337600
const int i_timeout = var_CreateGetInteger(p_demux, "ipv4-timeout") / 1000;
psz_options = p_sys->rtsp->sendOptionsCmd( psz_url, psz_user, psz_pwd, psz_options = p_sys->rtsp->sendOptionsCmd( psz_url, psz_user, psz_pwd,
&authenticator, i_timeout ); &authenticator, i_timeout );
#else #else
...@@ -599,10 +597,8 @@ describe: ...@@ -599,10 +597,8 @@ describe:
else if( (i_code != 0) && !var_GetBool( p_demux, "rtsp-http" ) ) else if( (i_code != 0) && !var_GetBool( p_demux, "rtsp-http" ) )
{ {
/* Perhaps a firewall is being annoying. Try HTTP tunneling mode */ /* Perhaps a firewall is being annoying. Try HTTP tunneling mode */
vlc_value_t val;
val.b_bool = true;
msg_Dbg( p_demux, "we will now try HTTP tunneling mode" ); msg_Dbg( p_demux, "we will now try HTTP tunneling mode" );
var_Set( p_demux, "rtsp-http", val ); var_SetBool( p_demux, "rtsp-http", true );
if( p_sys->rtsp ) RTSPClient::close( p_sys->rtsp ); if( p_sys->rtsp ) RTSPClient::close( p_sys->rtsp );
p_sys->rtsp = NULL; p_sys->rtsp = NULL;
goto createnew; goto createnew;
......
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