summaryrefslogtreecommitdiffstats
path: root/gst/rtsp/gstrtsp.c
diff options
context:
space:
mode:
Diffstat (limited to 'gst/rtsp/gstrtsp.c')
-rw-r--r--gst/rtsp/gstrtsp.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/gst/rtsp/gstrtsp.c b/gst/rtsp/gstrtsp.c
index 045c03a6..476ebaa5 100644
--- a/gst/rtsp/gstrtsp.c
+++ b/gst/rtsp/gstrtsp.c
@@ -47,6 +47,7 @@
#include "gstrtpdec.h"
#include "gstrtspsrc.h"
+#include "gstrtspgoogle.h"
static gboolean
plugin_init (GstPlugin * plugin)
@@ -57,6 +58,10 @@ plugin_init (GstPlugin * plugin)
if (!gst_element_register (plugin, "rtpdec", GST_RANK_NONE, GST_TYPE_RTP_DEC))
return FALSE;
+ if (!gst_element_register (plugin, "rtspgoogle", GST_RANK_SECONDARY,
+ GST_TYPE_RTSP_GOOGLE)) {
+ return FALSE;
+ }
return TRUE;
}