[MOVED FROM GST-P-FARSIGHT] Adding necessary files for rtpdtmfdepay
[platform/upstream/gstreamer.git] / gst / dtmf / gstdtmf.c
1
2 #ifdef HAVE_CONFIG_H
3 #include "config.h"
4 #endif
5
6 #include "gstdtmfsrc.h"
7 #include "gstrtpdtmfsrc.h"
8
9
10 static gboolean
11 plugin_init (GstPlugin * plugin)
12 {
13   if (!gst_dtmf_src_plugin_init (plugin))
14     return FALSE;
15
16   if (!gst_rtp_dtmf_src_plugin_init (plugin))
17     return FALSE;
18
19
20   return TRUE;
21 }
22
23 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
24     GST_VERSION_MINOR,
25     "dtmf",
26     "DTMF plugins",
27     plugin_init, "0.1" , "LGPL", "DTMF", "");