summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStéphane Loeuillet <gstreamer@leroutier.net>2004-05-09 22:46:06 +0000
committerStéphane Loeuillet <gstreamer@leroutier.net>2004-05-09 22:46:06 +0000
commite7e049988429c121fcf7847a63666b80c3482376 (patch)
tree4c4c936139a7ccff56a19068653b9ada84589be9
parent39682f37d6d50fdbec08c2235a41b98cb12a2ca8 (diff)
gst/law/alaw.c: alawdec should be registered with type ALAWDEC, not ALAWENC
Original commit message from CVS: * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
-rw-r--r--ChangeLog4
-rw-r--r--gst/law/alaw.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 82b83795..4c341d11 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2004-05-10 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
+
+ * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
+
2004-05-09 Benjamin Otte <otte@gnome.org>
* ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
diff --git a/gst/law/alaw.c b/gst/law/alaw.c
index d85dd9aa..252e3c81 100644
--- a/gst/law/alaw.c
+++ b/gst/law/alaw.c
@@ -48,7 +48,7 @@ plugin_init (GstPlugin * plugin)
if (!gst_element_register (plugin, "alawenc",
GST_RANK_NONE, GST_TYPE_ALAWENC) ||
!gst_element_register (plugin, "alawdec",
- GST_RANK_PRIMARY, GST_TYPE_ALAWENC))
+ GST_RANK_PRIMARY, GST_TYPE_ALAWDEC))
return FALSE;
return TRUE;