summaryrefslogtreecommitdiffstats
path: root/gst/rtsp/rtspurl.h
diff options
context:
space:
mode:
Diffstat (limited to 'gst/rtsp/rtspurl.h')
-rw-r--r--gst/rtsp/rtspurl.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/gst/rtsp/rtspurl.h b/gst/rtsp/rtspurl.h
index 27b537d8..3c39e924 100644
--- a/gst/rtsp/rtspurl.h
+++ b/gst/rtsp/rtspurl.h
@@ -46,19 +46,20 @@
#include <glib.h>
#include <rtspdefs.h>
+#include <rtsptransport.h>
G_BEGIN_DECLS
#define RTSP_DEFAULT_PORT 554
typedef struct _RTSPUrl {
- RTSPProto protocol;
- RTSPFamily family;
- gchar *user;
- gchar *passwd;
- gchar *host;
- guint16 port;
- gchar *abspath;
+ RTSPLowerTrans transports;
+ RTSPFamily family;
+ gchar *user;
+ gchar *passwd;
+ gchar *host;
+ guint16 port;
+ gchar *abspath;
} RTSPUrl;
RTSPResult rtsp_url_parse (const gchar *urlstr, RTSPUrl **url);