diff options
author | Wim Taymans <wim.taymans@collabora.co.uk> | 2010-09-30 18:34:04 +0200 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2010-09-30 18:34:36 +0200 |
commit | 78e4a260b4694b29db18242216b0975ec05185e5 (patch) | |
tree | c66718b23af2fce340ef27eb40783e20cb6efdc7 /gst/rtp/gstrtp.c | |
parent | 2c2c90a7235f3adfa71a1249b8f7e2ffa1233d6a (diff) |
rtp: add G722 pay and depayloader
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 852906efa..339ff9747 100644 --- a/gst/rtp/gstrtp.c +++ b/gst/rtp/gstrtp.c @@ -35,6 +35,8 @@ #include "gstrtppcmapay.h" #include "gstrtppcmadepay.h" #include "gstrtppcmudepay.h" +#include "gstrtpg722depay.h" +#include "gstrtpg722pay.h" #include "gstrtpg723depay.h" #include "gstrtpg723pay.h" #include "gstrtpg726depay.h" @@ -119,6 +121,12 @@ plugin_init (GstPlugin * plugin) if (!gst_rtp_ilbc_depay_plugin_init (plugin)) return FALSE; + if (!gst_rtp_g722_depay_plugin_init (plugin)) + return FALSE; + + if (!gst_rtp_g722_pay_plugin_init (plugin)) + return FALSE; + if (!gst_rtp_g723_depay_plugin_init (plugin)) return FALSE; |