Commit 06abc54a authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Use a single table with a single index for tracks for each session

parent a593a913
...@@ -134,6 +134,8 @@ struct rtsp_stream_id_t ...@@ -134,6 +134,8 @@ struct rtsp_stream_id_t
}; };
typedef struct rtsp_strack_t rtsp_strack_t;
/* For unicast streaming */ /* For unicast streaming */
struct rtsp_session_t struct rtsp_session_t
{ {
...@@ -143,15 +145,22 @@ struct rtsp_session_t ...@@ -143,15 +145,22 @@ struct rtsp_session_t
vlc_bool_t b_playing; vlc_bool_t b_playing;
/* output (id-access) */ /* output (id-access) */
int i_id; int trackc;
sout_stream_id_t **id; rtsp_strack_t *trackv;
int i_access;
sout_access_out_t **access;
char name[0]; char name[0];
}; };
/* Unicast session track */
struct rtsp_strack_t
{
sout_stream_id_t *id;
sout_access_out_t *access;
vlc_bool_t playing;
};
rtsp_stream_id_t *RtspAddId( rtsp_stream_t *rtsp, sout_stream_id_t *sid, rtsp_stream_id_t *RtspAddId( rtsp_stream_t *rtsp, sout_stream_id_t *sid,
unsigned num, unsigned num,
/* Multicast stuff - TODO: cleanup */ /* Multicast stuff - TODO: cleanup */
...@@ -203,15 +212,13 @@ void RtspDelId( rtsp_stream_t *rtsp, rtsp_stream_id_t *id ) ...@@ -203,15 +212,13 @@ void RtspDelId( rtsp_stream_t *rtsp, rtsp_stream_id_t *id )
{ {
rtsp_session_t *ses = rtsp->sessionv[i]; rtsp_session_t *ses = rtsp->sessionv[i];
for( int j = 0; j < ses->i_id; j++ ) for( int j = 0; j < ses->trackc; j++ )
{ {
if( ses->id[j] == id->sout_id ) if( ses->trackv[j].id == id->sout_id )
{ {
REMOVE_ELEM( ses->id, ses->i_id, j ); rtsp_strack_t *tr = ses->trackv + j;
sout_AccessOutDelete( tr->access );
assert( ses->access[j] != NULL ); REMOVE_ELEM( ses->trackv, ses->trackc, j );
sout_AccessOutDelete( ses->access[j] );
REMOVE_ELEM( ses->access, ses->i_access, j );
/* FIXME: are we supposed to notify the client? */ /* FIXME: are we supposed to notify the client? */
} }
} }
...@@ -231,9 +238,8 @@ rtsp_session_t *RtspClientNew( rtsp_stream_t *rtsp, const char *name ) ...@@ -231,9 +238,8 @@ rtsp_session_t *RtspClientNew( rtsp_stream_t *rtsp, const char *name )
s->stream = rtsp; s->stream = rtsp;
s->b_playing = VLC_FALSE; s->b_playing = VLC_FALSE;
s->i_id = s->i_access = 0; s->trackc = 0;
s->id = NULL; s->trackv = NULL;
s->access = NULL;
strcpy( s->name, name ); strcpy( s->name, name );
TAB_APPEND( rtsp->sessionc, rtsp->sessionv, s ); TAB_APPEND( rtsp->sessionc, rtsp->sessionv, s );
...@@ -268,14 +274,13 @@ void RtspClientDel( rtsp_stream_t *rtsp, rtsp_session_t *session ) ...@@ -268,14 +274,13 @@ void RtspClientDel( rtsp_stream_t *rtsp, rtsp_session_t *session )
int i; int i;
TAB_REMOVE( rtsp->sessionc, rtsp->sessionv, session ); TAB_REMOVE( rtsp->sessionc, rtsp->sessionv, session );
for( i = 0; i < session->i_access; i++ ) for( i = 0; i < session->trackc; i++ )
{ {
rtp_del_sink( session->id[i], session->access[i] ); rtp_del_sink( session->trackv[i].id, session->trackv[i].access );
sout_AccessOutDelete( session->access[i] ); sout_AccessOutDelete( session->trackv[i].access );
} }
free( session->id ); free( session->trackv );
free( session->access );
free( session ); free( session );
} }
...@@ -339,8 +344,8 @@ static int RtspCallback( httpd_callback_sys_t *p_args, ...@@ -339,8 +344,8 @@ static int RtspCallback( httpd_callback_sys_t *p_args,
/* FIXME */ /* FIXME */
ses->b_playing = VLC_TRUE; ses->b_playing = VLC_TRUE;
for( int i_id = 0; i_id < ses->i_id; i_id++ ) for( int i = 0; i < ses->trackc; i++ )
rtp_add_sink( ses->id[i_id], ses->access[i_id] ); rtp_add_sink( ses->trackv[i].id, ses->trackv[i].access );
} }
vlc_mutex_unlock( &rtsp->lock ); vlc_mutex_unlock( &rtsp->lock );
break; break;
...@@ -419,7 +424,6 @@ static int RtspCallbackId( httpd_callback_sys_t *p_args, ...@@ -419,7 +424,6 @@ static int RtspCallbackId( httpd_callback_sys_t *p_args,
rtsp_stream_id_t *id = (rtsp_stream_id_t *)p_args; rtsp_stream_id_t *id = (rtsp_stream_id_t *)p_args;
rtsp_stream_t *rtsp = id->stream; rtsp_stream_t *rtsp = id->stream;
sout_stream_t *p_stream = id->stream->owner; sout_stream_t *p_stream = id->stream->owner;
sout_stream_id_t *sid = id->sout_id;
char psz_session_init[21]; char psz_session_init[21];
const char *psz_session; const char *psz_session;
const char *psz_cseq; const char *psz_cseq;
...@@ -539,8 +543,8 @@ static int RtspCallbackId( httpd_callback_sys_t *p_args, ...@@ -539,8 +543,8 @@ static int RtspCallbackId( httpd_callback_sys_t *p_args,
{ {
char ip[NI_MAXNUMERICHOST], url[NI_MAXNUMERICHOST + 8]; char ip[NI_MAXNUMERICHOST], url[NI_MAXNUMERICHOST + 8];
static const char access[] = "udp{raw,rtcp}"; static const char access[] = "udp{raw,rtcp}";
sout_access_out_t *p_access;
rtsp_session_t *ses = NULL; rtsp_session_t *ses = NULL;
rtsp_strack_t track = { id->sout_id, NULL, VLC_FALSE };
if( httpd_ClientIP( cl, ip ) == NULL ) if( httpd_ClientIP( cl, ip ) == NULL )
{ {
...@@ -552,9 +556,9 @@ static int RtspCallbackId( httpd_callback_sys_t *p_args, ...@@ -552,9 +556,9 @@ static int RtspCallbackId( httpd_callback_sys_t *p_args,
( strchr( ip, ':' ) != NULL ) ? "[%s]:%d" : "%s:%d", ( strchr( ip, ':' ) != NULL ) ? "[%s]:%d" : "%s:%d",
ip, loport ); ip, loport );
p_access = sout_AccessOutNew( p_stream->p_sout, access, track.access = sout_AccessOutNew( p_stream->p_sout,
url ); access, url );
if( p_access == NULL ) if( track.access == NULL )
{ {
msg_Err( p_stream, msg_Err( p_stream,
"cannot create access output for %s://%s", "cannot create access output for %s://%s",
...@@ -563,6 +567,9 @@ static int RtspCallbackId( httpd_callback_sys_t *p_args, ...@@ -563,6 +567,9 @@ static int RtspCallbackId( httpd_callback_sys_t *p_args,
continue; continue;
} }
char *src = var_GetNonEmptyString( track.access, "src-addr" );
int sport = var_GetInteger( track.access, "src-port" );
vlc_mutex_lock( &rtsp->lock ); vlc_mutex_lock( &rtsp->lock );
if( psz_session == NULL ) if( psz_session == NULL )
{ {
...@@ -582,15 +589,9 @@ static int RtspCallbackId( httpd_callback_sys_t *p_args, ...@@ -582,15 +589,9 @@ static int RtspCallbackId( httpd_callback_sys_t *p_args,
} }
} }
assert( ses->i_id == ses->i_access ); INSERT_ELEM( ses->trackv, ses->trackc, ses->trackc, track );
TAB_APPEND( ses->i_id, ses->id, sid );
TAB_APPEND( ses->i_access, ses->access, p_access );
assert( ses->i_id == ses->i_access );
vlc_mutex_unlock( &rtsp->lock ); vlc_mutex_unlock( &rtsp->lock );
char *src = var_GetNonEmptyString (p_access, "src-addr");
int sport = var_GetInteger (p_access, "src-port");
httpd_ServerIP( cl, ip ); httpd_ServerIP( cl, ip );
if( ( src != NULL ) && strcmp( src, ip ) ) if( ( src != NULL ) && strcmp( src, ip ) )
...@@ -640,14 +641,13 @@ static int RtspCallbackId( httpd_callback_sys_t *p_args, ...@@ -640,14 +641,13 @@ static int RtspCallbackId( httpd_callback_sys_t *p_args,
ses = RtspClientGet( rtsp, psz_session ); ses = RtspClientGet( rtsp, psz_session );
if( ses != NULL ) if( ses != NULL )
{ {
for( int i = 0; i < ses->i_id; i++ ) for( int i = 0; i < ses->trackc; i++ )
{ {
if( ses->id[i] == id->sout_id ) if( ses->trackv[i].id == id->sout_id )
{ {
rtp_del_sink( id->sout_id, ses->access[i] ); rtp_del_sink( id->sout_id, ses->trackv[i].access );
REMOVE_ELEM( ses->id, ses->i_id, i ); sout_AccessOutDelete( ses->trackv[i].access );
REMOVE_ELEM( ses->access, ses->i_access, i ); REMOVE_ELEM( ses->trackv, ses->trackc, i );
sout_AccessOutDelete( ses->access[i] );
} }
} }
} }
......
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