summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtp.c
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2006-09-20 16:09:03 +0000
committerWim Taymans <wim.taymans@gmail.com>2006-09-20 16:09:03 +0000
commit93c0a73ce0e1bf9add82206f97b605648fd17afb (patch)
tree279b7edd47e08879f14af1c855b8b5ab3e38d853 /gst/rtp/gstrtp.c
parenta365a29c77d2ca41fcd3e15f22d24e7fe8f05e02 (diff)
gst/rtp/: Added preliminary ASF depayloader.
Original commit message from CVS: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtpasfdepay.c: (gst_rtp_asf_depay_base_init), (gst_rtp_asf_depay_class_init), (gst_rtp_asf_depay_init), (decode_base64), (gst_rtp_asf_depay_setcaps), (gst_rtp_asf_depay_process), (gst_rtp_asf_depay_set_property), (gst_rtp_asf_depay_get_property), (gst_rtp_asf_depay_change_state), (gst_rtp_asf_depay_plugin_init): * gst/rtp/gstrtpasfdepay.h: Added preliminary ASF depayloader. * gst/rtp/gstrtph264depay.c: (decode_base64): Fix base64 decoding.
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 e7949b8e..5830d266 100644
--- a/gst/rtp/gstrtp.c
+++ b/gst/rtp/gstrtp.c
@@ -21,6 +21,7 @@
#include "config.h"
#endif
+#include "gstrtpasfdepay.h"
#include "gstrtpdepay.h"
#include "gstrtppcmupay.h"
#include "gstrtppcmapay.h"
@@ -49,6 +50,9 @@
static gboolean
plugin_init (GstPlugin * plugin)
{
+ if (!gst_rtp_asf_depay_plugin_init (plugin))
+ return FALSE;
+
if (!gst_rtp_depay_plugin_init (plugin))
return FALSE;