From c12772c616d48bd98a5e49507cdd10d894720dfb Mon Sep 17 00:00:00 2001 From: Flavio Oliveira Date: Tue, 25 Oct 2005 19:19:38 +0000 Subject: G711 payloader and depayloader created by Edgard Lima (it supports mulaw and alaw (dec)encoders) Original commit message from CVS: G711 payloader and depayloader created by Edgard Lima (it supports mulaw and alaw (dec)encoders) --- gst/rtp/gstrtp.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'gst/rtp/gstrtp.c') diff --git a/gst/rtp/gstrtp.c b/gst/rtp/gstrtp.c index a967495c..dd8457b4 100644 --- a/gst/rtp/gstrtp.c +++ b/gst/rtp/gstrtp.c @@ -22,6 +22,8 @@ #endif #include "gstrtpdec.h" +#include "gstrtpg711enc.h" +#include "gstrtpg711dec.h" #include "gstrtpgsmenc.h" #include "gstrtpgsmparse.h" #include "gstrtpamrenc.h" @@ -53,6 +55,12 @@ plugin_init (GstPlugin * plugin) if (!gst_rtpamrenc_plugin_init (plugin)) return FALSE; + if (!gst_rtpg711dec_plugin_init (plugin)) + return FALSE; + + if (!gst_rtpg711enc_plugin_init (plugin)) + return FALSE; + if (!gst_rtpmpadec_plugin_init (plugin)) return FALSE; -- cgit