summaryrefslogtreecommitdiffstats
path: root/gst/rtp/gstrtp.c
diff options
context:
space:
mode:
authorEdgard Lima <edgard.lima@indt.org.br>2005-11-17 18:23:23 +0000
committerEdgard Lima <edgard.lima@indt.org.br>2005-11-17 18:23:23 +0000
commit5ae66f78c51ba7a55fe486a452a795dc231a1a4d (patch)
tree9e61d6adebe44ae8391ed6528b37ef145ec7ff13 /gst/rtp/gstrtp.c
parent42c5075f1769b06cf184f95331e9753becd785f0 (diff)
Created Speex payloader and depayloader; Optimize G711 payloader to use adapter and send packets until MTU size.
Original commit message from CVS: Created Speex payloader and depayloader; Optimize G711 payloader to use adapter and send packets until MTU size.
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 07a77e48..889e3748 100644
--- a/gst/rtp/gstrtp.c
+++ b/gst/rtp/gstrtp.c
@@ -36,6 +36,8 @@
#include "gstasteriskh263.h"
#include "gstrtpmp4venc.h"
#include "gstrtpmp4vdec.h"
+#include "gstrtpspeexenc.h"
+#include "gstrtpspeexdec.h"
static gboolean
plugin_init (GstPlugin * plugin)
@@ -85,6 +87,12 @@ plugin_init (GstPlugin * plugin)
if (!gst_rtpmp4vdec_plugin_init (plugin))
return FALSE;
+ if (!gst_rtpspeexenc_plugin_init (plugin))
+ return FALSE;
+
+ if (!gst_rtpspeexdec_plugin_init (plugin))
+ return FALSE;
+
return TRUE;
}