summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtp.c
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2006-07-12 09:34:15 +0000
committerWim Taymans <wim.taymans@gmail.com>2006-07-12 09:34:15 +0000
commit0da3b73faea5c2f165e32dffd8e547ddafc9f745 (patch)
tree329d310a51eea70634d6776d5a875dd3f1b4332e /gst/rtp/gstrtp.c
parenta1a4b4d3e004db41fd655a56040ba81bd06f8108 (diff)
gst/rtp/: Added mpeg2 TS depayloader. Closing #347234.
Original commit message from CVS: * gst/rtp/Makefile.am: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_base_init), (gst_rtp_mp2t_depay_class_init), (gst_rtp_mp2t_depay_init), (gst_rtp_mp2t_depay_setcaps), (gst_rtp_mp2t_depay_process), (gst_rtp_mp2t_depay_set_property), (gst_rtp_mp2t_depay_get_property), (gst_rtp_mp2t_depay_change_state), (gst_rtp_mp2t_depay_plugin_init): * gst/rtp/gstrtpmp2tdepay.h: Added mpeg2 TS depayloader. Closing #347234.
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 e80d4d6d..406d71f6 100644
--- a/gst/rtp/gstrtp.c
+++ b/gst/rtp/gstrtp.c
@@ -36,6 +36,7 @@
#include "gstrtph263ppay.h"
#include "gstrtph263pay.h"
#include "gstasteriskh263.h"
+#include "gstrtpmp2tdepay.h"
#include "gstrtpmp4vpay.h"
#include "gstrtpmp4gpay.h"
#include "gstrtpmp4vdepay.h"
@@ -90,6 +91,9 @@ plugin_init (GstPlugin * plugin)
if (!gst_asteriskh263_plugin_init (plugin))
return FALSE;
+ if (!gst_rtp_mp2t_depay_plugin_init (plugin))
+ return FALSE;
+
if (!gst_rtp_mp4v_pay_plugin_init (plugin))
return FALSE;