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
This commit is contained in:
Stéphane Loeuillet 2004-05-09 22:46:06 +00:00
parent 39682f37d6
commit e7e0499884
2 changed files with 5 additions and 1 deletions

View file

@ -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):

View file

@ -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;