diff options
author | Wim Taymans <wim.taymans@collabora.co.uk> | 2009-06-05 18:55:02 +0200 |
---|---|---|
committer | Wim Taymans <wim.taymans@collabora.co.uk> | 2009-06-05 18:57:30 +0200 |
commit | ace2a84447e336c8449dbd99c4d46684fe42df68 (patch) | |
tree | a75705f1ed4c3ea73b1d8909f070e1cd12b24de6 /gst/rtp/gstrtp.c | |
parent | ec554a7f024aeb387b5dd456fa4bef8af0330ede (diff) |
celtdepay: add CELT depayloader
Diffstat (limited to 'gst/rtp/gstrtp.c')
-rw-r--r-- | gst/rtp/gstrtp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gst/rtp/gstrtp.c b/gst/rtp/gstrtp.c index 8fbf17fb..f22b6277 100644 --- a/gst/rtp/gstrtp.c +++ b/gst/rtp/gstrtp.c @@ -23,6 +23,7 @@ #include "gstrtpdepay.h" #include "gstrtpac3depay.h" +#include "gstrtpceltdepay.h" #include "gstrtpceltpay.h" #include "gstrtpdvdepay.h" #include "gstrtpdvpay.h" @@ -87,6 +88,9 @@ plugin_init (GstPlugin * plugin) if (!gst_rtp_ac3_depay_plugin_init (plugin)) return FALSE; + if (!gst_rtp_celt_depay_plugin_init (plugin)) + return FALSE; + if (!gst_rtp_celt_pay_plugin_init (plugin)) return FALSE; |