rtspsrc: add extra TLS url protocols

We also support TLS protocols now.
This commit is contained in:
Wim Taymans 2013-05-31 12:33:21 +02:00
parent e2e1d1a158
commit 25082a50b9

View file

@ -7007,7 +7007,9 @@ static const gchar *const *
gst_rtspsrc_uri_get_protocols (GType type) gst_rtspsrc_uri_get_protocols (GType type)
{ {
static const gchar *protocols[] = static const gchar *protocols[] =
{ "rtsp", "rtspu", "rtspt", "rtsph", "rtsp-sdp", NULL }; { "rtsp", "rtspu", "rtspt", "rtsph", "rtsp-sdp",
"rtsps", "rtspsu", "rtspst", "rtspsh", NULL
};
return protocols; return protocols;
} }