gstreamer/gst/dtmf/gstdtmf.c
Youness Alaoui 2a45c1b9d4 [MOVED FROM GST-P-FARSIGHT] Added dtmfsrc, a DTMF Tone Generator, and made it part of the 'dtmf' plugin.
20070820184852-4f0f6-a0d85e67708290aebafa89ab79d3cedd5815b620.gz
2009-02-21 17:47:59 +01:00

27 lines
438 B
C

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "gstdtmfsrc.h"
#include "gstrtpdtmfsrc.h"
static gboolean
plugin_init (GstPlugin * plugin)
{
if (!gst_dtmf_src_plugin_init (plugin))
return FALSE;
if (!gst_rtp_dtmf_src_plugin_init (plugin))
return FALSE;
return TRUE;
}
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
GST_VERSION_MINOR,
"dtmf",
"DTMF plugins",
plugin_init, "0.1" , "LGPL", "DTMF", "");