X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fservices_discovery%2Fsap.c;h=52c3b83ae2e11f5e25f40d80e1d811e12732eaa1;hb=ee73bdeaf577cdacb229ee298984aaf6fb23652a;hp=a065ac4cf56cf4ae96beec2195d027bb0e927fd7;hpb=70439ea3435c8d9e06b47898815f1cc11b9de1b3;p=vlc diff --git a/modules/services_discovery/sap.c b/modules/services_discovery/sap.c index a065ac4cf5..52c3b83ae2 100644 --- a/modules/services_discovery/sap.c +++ b/modules/services_discovery/sap.c @@ -40,15 +40,9 @@ #include #include -#include -#include - #ifdef HAVE_UNISTD_H # include #endif -#ifdef HAVE_SYS_TIME_H -# include -#endif #ifdef HAVE_POLL # include #endif @@ -120,11 +114,11 @@ static int OpenDemux ( vlc_object_t * ); static void CloseDemux ( vlc_object_t * ); -VLC_SD_PROBE_HELPER("sap", N_("Network streams (SAP)")) +VLC_SD_PROBE_HELPER("sap", "Network streams (SAP)", SD_CAT_LAN) vlc_module_begin () set_shortname( N_("SAP")) - set_description( N_("SAP Announcements") ) + set_description( N_("Network streams (SAP)") ) set_category( CAT_PLAYLIST ) set_subcategory( SUBCAT_PLAYLIST_SD ) @@ -453,7 +447,7 @@ static void Close( vlc_object_t *p_this ) FREENULL( p_sys->pi_fd ); #if 0 - if( config_GetInt( p_sd, "sap-cache" ) ) + if( var_InheritBool( p_sd, "sap-cache" ) ) { CacheSave( p_sd ); } @@ -1250,7 +1244,7 @@ static sdp_t *ParseSDP (vlc_object_t *p_obj, const char *psz_sdp) goto error; } - if ((sscanf (data, "%63s %"PRIu64" %"PRIu64" IN IP%u %1023s", + if ((sscanf (data, "%63s %"SCNu64" %"SCNu64" IN IP%u %1023s", p_sdp->username, &p_sdp->session_id, &p_sdp->session_version, &p_sdp->orig_ip_version, p_sdp->orig_host) != 5)