summaryrefslogtreecommitdiffstats
path: root/gst/rtsp/gstrtsp.c
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2008-11-13 16:17:38 +0000
committerWim Taymans <wim.taymans@gmail.com>2008-11-13 16:17:38 +0000
commitc97549583815a9f60e5f15884e6ecfa3c40a233b (patch)
tree7977bf0ad64cea4a486abc7bcfc01fb70f678a88 /gst/rtsp/gstrtsp.c
parentbe3906c91892cb9ecf56782615b301762d67ea4f (diff)
gst/rtsp/: Remove google extension again, it's not needed anymore because we never send multiple transports anymore.
Original commit message from CVS: * gst/rtsp/Makefile.am: * gst/rtsp/gstrtsp.c: (plugin_init): * gst/rtsp/gstrtspgoogle.c: * gst/rtsp/gstrtspgoogle.h: Remove google extension again, it's not needed anymore because we never send multiple transports anymore.
Diffstat (limited to 'gst/rtsp/gstrtsp.c')
-rw-r--r--gst/rtsp/gstrtsp.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/gst/rtsp/gstrtsp.c b/gst/rtsp/gstrtsp.c
index 476ebaa5..045c03a6 100644
--- a/gst/rtsp/gstrtsp.c
+++ b/gst/rtsp/gstrtsp.c
@@ -47,7 +47,6 @@
#include "gstrtpdec.h"
#include "gstrtspsrc.h"
-#include "gstrtspgoogle.h"
static gboolean
plugin_init (GstPlugin * plugin)
@@ -58,10 +57,6 @@ 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;
}