From 74f5ded1b8459c2f590037800efe8d740bf02f67 Mon Sep 17 00:00:00 2001 From: Andoni Morales Alastruey Date: Thu, 3 May 2012 23:51:14 +0200 Subject: [PATCH] dshowvideosink: lower rank of the DirectShow video sink plugin d3dvideosink should have a higher rank as it works better. --- sys/dshowvideosink/dshowvideosink.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dshowvideosink/dshowvideosink.cpp b/sys/dshowvideosink/dshowvideosink.cpp index eb704fcb85..6bec12291f 100644 --- a/sys/dshowvideosink/dshowvideosink.cpp +++ b/sys/dshowvideosink/dshowvideosink.cpp @@ -1932,7 +1932,7 @@ plugin_init (GstPlugin * plugin) { /* PRIMARY: this is the best videosink to use on windows */ if (!gst_element_register (plugin, "dshowvideosink", - GST_RANK_PRIMARY, GST_TYPE_DSHOWVIDEOSINK)) + GST_RANK_SECONDARY, GST_TYPE_DSHOWVIDEOSINK)) return FALSE; return TRUE;