diff options
author | Youness Alaoui <youness.alaoui@collabora.co.uk> | 2008-03-20 01:13:01 +0000 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2009-02-21 17:48:04 +0100 |
commit | 8cbaa9f78e59595b6e0e7f49c53beb5f3d64b672 (patch) | |
tree | 2233a15ae875ea045e409e495e7df121198b8945 /gst/dtmf/gstdtmf.c | |
parent | 3f8af94593de1390336960fa9e70ceaa0ff7b633 (diff) | |
download | gstreamer-plugins-bad-8cbaa9f78e59595b6e0e7f49c53beb5f3d64b672.tar.gz |
[MOVED FROM GST-P-FARSIGHT] Adding support for rtpdtmfdepay
20080320011301-4f0f6-d36a5d24be20336e36c4796d75476c9b5ee1a7e1.gz
Diffstat (limited to 'gst/dtmf/gstdtmf.c')
-rw-r--r-- | gst/dtmf/gstdtmf.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gst/dtmf/gstdtmf.c b/gst/dtmf/gstdtmf.c index 308688574..86bbafa58 100644 --- a/gst/dtmf/gstdtmf.c +++ b/gst/dtmf/gstdtmf.c @@ -5,6 +5,7 @@ #include "gstdtmfsrc.h" #include "gstrtpdtmfsrc.h" +#include "gstrtpdtmfdepay.h" static gboolean @@ -17,6 +18,9 @@ plugin_init (GstPlugin * plugin) return FALSE; + if (!gst_rtp_dtmf_depay_plugin_init (plugin)) + return FALSE; + return TRUE; } |