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.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/gst/rtpmanager/gstrtpmanager.c b/gst/rtpmanager/gstrtpmanager.c
index a059cad8..d71d850c 100644
--- a/gst/rtpmanager/gstrtpmanager.c
+++ b/gst/rtpmanager/gstrtpmanager.c
@@ -25,6 +25,7 @@
#include "gstrtpjitterbuffer.h"
#include "gstrtpptdemux.h"
#include "gstrtpsession.h"
+#include "gstrtpssrcdemux.h"
static gboolean
plugin_init (GstPlugin * plugin)
@@ -45,6 +46,10 @@ plugin_init (GstPlugin * plugin)
GST_TYPE_RTP_SESSION))
return FALSE;
+ if (!gst_element_register (plugin, "rtpssrcdemux", GST_RANK_NONE,
+ GST_TYPE_RTP_SSRC_DEMUX))
+ return FALSE;
+
return TRUE;
}