summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtp.c
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2007-01-24 15:18:34 +0000
committerWim Taymans <wim.taymans@gmail.com>2007-01-24 15:18:34 +0000
commitf08317874136d3b9f9026c62fc451b5a8f9366af (patch)
tree17b72dbb9b5de88e3db0f7ac4a64f2ec9df675a5 /gst/rtp/gstrtp.c
parent54b10ebf2a72af1ec366265e705279da399fd60d (diff)
gst/rtp/: Added simple AC3 depayloader (RFC 4184).
Original commit message from CVS: * gst/rtp/Makefile.am: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtpac3depay.c: (gst_rtp_ac3_depay_base_init), (gst_rtp_ac3_depay_class_init), (gst_rtp_ac3_depay_init), (gst_rtp_ac3_depay_setcaps), (gst_rtp_ac3_depay_process), (gst_rtp_ac3_depay_set_property), (gst_rtp_ac3_depay_get_property), (gst_rtp_ac3_depay_change_state), (gst_rtp_ac3_depay_plugin_init): * gst/rtp/gstrtpac3depay.h: Added simple AC3 depayloader (RFC 4184). * gst/rtp/gstrtpmp2tdepay.c: (gst_rtp_mp2t_depay_setcaps): Fix a leak.
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 2433c8f5..9dffaee1 100644
--- a/gst/rtp/gstrtp.c
+++ b/gst/rtp/gstrtp.c
@@ -22,6 +22,7 @@
#endif
#include "gstrtpdepay.h"
+#include "gstrtpac3depay.h"
#include "gstrtpilbcdepay.h"
#include "gstrtpilbcpay.h"
#include "gstrtppcmupay.h"
@@ -59,6 +60,9 @@ plugin_init (GstPlugin * plugin)
if (!gst_rtp_depay_plugin_init (plugin))
return FALSE;
+ if (!gst_rtp_ac3_depay_plugin_init (plugin))
+ return FALSE;
+
if (!gst_rtp_ilbc_pay_plugin_init (plugin))
return FALSE;