summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtp.c
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2006-07-16 14:31:48 +0000
committerWim Taymans <wim.taymans@gmail.com>2006-07-16 14:31:48 +0000
commitf6a274239a935b7e0ff70a227a7b61ae7e287077 (patch)
treeae433eb69216eb3d6f119265d1fa7c62773112ad /gst/rtp/gstrtp.c
parent4965e7c58dd34f36c58807b039fd32a82cb24c40 (diff)
gst/rtp/: Added simple generic mpeg4 depayloader.
Original commit message from CVS: * gst/rtp/Makefile.am: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtpmp4gdepay.c: (gst_rtp_mp4g_depay_base_init), (gst_rtp_mp4g_depay_class_init), (gst_rtp_mp4g_depay_init), (gst_rtp_mp4g_depay_setcaps), (gst_rtp_mp4g_depay_process), (gst_rtp_mp4g_depay_set_property), (gst_rtp_mp4g_depay_get_property), (gst_rtp_mp4g_depay_change_state), (gst_rtp_mp4g_depay_plugin_init): * gst/rtp/gstrtpmp4gdepay.h: * gst/rtp/gstrtpmp4gpay.c: (gst_rtp_mp4g_pay_class_init), (gst_rtp_mp4g_pay_parse_audio_config), (gst_rtp_mp4g_pay_setcaps), (gst_rtp_mp4g_pay_flush): Added simple generic mpeg4 depayloader. Fix generic mpeg4 payloader.
Diffstat (limited to 'gst/rtp/gstrtp.c')
-rw-r--r--gst/rtp/gstrtp.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/gst/rtp/gstrtp.c b/gst/rtp/gstrtp.c
index 406d71f6..865694a2 100644
--- a/gst/rtp/gstrtp.c
+++ b/gst/rtp/gstrtp.c
@@ -37,9 +37,10 @@
#include "gstrtph263pay.h"
#include "gstasteriskh263.h"
#include "gstrtpmp2tdepay.h"
+#include "gstrtpmp4vdepay.h"
#include "gstrtpmp4vpay.h"
+#include "gstrtpmp4gdepay.h"
#include "gstrtpmp4gpay.h"
-#include "gstrtpmp4vdepay.h"
#include "gstrtpspeexpay.h"
#include "gstrtpspeexdepay.h"
@@ -100,6 +101,9 @@ plugin_init (GstPlugin * plugin)
if (!gst_rtp_mp4v_depay_plugin_init (plugin))
return FALSE;
+ if (!gst_rtp_mp4g_depay_plugin_init (plugin))
+ return FALSE;
+
if (!gst_rtp_mp4g_pay_plugin_init (plugin))
return FALSE;