summaryrefslogtreecommitdiffstats
path: root/gst/rtpmanager/gstrtpmanager.c
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2007-04-04 10:23:15 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-08-11 02:30:23 +0100
commita9d14ed31036aacb46cf97b3ced0bf9cd8cb434b (patch)
treed596e46835f9abbda279a2dc690febde7483c5b7 /gst/rtpmanager/gstrtpmanager.c
parent5351f0cb519f65352d8d79540ee16da3871705b0 (diff)
gst/rtpmanager/: Added simple SSRC demuxer.
Original commit message from CVS: * gst/rtpmanager/Makefile.am: * gst/rtpmanager/gstrtpmanager.c: (plugin_init): * gst/rtpmanager/gstrtpssrcdemux.c: (find_pad_for_ssrc), (create_pad_for_ssrc), (gst_rtp_ssrc_demux_base_init), (gst_rtp_ssrc_demux_class_init), (gst_rtp_ssrc_demux_init), (gst_rtp_ssrc_demux_finalize), (gst_rtp_ssrc_demux_sink_event), (gst_rtp_ssrc_demux_chain), (gst_rtp_ssrc_demux_src_event), (gst_rtp_ssrc_demux_change_state): * gst/rtpmanager/gstrtpssrcdemux.h: Added simple SSRC demuxer.
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;
}