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

SAP: dead code

parent 1d974c62
...@@ -80,9 +80,6 @@ ...@@ -80,9 +80,6 @@
#define SAP_ADDR_LONGTEXT N_( "The SAP module normally chooses itself the " \ #define SAP_ADDR_LONGTEXT N_( "The SAP module normally chooses itself the " \
"right addresses to listen to. However, you " \ "right addresses to listen to. However, you " \
"can specify a specific address." ) "can specify a specific address." )
#define SAP_SCOPE_TEXT N_( "IPv6 SAP scope" )
#define SAP_SCOPE_LONGTEXT N_( \
"Scope for IPv6 announcements (default is 8)." )
#define SAP_TIMEOUT_TEXT N_( "SAP timeout (seconds)" ) #define SAP_TIMEOUT_TEXT N_( "SAP timeout (seconds)" )
#define SAP_TIMEOUT_LONGTEXT N_( \ #define SAP_TIMEOUT_LONGTEXT N_( \
"Delay after which SAP items get deleted if no new announcement " \ "Delay after which SAP items get deleted if no new announcement " \
...@@ -96,11 +93,6 @@ ...@@ -96,11 +93,6 @@
#define SAP_STRICT_LONGTEXT N_( \ #define SAP_STRICT_LONGTEXT N_( \
"When this is set, the SAP parser will discard some non-compliant " \ "When this is set, the SAP parser will discard some non-compliant " \
"announcements." ) "announcements." )
#define SAP_CACHE_TEXT N_("Use SAP cache")
#define SAP_CACHE_LONGTEXT N_( \
"This enables a SAP caching mechanism. " \
"This will result in lower SAP startup time, but you could end up " \
"with items corresponding to legacy streams." )
/* Callbacks */ /* Callbacks */
static int Open ( vlc_object_t * ); static int Open ( vlc_object_t * );
...@@ -126,10 +118,6 @@ vlc_module_begin () ...@@ -126,10 +118,6 @@ vlc_module_begin ()
SAP_PARSE_TEXT,SAP_PARSE_LONGTEXT, true ) SAP_PARSE_TEXT,SAP_PARSE_LONGTEXT, true )
add_bool( "sap-strict", false, add_bool( "sap-strict", false,
SAP_STRICT_TEXT,SAP_STRICT_LONGTEXT, true ) SAP_STRICT_TEXT,SAP_STRICT_LONGTEXT, true )
#if 0
add_bool( "sap-cache", false,
SAP_CACHE_TEXT,SAP_CACHE_LONGTEXT, true )
#endif
add_obsolete_bool( "sap-timeshift" ) /* Redumdant since 1.0.0 */ add_obsolete_bool( "sap-timeshift" ) /* Redumdant since 1.0.0 */
set_capability( "services_discovery", 0 ) set_capability( "services_discovery", 0 )
...@@ -314,13 +302,6 @@ static int Open( vlc_object_t *p_this ) ...@@ -314,13 +302,6 @@ static int Open( vlc_object_t *p_this )
p_sys->b_strict = var_CreateGetBool( p_sd, "sap-strict"); p_sys->b_strict = var_CreateGetBool( p_sd, "sap-strict");
p_sys->b_parse = var_CreateGetBool( p_sd, "sap-parse" ); p_sys->b_parse = var_CreateGetBool( p_sd, "sap-parse" );
#if 0
if( var_CreateGetBool( p_sd, "sap-cache" ) )
{
CacheLoad( p_sd );
}
#endif
p_sys->i_announces = 0; p_sys->i_announces = 0;
p_sys->pp_announces = NULL; p_sys->pp_announces = NULL;
/* TODO: create sockets here, and fix racy sockets table */ /* TODO: create sockets here, and fix racy sockets table */
...@@ -438,13 +419,6 @@ static void Close( vlc_object_t *p_this ) ...@@ -438,13 +419,6 @@ static void Close( vlc_object_t *p_this )
} }
FREENULL( p_sys->pi_fd ); FREENULL( p_sys->pi_fd );
#if 0
if( var_InheritBool( p_sd, "sap-cache" ) )
{
CacheSave( p_sd );
}
#endif
for( i = p_sys->i_announces - 1; i>= 0; i-- ) for( i = p_sys->i_announces - 1; i>= 0; i-- )
{ {
RemoveAnnounce( p_sd, p_sys->pp_announces[i] ); RemoveAnnounce( p_sd, p_sys->pp_announces[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