mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-19 13:55:41 +00:00
fix rank of asfdemux
Original commit message from CVS: fix rank of asfdemux
This commit is contained in:
parent
11291dda9d
commit
97b5add7e6
2 changed files with 15 additions and 4 deletions
11
ChangeLog
11
ChangeLog
|
@ -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>
|
2006-02-17 Jan Schmidt <thaytan@mad.scientist.com>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
|
@ -29,10 +29,10 @@
|
||||||
static gboolean
|
static gboolean
|
||||||
plugin_init (GstPlugin * plugin)
|
plugin_init (GstPlugin * plugin)
|
||||||
{
|
{
|
||||||
if (!gst_element_register (plugin, "asfdemux", GST_RANK_PRIMARY, GST_TYPE_ASF_DEMUX)) /*
|
if (!gst_element_register (plugin, "asfdemux", GST_RANK_SECONDARY, GST_TYPE_ASF_DEMUX)) /*
|
||||||
|| !gst_element_register (plugin, "asfmux", GST_RANK_NONE,
|
|| !gst_element_register (plugin, "asfmux", GST_RANK_NONE,
|
||||||
GST_TYPE_ASFMUX))
|
GST_TYPE_ASFMUX))
|
||||||
*/
|
*/
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
Loading…
Reference in a new issue