summaryrefslogtreecommitdiffstats
path: root/gst/rtpmanager/gstrtpmanager.c
diff options
context:
space:
mode:
Diffstat (limited to 'gst/rtpmanager/gstrtpmanager.c')
-rw-r--r--gst/rtpmanager/gstrtpmanager.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/gst/rtpmanager/gstrtpmanager.c b/gst/rtpmanager/gstrtpmanager.c
index 1490c4cb..eed5c25f 100644
--- a/gst/rtpmanager/gstrtpmanager.c
+++ b/gst/rtpmanager/gstrtpmanager.c
@@ -31,26 +31,27 @@
static gboolean
plugin_init (GstPlugin * plugin)
{
- if (!gst_element_register (plugin, "rtpbin", GST_RANK_NONE, GST_TYPE_RTP_BIN))
+ if (!gst_element_register (plugin, "gstrtpbin", GST_RANK_NONE,
+ GST_TYPE_RTP_BIN))
return FALSE;
- if (!gst_element_register (plugin, "rtpclient", GST_RANK_NONE,
+ if (!gst_element_register (plugin, "gstrtpclient", GST_RANK_NONE,
GST_TYPE_RTP_CLIENT))
return FALSE;
- if (!gst_element_register (plugin, "rtpjitterbuffer", GST_RANK_NONE,
+ if (!gst_element_register (plugin, "gstrtpjitterbuffer", GST_RANK_NONE,
GST_TYPE_RTP_JITTER_BUFFER))
return FALSE;
- if (!gst_element_register (plugin, "rtpptdemux", GST_RANK_NONE,
+ if (!gst_element_register (plugin, "gstrtpptdemux", GST_RANK_NONE,
GST_TYPE_RTP_PT_DEMUX))
return FALSE;
- if (!gst_element_register (plugin, "rtpsession", GST_RANK_NONE,
+ if (!gst_element_register (plugin, "gstrtpsession", GST_RANK_NONE,
GST_TYPE_RTP_SESSION))
return FALSE;
- if (!gst_element_register (plugin, "rtpssrcdemux", GST_RANK_NONE,
+ if (!gst_element_register (plugin, "gstrtpssrcdemux", GST_RANK_NONE,
GST_TYPE_RTP_SSRC_DEMUX))
return FALSE;
@@ -59,6 +60,6 @@ plugin_init (GstPlugin * plugin)
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
GST_VERSION_MINOR,
- "rtpmanager",
+ "gstrtpmanager",
"RTP session management plugin library",
plugin_init, VERSION, "LGPL", GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)