From 25082a50b9e08eaeaa0837dadc431390357efe6d Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 31 May 2013 12:33:21 +0200 Subject: [PATCH] rtspsrc: add extra TLS url protocols We also support TLS protocols now. --- gst/rtsp/gstrtspsrc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c index 067c91489d..54d1a3fd05 100644 --- a/gst/rtsp/gstrtspsrc.c +++ b/gst/rtsp/gstrtspsrc.c @@ -7007,7 +7007,9 @@ static const gchar *const * gst_rtspsrc_uri_get_protocols (GType type) { static const gchar *protocols[] = - { "rtsp", "rtspu", "rtspt", "rtsph", "rtsp-sdp", NULL }; + { "rtsp", "rtspu", "rtspt", "rtsph", "rtsp-sdp", + "rtsps", "rtspsu", "rtspst", "rtspsh", NULL + }; return protocols; }