Commit 87423359 authored by Pierre Ynard's avatar Pierre Ynard

rtp sout: refactor muxed case handling

This will allow to clean up multicast parameters
parent 3f9e7e3f
...@@ -543,8 +543,6 @@ static int Open( vlc_object_t *p_this ) ...@@ -543,8 +543,6 @@ static int Open( vlc_object_t *p_this )
psz = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "mux" ); psz = var_GetNonEmptyString( p_stream, SOUT_CFG_PREFIX "mux" );
if( psz != NULL ) if( psz != NULL )
{ {
sout_stream_id_t *id;
/* Check muxer type */ /* Check muxer type */
if( strncasecmp( psz, "ps", 2 ) if( strncasecmp( psz, "ps", 2 )
&& strncasecmp( psz, "mpeg1", 5 ) && strncasecmp( psz, "mpeg1", 5 )
...@@ -578,20 +576,6 @@ static int Open( vlc_object_t *p_this ) ...@@ -578,20 +576,6 @@ static int Open( vlc_object_t *p_this )
return VLC_EGENERIC; return VLC_EGENERIC;
} }
id = Add( p_stream, NULL );
if( id == NULL )
{
sout_MuxDelete( p_sys->p_mux );
sout_AccessOutDelete( p_sys->p_grab );
vlc_mutex_destroy( &p_sys->lock_sdp );
vlc_mutex_destroy( &p_sys->lock_ts );
vlc_mutex_destroy( &p_sys->lock_es );
free( p_sys->psz_vod_session );
free( p_sys->psz_destination );
free( p_sys );
return VLC_EGENERIC;
}
p_sys->packet = NULL; p_sys->packet = NULL;
p_stream->pf_add = MuxAdd; p_stream->pf_add = MuxAdd;
...@@ -638,6 +622,16 @@ static int Open( vlc_object_t *p_this ) ...@@ -638,6 +622,16 @@ static int Open( vlc_object_t *p_this )
/* update p_sout->i_out_pace_nocontrol */ /* update p_sout->i_out_pace_nocontrol */
p_stream->p_sout->i_out_pace_nocontrol++; p_stream->p_sout->i_out_pace_nocontrol++;
if( p_sys->p_mux != NULL )
{
sout_stream_id_t *id = Add( p_stream, NULL );
if( id == NULL )
{
Close( p_this );
return VLC_EGENERIC;
}
}
return VLC_SUCCESS; return VLC_SUCCESS;
} }
...@@ -654,9 +648,10 @@ static void Close( vlc_object_t * p_this ) ...@@ -654,9 +648,10 @@ static void Close( vlc_object_t * p_this )
if( p_sys->p_mux ) if( p_sys->p_mux )
{ {
assert( p_sys->i_es == 1 ); assert( p_sys->i_es <= 1 );
sout_MuxDelete( p_sys->p_mux ); sout_MuxDelete( p_sys->p_mux );
if ( p_sys->i_es > 0 )
Del( p_stream, p_sys->es[0] ); Del( p_stream, p_sys->es[0] );
sout_AccessOutDelete( p_sys->p_grab ); sout_AccessOutDelete( p_sys->p_grab );
...@@ -664,11 +659,6 @@ static void Close( vlc_object_t * p_this ) ...@@ -664,11 +659,6 @@ static void Close( vlc_object_t * p_this )
{ {
block_Release( p_sys->packet ); block_Release( p_sys->packet );
} }
if( p_sys->b_export_sap )
{
p_sys->p_mux = NULL;
SapSetup( p_stream );
}
} }
if( p_sys->rtsp != NULL ) if( p_sys->rtsp != NULL )
...@@ -728,22 +718,9 @@ static void SDPHandleUrl( sout_stream_t *p_stream, const char *psz_url ) ...@@ -728,22 +718,9 @@ static void SDPHandleUrl( sout_stream_t *p_stream, const char *psz_url )
goto out; goto out;
} }
/* FIXME test if destination is multicast or no destination at all */
p_sys->rtsp = RtspSetup( VLC_OBJECT(p_stream), NULL, &url ); p_sys->rtsp = RtspSetup( VLC_OBJECT(p_stream), NULL, &url );
if( p_sys->rtsp == NULL ) if( p_sys->rtsp == NULL )
msg_Err( p_stream, "cannot export SDP as RTSP" ); msg_Err( p_stream, "cannot export SDP as RTSP" );
else
if( p_sys->p_mux != NULL )
{
sout_stream_id_t *id = p_sys->es[0];
rtsp_stream_id_t *rtsp_id = RtspAddId( p_sys->rtsp, id,
GetDWBE( id->ssrc ), id->rtp_fmt.clock_rate,
p_sys->psz_destination, p_sys->i_ttl,
id->i_port, id->i_port + 1 );
vlc_mutex_lock( &p_sys->lock_es );
id->rtsp_id = rtsp_id;
vlc_mutex_unlock( &p_sys->lock_es );
}
} }
else if( ( url.psz_protocol && !strcasecmp( url.psz_protocol, "sap" ) ) || else if( ( url.psz_protocol && !strcasecmp( url.psz_protocol, "sap" ) ) ||
( url.psz_host && !strcasecmp( url.psz_host, "sap" ) ) ) ( url.psz_host && !strcasecmp( url.psz_host, "sap" ) ) )
...@@ -1246,7 +1223,7 @@ static int Del( sout_stream_t *p_stream, sout_stream_id_t *id ) ...@@ -1246,7 +1223,7 @@ static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
vlc_mutex_destroy( &id->lock_sink ); vlc_mutex_destroy( &id->lock_sink );
/* Update SDP (sap/file) */ /* Update SDP (sap/file) */
if( p_sys->b_export_sap && !p_sys->p_mux ) SapSetup( p_stream ); if( p_sys->b_export_sap ) SapSetup( p_stream );
if( p_sys->psz_sdp_file != NULL ) FileSetup( p_stream ); if( p_sys->psz_sdp_file != NULL ) FileSetup( p_stream );
free( id ); free( id );
...@@ -1297,7 +1274,7 @@ static int SapSetup( sout_stream_t *p_stream ) ...@@ -1297,7 +1274,7 @@ static int SapSetup( sout_stream_t *p_stream )
p_sys->p_session = NULL; p_sys->p_session = NULL;
} }
if( ( p_sys->i_es > 0 || p_sys->p_mux ) && p_sys->psz_sdp && *p_sys->psz_sdp ) if( p_sys->i_es > 0 && p_sys->psz_sdp && *p_sys->psz_sdp )
{ {
announce_method_t *p_method = sout_SAPMethod(); announce_method_t *p_method = sout_SAPMethod();
p_sys->p_session = sout_AnnounceRegisterSDP( p_sout, p_sys->p_session = sout_AnnounceRegisterSDP( p_sout,
......
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