summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtp.c
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2007-02-18 13:24:26 +0000
committerWim Taymans <wim.taymans@gmail.com>2007-02-18 13:24:26 +0000
commitbd4b1f680c78da051459cf93efe4777e9f716a48 (patch)
tree8d633f87a23e096a740cbc3f52874e31af6b9ed4 /gst/rtp/gstrtp.c
parent7fd025043d321be2377ebe5f964cacabf17cb764 (diff)
gst/rtp/: Added simple mpeg transport stream payloader.
Original commit message from CVS: * gst/rtp/Makefile.am: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtpmp2tpay.c: (gst_rtp_mp2t_pay_base_init), (gst_rtp_mp2t_pay_class_init), (gst_rtp_mp2t_pay_init), (gst_rtp_mp2t_pay_setcaps), (gst_rtp_mp2t_pay_handle_buffer), (gst_rtp_mp2t_pay_plugin_init): * gst/rtp/gstrtpmp2tpay.h: Added simple mpeg transport stream payloader.
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 61544895..c4d2b174 100644
--- a/gst/rtp/gstrtp.c
+++ b/gst/rtp/gstrtp.c
@@ -44,6 +44,7 @@
#include "gstrtpL16pay.h"
#include "gstasteriskh263.h"
#include "gstrtpmp2tdepay.h"
+#include "gstrtpmp2tpay.h"
#include "gstrtpmp4vdepay.h"
#include "gstrtpmp4vpay.h"
#include "gstrtpmp4gdepay.h"
@@ -128,6 +129,9 @@ plugin_init (GstPlugin * plugin)
if (!gst_rtp_mp2t_depay_plugin_init (plugin))
return FALSE;
+ if (!gst_rtp_mp2t_pay_plugin_init (plugin))
+ return FALSE;
+
if (!gst_rtp_mp4v_pay_plugin_init (plugin))
return FALSE;