Fix the StreamVolume interface not being advertised
authorBastien Nocera <hadess@hadess.net>
Mon, 19 Oct 2009 14:21:57 +0000 (15:21 +0100)
committerJan Schmidt <thaytan@noraisin.net>
Mon, 19 Oct 2009 14:36:20 +0000 (15:36 +0100)
gst_pulsesink_interface_supported() was missing a check for it.

https://bugzilla.gnome.org/show_bug.cgi?id=598933

ext/pulse/pulsesink.c

index 1fe2b72..f1907fe 100644 (file)
@@ -1378,6 +1378,8 @@ gst_pulsesink_interface_supported (GstImplementsInterface *
 
   if (interface_type == GST_TYPE_PROPERTY_PROBE && this->probe)
     return TRUE;
+  if (interface_type == GST_TYPE_STREAM_VOLUME)
+    return TRUE;
 
   return FALSE;
 }