From 1d66c5e4e9cb4a8e4b71a893f220d22393e80a74 Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Tue, 21 Feb 2006 16:24:10 +0000 Subject: [PATCH] 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. --- ChangeLog | 6 ++++++ common | 2 +- gst/mpegstream/gstdvddemux.c | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index bd966cbf54..ee060477ec 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-02-21 Jan Schmidt + + * 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 * configure.ac: diff --git a/common b/common index c30611ac38..c09cd18d32 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit c30611ac38336030fed6d258c6e558cc537adbc5 +Subproject commit c09cd18d328f740ac532377fa5605b0f712cc6fd diff --git a/gst/mpegstream/gstdvddemux.c b/gst/mpegstream/gstdvddemux.c index 52c31a59c2..faf1fe99fa 100644 --- a/gst/mpegstream/gstdvddemux.c +++ b/gst/mpegstream/gstdvddemux.c @@ -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); }