summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtp.c
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2006-08-18 16:52:21 +0000
committerWim Taymans <wim.taymans@gmail.com>2006-08-18 16:52:21 +0000
commitb04309946b6b835888bd1f54a48dda8542c39e16 (patch)
tree655790043f208052de49dd8a01172ea554b729f0 /gst/rtp/gstrtp.c
parentab9b853b84a3a2f382e326cd43863594cd61ebf9 (diff)
gst/rtp/: Added experimental SVQ3 depayloader.
Original commit message from CVS: * gst/rtp/Makefile.am: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtpsv3vdepay.c: (gst_rtp_sv3v_depay_base_init), (gst_rtp_sv3v_depay_class_init), (gst_rtp_sv3v_depay_init), (gst_rtp_sv3v_depay_finalize), (gst_rtp_sv3v_depay_setcaps), (gst_rtp_sv3v_depay_process), (gst_rtp_sv3v_depay_set_property), (gst_rtp_sv3v_depay_get_property), (gst_rtp_sv3v_depay_change_state), (gst_rtp_sv3v_depay_plugin_init): * gst/rtp/gstrtpsv3vdepay.h: Added experimental SVQ3 depayloader.
Diffstat (limited to 'gst/rtp/gstrtp.c')
-rw-r--r--gst/rtp/gstrtp.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gst/rtp/gstrtp.c b/gst/rtp/gstrtp.c
index d1eb210e..e7949b8e 100644
--- a/gst/rtp/gstrtp.c
+++ b/gst/rtp/gstrtp.c
@@ -44,6 +44,7 @@
#include "gstrtpmp4gpay.h"
#include "gstrtpspeexpay.h"
#include "gstrtpspeexdepay.h"
+#include "gstrtpsv3vdepay.h"
static gboolean
plugin_init (GstPlugin * plugin)
@@ -117,6 +118,9 @@ plugin_init (GstPlugin * plugin)
if (!gst_rtp_speex_depay_plugin_init (plugin))
return FALSE;
+ if (!gst_rtp_sv3v_depay_plugin_init (plugin))
+ return FALSE;
+
return TRUE;
}