summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtp.c
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2008-08-05 13:54:18 +0000
committerWim Taymans <wim.taymans@gmail.com>2008-08-05 13:54:18 +0000
commit8f0079c7e2a95b6bf56739dd5cc2634a0cef3205 (patch)
treee619b358eb59f5d6b0c77690db9158f7f52a5d49 /gst/rtp/gstrtp.c
parent0f4317db204b41fc7b73f085e46bdefd47bdc6ae (diff)
gst/rtp/: Add MP1S depayloader.
Original commit message from CVS: * gst/rtp/Makefile.am: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtpmp1sdepay.c: (gst_rtp_mp1s_depay_base_init), (gst_rtp_mp1s_depay_class_init), (gst_rtp_mp1s_depay_init), (gst_rtp_mp1s_depay_setcaps), (gst_rtp_mp1s_depay_process), (gst_rtp_mp1s_depay_set_property), (gst_rtp_mp1s_depay_get_property), (gst_rtp_mp1s_depay_change_state), (gst_rtp_mp1s_depay_plugin_init): * gst/rtp/gstrtpmp1sdepay.h: Add MP1S depayloader. * gst/rtsp/URLS: Some more sample rtsp streams.
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 5025a05b..61ce7851 100644
--- a/gst/rtp/gstrtp.c
+++ b/gst/rtp/gstrtp.c
@@ -52,6 +52,7 @@
#include "gstrtpL16depay.h"
#include "gstrtpL16pay.h"
#include "gstasteriskh263.h"
+#include "gstrtpmp1sdepay.h"
#include "gstrtpmp2tdepay.h"
#include "gstrtpmp2tpay.h"
#include "gstrtpmp4vdepay.h"
@@ -165,6 +166,9 @@ plugin_init (GstPlugin * plugin)
if (!gst_asteriskh263_plugin_init (plugin))
return FALSE;
+ if (!gst_rtp_mp1s_depay_plugin_init (plugin))
+ return FALSE;
+
if (!gst_rtp_mp2t_depay_plugin_init (plugin))
return FALSE;