summaryrefslogtreecommitdiffstats
path: root/gst/law
diff options
context:
space:
mode:
authorLeif Johnson <leif@ambient.2y.net>2003-11-16 22:02:22 +0000
committerLeif Johnson <leif@ambient.2y.net>2003-11-16 22:02:22 +0000
commit5c244e8374f61481f7296c9bad5c6eb34001c4a2 (patch)
tree7be1e9db0a6a2fd0bf08d0233f64af6dd3d4d567 /gst/law
parent03f1b5c7976e49883432e96e9cb87adb62d19de9 (diff)
+ checking in plugin category changes
Original commit message from CVS: + checking in plugin category changes
Diffstat (limited to 'gst/law')
-rw-r--r--gst/law/alaw-decode.c2
-rw-r--r--gst/law/alaw-encode.c2
-rw-r--r--gst/law/alaw.c6
-rw-r--r--gst/law/mulaw-decode.c2
-rw-r--r--gst/law/mulaw-encode.c2
-rw-r--r--gst/law/mulaw.c10
6 files changed, 12 insertions, 12 deletions
diff --git a/gst/law/alaw-decode.c b/gst/law/alaw-decode.c
index c0eb3c14..d656fdd1 100644
--- a/gst/law/alaw-decode.c
+++ b/gst/law/alaw-decode.c
@@ -30,7 +30,7 @@ extern GstPadTemplate *alawdec_src_template, *alawdec_sink_template;
/* elementfactory information */
static GstElementDetails alawdec_details = {
"A Law to PCM conversion",
- "Codec/Audio/Decoder",
+ "Codec/Decoder/Audio",
"Convert 8bit A law to 16bit PCM",
"Zaheer Merali <zaheer@bellworldwide.net>"
};
diff --git a/gst/law/alaw-encode.c b/gst/law/alaw-encode.c
index be3ec77a..d13427bb 100644
--- a/gst/law/alaw-encode.c
+++ b/gst/law/alaw-encode.c
@@ -30,7 +30,7 @@ extern GstPadTemplate *alawenc_src_template, *alawenc_sink_template;
/* elementfactory information */
static GstElementDetails alawenc_details = {
"PCM to A Law conversion",
- "Codec/Audio/Encoder",
+ "Codec/Encoder/Audio",
"Convert 16bit PCM to 8bit A law",
"Zaheer Merali <zaheer@bellworldwide.net>"
};
diff --git a/gst/law/alaw.c b/gst/law/alaw.c
index a9c2447a..04c149ac 100644
--- a/gst/law/alaw.c
+++ b/gst/law/alaw.c
@@ -34,7 +34,7 @@ linear_factory (void)
NULL));
}
-GstPadTemplate *alawenc_src_template, *alawenc_sink_template;
+GstPadTemplate *alawenc_src_template, *alawenc_sink_template;
GstPadTemplate *alawdec_src_template, *alawdec_sink_template;
static gboolean
@@ -44,13 +44,13 @@ plugin_init (GstPlugin *plugin)
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);
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);
-
+
if (!gst_element_register (plugin, "alawenc",
GST_RANK_NONE, GST_TYPE_ALAWENC) ||
!gst_element_register (plugin, "alawdec",
diff --git a/gst/law/mulaw-decode.c b/gst/law/mulaw-decode.c
index 5986400e..725dc837 100644
--- a/gst/law/mulaw-decode.c
+++ b/gst/law/mulaw-decode.c
@@ -29,7 +29,7 @@ extern GstPadTemplate *mulawdec_src_template, *mulawdec_sink_template;
/* elementfactory information */
static GstElementDetails mulawdec_details = {
"Mu Law to PCM conversion",
- "Codec/Audio/Decoder",
+ "Codec/Decoder/Audio",
"Convert 8bit mu law to 16bit PCM",
"Zaheer Merali <zaheer@bellworldwide.net>"
};
diff --git a/gst/law/mulaw-encode.c b/gst/law/mulaw-encode.c
index 414ac7fc..97e861bb 100644
--- a/gst/law/mulaw-encode.c
+++ b/gst/law/mulaw-encode.c
@@ -29,7 +29,7 @@ extern GstPadTemplate *mulawenc_src_template, *mulawenc_sink_template;
/* elementfactory information */
static GstElementDetails mulawenc_details = {
"PCM to Mu Law conversion",
- "Codec/Audio/Encoder",
+ "Codec/Encoder/Audio",
"Convert 16bit PCM to 8bit mu law",
"Zaheer Merali <zaheer@bellworldwide.net>"
};
diff --git a/gst/law/mulaw.c b/gst/law/mulaw.c
index 368bea89..611dec0a 100644
--- a/gst/law/mulaw.c
+++ b/gst/law/mulaw.c
@@ -7,7 +7,7 @@
static GstCaps*
mulaw_factory (void)
{
- return
+ return
gst_caps_new (
"test_src",
"audio/x-mulaw",
@@ -23,7 +23,7 @@ mulaw_factory (void)
static GstCaps*
linear_factory (void)
{
- return
+ return
gst_caps_new (
"test_sink",
"audio/x-raw-int",
@@ -37,7 +37,7 @@ linear_factory (void)
NULL));
}
-GstPadTemplate *mulawenc_src_template, *mulawenc_sink_template;
+GstPadTemplate *mulawenc_src_template, *mulawenc_sink_template;
GstPadTemplate *mulawdec_src_template, *mulawdec_sink_template;
static gboolean
@@ -47,7 +47,7 @@ plugin_init (GstPlugin *plugin)
mulaw_caps = mulaw_factory ();
linear_caps = linear_factory ();
-
+
mulawenc_src_template = gst_pad_template_new ("src", GST_PAD_SRC, GST_PAD_ALWAYS,
mulaw_caps, NULL);
mulawenc_sink_template = gst_pad_template_new ("sink", GST_PAD_SINK, GST_PAD_ALWAYS,
@@ -57,7 +57,7 @@ plugin_init (GstPlugin *plugin)
linear_caps, NULL);
mulawdec_sink_template = gst_pad_template_new ("sink", GST_PAD_SINK, GST_PAD_ALWAYS,
mulaw_caps, NULL);
-
+
if (!gst_element_register (plugin, "mulawenc",
GST_RANK_NONE, GST_TYPE_MULAWENC) ||
!gst_element_register (plugin, "mulawdec",