mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
8cbaa9f78e
20080320011301-4f0f6-d36a5d24be20336e36c4796d75476c9b5ee1a7e1.gz
31 lines
534 B
C
31 lines
534 B
C
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "gstdtmfsrc.h"
|
|
#include "gstrtpdtmfsrc.h"
|
|
#include "gstrtpdtmfdepay.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;
|
|
|
|
|
|
if (!gst_rtp_dtmf_depay_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", "");
|