gst/mpegstream/gstdvddemux.c: Push the rank up to SECONDARY+1 so that dvddemux is preferred over mpegdemux for MPEG-2...

Original commit message from CVS:
* gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
Push the rank up to SECONDARY+1 so that dvddemux is preferred over
mpegdemux for MPEG-2 video streams.
This commit is contained in:
Jan Schmidt 2006-02-21 16:24:10 +00:00
parent 60af430c7f
commit 1d66c5e4e9
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2006-02-21 Jan Schmidt <thaytan@mad.scientist.com>
* gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
Push the rank up to SECONDARY+1 so that dvddemux is preferred over
mpegdemux for MPEG-2 video streams.
2006-02-20 Jan Schmidt <thaytan@mad.scientist.com>
* configure.ac:

2
common

@ -1 +1 @@
Subproject commit c30611ac38336030fed6d258c6e558cc537adbc5
Subproject commit c09cd18d328f740ac532377fa5605b0f712cc6fd

View file

@ -1182,5 +1182,5 @@ gboolean
gst_dvd_demux_plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "dvddemux",
GST_RANK_SECONDARY, GST_TYPE_DVD_DEMUX);
GST_RANK_SECONDARY + 1, GST_TYPE_DVD_DEMUX);
}