2003-06-29 19:46:12 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
2001-12-22 23:27:31 +00:00
|
|
|
#include "mulaw-encode.h"
|
|
|
|
#include "mulaw-decode.h"
|
|
|
|
|
2002-09-18 19:02:51 +00:00
|
|
|
/* elementfactory information */
|
2001-12-22 23:27:31 +00:00
|
|
|
static GstElementDetails mulawenc_details = {
|
|
|
|
"PCM to Mu Law conversion",
|
2003-07-19 23:47:41 +00:00
|
|
|
"Codec/Audio/Encoder",
|
2002-09-18 19:02:51 +00:00
|
|
|
"LGPL",
|
2001-12-22 23:27:31 +00:00
|
|
|
"Convert 16bit PCM to 8bit mu law",
|
|
|
|
VERSION,
|
|
|
|
"Zaheer Merali <zaheer@bellworldwide.net>",
|
|
|
|
"(C) 2001"
|
|
|
|
};
|
|
|
|
|
2002-09-18 19:02:51 +00:00
|
|
|
/* elementfactory information */
|
2001-12-22 23:27:31 +00:00
|
|
|
static GstElementDetails mulawdec_details = {
|
|
|
|
"Mu Law to PCM conversion",
|
2003-07-19 23:47:41 +00:00
|
|
|
"Codec/Audio/Decoder",
|
2002-09-18 19:02:51 +00:00
|
|
|
"LGPL",
|
2001-12-22 23:27:31 +00:00
|
|
|
"Convert 8bit mu law to 16bit PCM",
|
|
|
|
VERSION,
|
|
|
|
"Zaheer Merali <zaheer@bellworldwide.net>",
|
|
|
|
"(C) 2001"
|
|
|
|
};
|
|
|
|
|
|
|
|
static GstCaps*
|
|
|
|
mulaw_factory (void)
|
|
|
|
{
|
|
|
|
return
|
|
|
|
gst_caps_new (
|
|
|
|
"test_src",
|
2003-07-06 20:49:52 +00:00
|
|
|
"audio/x-mulaw",
|
2001-12-22 23:27:31 +00:00
|
|
|
gst_props_new (
|
2003-07-06 20:49:52 +00:00
|
|
|
"width", GST_PROPS_INT(8),
|
|
|
|
"depth", GST_PROPS_INT(8),
|
|
|
|
"signed", GST_PROPS_BOOLEAN(FALSE),
|
|
|
|
"rate", GST_PROPS_INT_RANGE (8000, 192000),
|
|
|
|
"channels", GST_PROPS_INT_RANGE (1, 2),
|
2001-12-22 23:27:31 +00:00
|
|
|
NULL));
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstCaps*
|
|
|
|
linear_factory (void)
|
|
|
|
{
|
|
|
|
return
|
|
|
|
gst_caps_new (
|
|
|
|
"test_sink",
|
2003-07-06 20:49:52 +00:00
|
|
|
"audio/x-raw-int",
|
2001-12-22 23:27:31 +00:00
|
|
|
gst_props_new (
|
2003-07-06 20:49:52 +00:00
|
|
|
"width", GST_PROPS_INT(16),
|
|
|
|
"depth", GST_PROPS_INT(16),
|
|
|
|
"signed", GST_PROPS_BOOLEAN(TRUE),
|
|
|
|
"endianness", GST_PROPS_INT(G_BYTE_ORDER),
|
|
|
|
"rate", GST_PROPS_INT_RANGE (8000, 192000),
|
|
|
|
"channels", GST_PROPS_INT_RANGE (1, 2),
|
2001-12-22 23:27:31 +00:00
|
|
|
NULL));
|
|
|
|
}
|
|
|
|
|
|
|
|
GstPadTemplate *mulawenc_src_template, *mulawenc_sink_template;
|
|
|
|
GstPadTemplate *mulawdec_src_template, *mulawdec_sink_template;
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
plugin_init (GModule *module, GstPlugin *plugin)
|
|
|
|
{
|
|
|
|
GstElementFactory *mulawenc_factory, *mulawdec_factory;
|
|
|
|
GstCaps* mulaw_caps, *linear_caps;
|
|
|
|
|
2002-05-03 09:59:10 +00:00
|
|
|
mulawenc_factory = gst_element_factory_new("mulawenc",GST_TYPE_MULAWENC,
|
2001-12-22 23:27:31 +00:00
|
|
|
&mulawenc_details);
|
|
|
|
g_return_val_if_fail(mulawenc_factory != NULL, FALSE);
|
2002-05-03 09:59:10 +00:00
|
|
|
mulawdec_factory = gst_element_factory_new("mulawdec",GST_TYPE_MULAWDEC,
|
2001-12-22 23:27:31 +00:00
|
|
|
&mulawdec_details);
|
|
|
|
g_return_val_if_fail(mulawdec_factory != NULL, FALSE);
|
2002-05-31 08:24:31 +00:00
|
|
|
gst_element_factory_set_rank (mulawdec_factory, GST_ELEMENT_RANK_PRIMARY);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
|
|
|
mulaw_caps = mulaw_factory ();
|
|
|
|
linear_caps = linear_factory ();
|
|
|
|
|
2002-04-11 20:42:25 +00:00
|
|
|
mulawenc_src_template = gst_pad_template_new ("src", GST_PAD_SRC, GST_PAD_ALWAYS,
|
2001-12-22 23:27:31 +00:00
|
|
|
mulaw_caps, NULL);
|
2002-04-11 20:42:25 +00:00
|
|
|
mulawenc_sink_template = gst_pad_template_new ("sink", GST_PAD_SINK, GST_PAD_ALWAYS,
|
2001-12-22 23:27:31 +00:00
|
|
|
linear_caps, NULL);
|
|
|
|
|
2002-04-11 20:42:25 +00:00
|
|
|
gst_element_factory_add_pad_template (mulawenc_factory, mulawenc_src_template);
|
|
|
|
gst_element_factory_add_pad_template (mulawenc_factory, mulawenc_sink_template);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
2002-04-11 20:42:25 +00:00
|
|
|
mulawdec_src_template = gst_pad_template_new ("src", GST_PAD_SRC, GST_PAD_ALWAYS,
|
2001-12-22 23:27:31 +00:00
|
|
|
linear_caps, NULL);
|
2002-04-11 20:42:25 +00:00
|
|
|
mulawdec_sink_template = gst_pad_template_new ("sink", GST_PAD_SINK, GST_PAD_ALWAYS,
|
2001-12-22 23:27:31 +00:00
|
|
|
mulaw_caps, NULL);
|
|
|
|
|
2002-04-11 20:42:25 +00:00
|
|
|
gst_element_factory_add_pad_template (mulawdec_factory, mulawdec_src_template);
|
|
|
|
gst_element_factory_add_pad_template (mulawdec_factory, mulawdec_sink_template);
|
2001-12-22 23:27:31 +00:00
|
|
|
|
|
|
|
gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (mulawenc_factory));
|
|
|
|
gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (mulawdec_factory));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GstPluginDesc plugin_desc = {
|
|
|
|
GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"mulaw",
|
|
|
|
plugin_init
|
|
|
|
};
|
|
|
|
|