[vlc-devel] [PATCHv2 3/3] live555: Drop satip support
Julian Scheel
julian at jusst.de
Thu May 26 12:22:58 CEST 2016
The satip shortcut is provided by the dedicated satip access module now.
Signed-off-by: Julian Scheel <julian at jusst.de>
---
modules/access/live555.cpp | 14 +-------------
1 file changed, 1 insertion(+), 13 deletions(-)
diff --git a/modules/access/live555.cpp b/modules/access/live555.cpp
index 44d968c..8fab5cd 100644
--- a/modules/access/live555.cpp
+++ b/modules/access/live555.cpp
@@ -103,7 +103,7 @@ vlc_module_begin ()
add_submodule ()
set_description( N_("RTSP/RTP access and demux") )
- add_shortcut( "rtsp", "pnm", "live", "livedotcom", "satip" )
+ add_shortcut( "rtsp", "pnm", "live", "livedotcom" )
set_capability( "access_demux", 0 )
set_callbacks( Open, Close )
add_bool( "rtsp-tcp", false,
@@ -337,18 +337,6 @@ static int Open ( vlc_object_t *p_this )
while( (p = strchr( p, ' ' )) != NULL ) *p = '+';
}
- if( strcasecmp( p_demux->psz_access, "satip" ) == 0 )
- {
- if( asprintf(&p_sys->p_sdp, "v=0\r\n"
- "o=- 0 %s\r\n"
- "s=SATIP:stream\r\n"
- "i=SATIP RTP Stream\r\n"
- "m=video 0 RTP/AVP 33\r\n"
- "a=control:rtsp://%s\r\n\r\n",
- p_sys->url.psz_host, p_sys->psz_path) < 0 )
- abort();
- }
-
if( p_demux->s != NULL )
{
/* Gather the complete sdp file */
--
2.8.3
More information about the vlc-devel
mailing list