[MOVED FROM GST-P-FARSIGHT] Do wierd casting of the volume to make MSVC happy
[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 #include "gstrtpdtmfdepay.h"
9
10
11 static gboolean
12 plugin_init (GstPlugin * plugin)
13 {
14   if (!gst_dtmf_src_plugin_init (plugin))
15     return FALSE;
16
17   if (!gst_rtp_dtmf_src_plugin_init (plugin))
18     return FALSE;
19
20
21   if (!gst_rtp_dtmf_depay_plugin_init (plugin))
22     return FALSE;
23
24   return TRUE;
25 }
26
27 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
28     GST_VERSION_MINOR,
29     "dtmf",
30     "DTMF plugins",
31     plugin_init, "0.1" , "LGPL", "DTMF", "");