pulse: Increase ranks to PRIMARY + 10
authorDavid Schleef <ds@schleef.org>
Mon, 4 Jul 2011 02:51:32 +0000 (19:51 -0700)
committerDavid Schleef <ds@schleef.org>
Mon, 4 Jul 2011 02:53:42 +0000 (19:53 -0700)
So that pulsesrc/pulsesink get chosen over other possible PRIMARY
src/sinks by autoaudiosink.  Presumably, if pulse is available, it
is always preferred over another src/sink.

Fixes: #647540.

ext/pulse/plugin.c

index beb8848..3abc26f 100644 (file)
@@ -41,11 +41,11 @@ plugin_init (GstPlugin * plugin)
   bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
 #endif
 
-  if (!gst_element_register (plugin, "pulsesink", GST_RANK_PRIMARY,
+  if (!gst_element_register (plugin, "pulsesink", GST_RANK_PRIMARY + 10,
           GST_TYPE_PULSESINK))
     return FALSE;
 
-  if (!gst_element_register (plugin, "pulsesrc", GST_RANK_PRIMARY,
+  if (!gst_element_register (plugin, "pulsesrc", GST_RANK_PRIMARY + 10,
           GST_TYPE_PULSESRC))
     return FALSE;