summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtp.c
diff options
context:
space:
mode:
authorLaurent Glayal <spglegle@yahoo.fr>2007-03-29 08:08:49 +0000
committerWim Taymans <wim.taymans@gmail.com>2007-03-29 08:08:49 +0000
commitd94a696bcd11dd7cf1de4145609788c60ec7f2b7 (patch)
treed079453564934d9f247178b2ea954736455d8e32 /gst/rtp/gstrtp.c
parentc76eea67cc962595362c8bf4c7650a76452e7b03 (diff)
gst/rtp/: Added H264 payloader. Fixes #423782.
Original commit message from CVS: Patch by: Laurent Glayal <spglegle at yahoo dot fr> * gst/rtp/Makefile.am: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtph264pay.c: (gst_rtp_h264_pay_base_init), (gst_rtp_h264_pay_class_init), (gst_rtp_h264_pay_init), (gst_rtp_h264_pay_finalize), (gst_rtp_h264_pay_setcaps), (gst_rtp_h264_pay_handle_buffer), (gst_rtp_h264_pay_set_property), (gst_rtp_h264_pay_get_property), (gst_rtp_h264_pay_change_state), (gst_rtp_h264_pay_plugin_init): * gst/rtp/gstrtph264pay.h: Added H264 payloader. Fixes #423782. * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_class_init), (gst_rtp_h264_depay_setcaps), (gst_rtp_h264_depay_process): Small fixes.
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 a4d12c7d..c8bae7c2 100644
--- a/gst/rtp/gstrtp.c
+++ b/gst/rtp/gstrtp.c
@@ -40,6 +40,7 @@
#include "gstrtph263ppay.h"
#include "gstrtph263pay.h"
#include "gstrtph264depay.h"
+#include "gstrtph264pay.h"
#include "gstrtpL16depay.h"
#include "gstrtpL16pay.h"
#include "gstasteriskh263.h"
@@ -118,6 +119,9 @@ plugin_init (GstPlugin * plugin)
if (!gst_rtp_h264_depay_plugin_init (plugin))
return FALSE;
+ if (!gst_rtp_h264_pay_plugin_init (plugin))
+ return FALSE;
+
if (!gst_rtp_L16_pay_plugin_init (plugin))
return FALSE;