fix rank of asfdemux

Original commit message from CVS:
fix rank of asfdemux
This commit is contained in:
Christian Schaller 2006-02-17 17:54:37 +00:00
parent 11291dda9d
commit 97b5add7e6
2 changed files with 15 additions and 4 deletions

View file

@ -1,3 +1,14 @@
2006-02-17 Christian Schaller <christian@fluendo.com>
Fixes bug 331579
* gst/asfdemux/gstasf.c: (plugin_init):
2006-02-17 Christian Schaller <set EMAIL_ADDRESS environment variable>
reviewed by: <delete if not using a buddy>
* configure.ac:
2006-02-17 Jan Schmidt <thaytan@mad.scientist.com>
* configure.ac:

View file

@ -29,10 +29,10 @@
static gboolean
plugin_init (GstPlugin * plugin)
{
if (!gst_element_register (plugin, "asfdemux", GST_RANK_PRIMARY, GST_TYPE_ASF_DEMUX)) /*
|| !gst_element_register (plugin, "asfmux", GST_RANK_NONE,
GST_TYPE_ASFMUX))
*/
if (!gst_element_register (plugin, "asfdemux", GST_RANK_SECONDARY, GST_TYPE_ASF_DEMUX)) /*
|| !gst_element_register (plugin, "asfmux", GST_RANK_NONE,
GST_TYPE_ASFMUX))
*/
return FALSE;
return TRUE;