summaryrefslogtreecommitdiffstats
path: root/gst/law/alaw.c
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/alaw.c
parent03f1b5c7976e49883432e96e9cb87adb62d19de9 (diff)
+ checking in plugin category changes
Original commit message from CVS: + checking in plugin category changes
Diffstat (limited to 'gst/law/alaw.c')
-rw-r--r--gst/law/alaw.c6
1 files changed, 3 insertions, 3 deletions
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",