summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtp.c
diff options
context:
space:
mode:
authormersad <mersad@axis.com>2008-06-18 10:12:57 +0000
committerWim Taymans <wim.taymans@gmail.com>2008-06-18 10:12:57 +0000
commite3141bbb49bd281fb1511ba958000c3f1471a6a3 (patch)
treec23476b0576009bd6fa76186e4ed2bef62f39ab5 /gst/rtp/gstrtp.c
parent198224ef585541d4e82728fc3c60e132b8cee29c (diff)
gst/rtp/: Added G726 pay/depayloaders. Fixes #538891.
Original commit message from CVS: Patch by: mersad <mersad at axis dot com> * gst/rtp/Makefile.am: * gst/rtp/gstrtp.c: (plugin_init): * gst/rtp/gstrtpg726depay.c: (gst_rtp_g726_depay_base_init), (gst_rtp_g726_depay_class_init), (gst_rtp_g726_depay_init), (gst_rtp_g726_depay_setcaps), (gst_rtp_g726_depay_process), (gst_rtp_g726_depay_plugin_init): * gst/rtp/gstrtpg726depay.h: * gst/rtp/gstrtpg726pay.c: (gst_rtp_g726_pay_base_init), (gst_rtp_g726_pay_class_init), (gst_rtp_g726_pay_init), (gst_rtp_g726_pay_setcaps), (gst_rtp_g726_pay_plugin_init): * gst/rtp/gstrtpg726pay.h: Added G726 pay/depayloaders. Fixes #538891.
Diffstat (limited to 'gst/rtp/gstrtp.c')
-rw-r--r--gst/rtp/gstrtp.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gst/rtp/gstrtp.c b/gst/rtp/gstrtp.c
index 32d8158b..2dcc2269 100644
--- a/gst/rtp/gstrtp.c
+++ b/gst/rtp/gstrtp.c
@@ -31,6 +31,8 @@
#include "gstrtppcmapay.h"
#include "gstrtppcmadepay.h"
#include "gstrtppcmudepay.h"
+#include "gstrtpg726depay.h"
+#include "gstrtpg726pay.h"
#include "gstrtpg729depay.h"
#include "gstrtpg729pay.h"
#include "gstrtpgsmpay.h"
@@ -86,6 +88,12 @@ plugin_init (GstPlugin * plugin)
if (!gst_rtp_ilbc_depay_plugin_init (plugin))
return FALSE;
+ if (!gst_rtp_g726_depay_plugin_init (plugin))
+ return FALSE;
+
+ if (!gst_rtp_g726_pay_plugin_init (plugin))
+ return FALSE;
+
if (!gst_rtp_g729_depay_plugin_init (plugin))
return FALSE;