summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtp.c
diff options
context:
space:
mode:
authorPhilippe Kalaf <philippe.kalaf@collabora.co.uk>2006-02-23 12:21:25 +0000
committerPhilippe Kalaf <philippe.kalaf@collabora.co.uk>2006-02-23 12:21:25 +0000
commit8449839ab1f115b33594467daa81e6347e67055c (patch)
treea7d1cc96cdde276d739fc197269077d514eb0ed8 /gst/rtp/gstrtp.c
parentec24b0dfabf90f2a47c6999db42e382e666852cc (diff)
rtp/gst/: Separated the G711 payloaders/depayloaders into separate elements for mulaw/alaw. Also removed the old g711...
Original commit message from CVS: 2006-02-23 Philippe Kalaf <philippe.kalaf at collabora.co.uk> * rtp/gst/gstrtppcmadepay.c: * rtp/gst/gstrtppcmadepay.h: * rtp/gst/gstgstrtppcmapay.c: * rtp/gst/gstgstrtppcmapay.h: * rtp/gst/gstrtppcmudepay.c: * rtp/gst/gstrtppcmudepay.h: * rtp/gst/gstrtppcmupay.c: * rtp/gst/gstrtppcmupay.h: * rtp/gst/Makefile.am: * rtp/gst/gstrtp.c: * rtp/gst/README: Separated the G711 payloaders/depayloaders into separate elements for mulaw/alaw. Also removed the old g711 payloaders/depayloaders.
Diffstat (limited to 'gst/rtp/gstrtp.c')
-rw-r--r--gst/rtp/gstrtp.c16
1 files changed, 12 insertions, 4 deletions
diff --git a/gst/rtp/gstrtp.c b/gst/rtp/gstrtp.c
index b412e787..e80d4d6d 100644
--- a/gst/rtp/gstrtp.c
+++ b/gst/rtp/gstrtp.c
@@ -22,8 +22,10 @@
#endif
#include "gstrtpdepay.h"
-#include "gstrtpg711pay.h"
-#include "gstrtpg711depay.h"
+#include "gstrtppcmupay.h"
+#include "gstrtppcmapay.h"
+#include "gstrtppcmadepay.h"
+#include "gstrtppcmudepay.h"
#include "gstrtpgsmpay.h"
#include "gstrtpgsmdepay.h"
#include "gstrtpamrpay.h"
@@ -58,10 +60,16 @@ plugin_init (GstPlugin * plugin)
if (!gst_rtp_amr_pay_plugin_init (plugin))
return FALSE;
- if (!gst_rtp_g711_depay_plugin_init (plugin))
+ if (!gst_rtp_pcma_depay_plugin_init (plugin))
return FALSE;
- if (!gst_rtp_g711_pay_plugin_init (plugin))
+ if (!gst_rtp_pcmu_depay_plugin_init (plugin))
+ return FALSE;
+
+ if (!gst_rtp_pcmu_pay_plugin_init (plugin))
+ return FALSE;
+
+ if (!gst_rtp_pcma_pay_plugin_init (plugin))
return FALSE;
if (!gst_rtp_mpa_depay_plugin_init (plugin))