summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtp.c
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2007-08-20 16:52:03 +0000
committerWim Taymans <wim.taymans@gmail.com>2007-08-20 16:52:03 +0000
commit7d92376d3b9217c21731aa3c6d0966aded892e1f (patch)
tree9c41a3e81c1dcff59afe798c29da510c99f623d0 /gst/rtp/gstrtp.c
parent45ac408d0abed030eaf8f84af031c0de86e5f5b0 (diff)
gst/rtp/: Added an H263 depayloader. Fixes #369392.
Original commit message from CVS: * gst/rtp/Makefile.am: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtph263depay.c: (gst_rtp_h263_depay_base_init), (gst_rtp_h263_depay_class_init), (gst_rtp_h263_depay_init), (gst_rtp_h263_depay_finalize), (gst_rtp_h263_depay_setcaps), (gst_rtp_h263_depay_process), (gst_rtp_h263_depay_set_property), (gst_rtp_h263_depay_get_property), (gst_rtp_h263_depay_change_state), (gst_rtp_h263_depay_plugin_init): * gst/rtp/gstrtph263depay.h: Added an H263 depayloader. Fixes #369392. * gst/rtp/gstrtph263pdepay.c: (gst_rtp_h263p_depay_setcaps), (gst_rtp_h263p_depay_process): * gst/rtp/gstrtph263ppay.c: (gst_fragmentation_mode_get_type), (gst_rtp_h263p_pay_class_init), (gst_rtp_h263p_pay_flush): Make the H263+ pay/depayloader support H263-1998 and H263-2000 payloads. Also alow plain H263 on the h263p payloaders. Fixes #465040.
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 c8bae7c2..1eef506d 100644
--- a/gst/rtp/gstrtp.c
+++ b/gst/rtp/gstrtp.c
@@ -38,6 +38,7 @@
#include "gstrtpmpvdepay.h"
#include "gstrtph263pdepay.h"
#include "gstrtph263ppay.h"
+#include "gstrtph263depay.h"
#include "gstrtph263pay.h"
#include "gstrtph264depay.h"
#include "gstrtph264pay.h"
@@ -113,6 +114,9 @@ plugin_init (GstPlugin * plugin)
if (!gst_rtp_h263p_depay_plugin_init (plugin))
return FALSE;
+ if (!gst_rtp_h263_depay_plugin_init (plugin))
+ return FALSE;
+
if (!gst_rtp_h263_pay_plugin_init (plugin))
return FALSE;