diff options
Diffstat (limited to 'gst/rtp/gstrtp.c')
-rw-r--r-- | gst/rtp/gstrtp.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gst/rtp/gstrtp.c b/gst/rtp/gstrtp.c index 5cf19a55..32d8158b 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 "gstrtpg729depay.h" +#include "gstrtpg729pay.h" #include "gstrtpgsmpay.h" #include "gstrtpgsmdepay.h" #include "gstrtpamrpay.h" @@ -84,6 +86,12 @@ plugin_init (GstPlugin * plugin) if (!gst_rtp_ilbc_depay_plugin_init (plugin)) return FALSE; + if (!gst_rtp_g729_depay_plugin_init (plugin)) + return FALSE; + + if (!gst_rtp_g729_pay_plugin_init (plugin)) + return FALSE; + if (!gst_rtp_gsm_depay_plugin_init (plugin)) return FALSE; |