mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
7b0389b09c
Original commit message from CVS: + the last of the float caps changes ... these are a bit more pervasive
101 lines
3 KiB
C
101 lines
3 KiB
C
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
#include "alaw-encode.h"
|
|
#include "alaw-decode.h"
|
|
|
|
/* elementfactory information */
|
|
static GstElementDetails alawenc_details = {
|
|
"PCM to A Law conversion",
|
|
"Codec/Audio/Encoder",
|
|
"LGPL",
|
|
"Convert 16bit PCM to 8bit A law",
|
|
VERSION,
|
|
"Zaheer Merali <zaheer@bellworldwide.net>",
|
|
"(C) 2001"
|
|
};
|
|
|
|
/* elementfactory information */
|
|
static GstElementDetails alawdec_details = {
|
|
"A Law to PCM conversion",
|
|
"Codec/Audio/Decoder",
|
|
"LGPL",
|
|
"Convert 8bit A law to 16bit PCM",
|
|
VERSION,
|
|
"Zaheer Merali <zaheer@bellworldwide.net>",
|
|
"(C) 2001"
|
|
};
|
|
|
|
static GstCaps*
|
|
alaw_factory (void)
|
|
{
|
|
return
|
|
gst_caps_new (
|
|
"test_src",
|
|
"audio/x-alaw",
|
|
gst_props_new (
|
|
"rate", GST_PROPS_INT_RANGE (8000, 192000),
|
|
"channels", GST_PROPS_INT_RANGE (1, 2),
|
|
NULL));
|
|
}
|
|
|
|
static GstCaps*
|
|
linear_factory (void)
|
|
{
|
|
return
|
|
gst_caps_new (
|
|
"test_sink",
|
|
"audio/x-raw-int",
|
|
gst_props_new (
|
|
"width", GST_PROPS_INT(16),
|
|
"depth", GST_PROPS_INT(16),
|
|
"endianness", GST_PROPS_INT(G_BYTE_ORDER),
|
|
"signed", GST_PROPS_BOOLEAN(TRUE),
|
|
"rate", GST_PROPS_INT_RANGE (8000, 192000),
|
|
"channels", GST_PROPS_INT_RANGE (1, 2),
|
|
NULL));
|
|
}
|
|
|
|
GstPadTemplate *alawenc_src_template, *alawenc_sink_template;
|
|
GstPadTemplate *alawdec_src_template, *alawdec_sink_template;
|
|
|
|
static gboolean
|
|
plugin_init (GModule *module, GstPlugin *plugin)
|
|
{
|
|
GstElementFactory *alawenc_factory, *alawdec_factory;
|
|
GstCaps* alaw_caps, *linear_caps;
|
|
|
|
alawenc_factory = gst_element_factory_new("alawenc",GST_TYPE_ALAWENC,
|
|
&alawenc_details);
|
|
g_return_val_if_fail(alawenc_factory != NULL, FALSE);
|
|
alawdec_factory = gst_element_factory_new("alawdec",GST_TYPE_ALAWDEC,
|
|
&alawdec_details);
|
|
g_return_val_if_fail(alawdec_factory != NULL, FALSE);
|
|
gst_element_factory_set_rank (alawdec_factory, GST_ELEMENT_RANK_PRIMARY);
|
|
|
|
alaw_caps = alaw_factory ();
|
|
linear_caps = linear_factory ();
|
|
|
|
alawenc_src_template = gst_pad_template_new ("src",GST_PAD_SRC,GST_PAD_ALWAYS,alaw_caps, NULL);
|
|
alawenc_sink_template = gst_pad_template_new ("sink",GST_PAD_SINK,GST_PAD_ALWAYS,linear_caps, NULL);
|
|
gst_element_factory_add_pad_template (alawenc_factory, alawenc_src_template);
|
|
gst_element_factory_add_pad_template (alawenc_factory, alawenc_sink_template);
|
|
|
|
alawdec_src_template = gst_pad_template_new ("src",GST_PAD_SRC,GST_PAD_ALWAYS,linear_caps, NULL);
|
|
alawdec_sink_template = gst_pad_template_new ("sink",GST_PAD_SINK,GST_PAD_ALWAYS,alaw_caps, NULL);
|
|
|
|
gst_element_factory_add_pad_template (alawdec_factory, alawdec_src_template);
|
|
gst_element_factory_add_pad_template (alawdec_factory, alawdec_sink_template);
|
|
gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (alawenc_factory));
|
|
gst_plugin_add_feature (plugin, GST_PLUGIN_FEATURE (alawdec_factory));
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
GstPluginDesc plugin_desc = {
|
|
GST_VERSION_MAJOR,
|
|
GST_VERSION_MINOR,
|
|
"alaw",
|
|
plugin_init
|
|
};
|
|
|