2007-08-20 18:48:52 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2009-11-05 03:19:58 +00:00
|
|
|
#include "gstdtmfdetect.h"
|
2007-08-20 18:48:52 +00:00
|
|
|
#include "gstdtmfsrc.h"
|
|
|
|
#include "gstrtpdtmfsrc.h"
|
2008-03-20 01:13:01 +00:00
|
|
|
#include "gstrtpdtmfdepay.h"
|
2007-08-20 18:48:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin * plugin)
|
|
|
|
{
|
2009-11-05 03:19:58 +00:00
|
|
|
if (!gst_dtmf_detect_plugin_init (plugin))
|
|
|
|
return FALSE;
|
|
|
|
|
2007-08-20 18:48:52 +00:00
|
|
|
if (!gst_dtmf_src_plugin_init (plugin))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!gst_rtp_dtmf_src_plugin_init (plugin))
|
|
|
|
return FALSE;
|
|
|
|
|
2008-03-20 01:13:01 +00:00
|
|
|
if (!gst_rtp_dtmf_depay_plugin_init (plugin))
|
|
|
|
return FALSE;
|
|
|
|
|
2007-08-20 18:48:52 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
2009-02-20 22:41:37 +00:00
|
|
|
"dtmf", "DTMF plugins",
|
|
|
|
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|