summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2009-10-19 15:21:57 +0100
committerJan Schmidt <thaytan@noraisin.net>2009-10-19 15:36:20 +0100
commita1ac55c7a5693a643ccf918e2a10ebc76aa19db0 (patch)
treefa13e1066c78c62be0ec58b6e04186d88c259a6a
parent217b54a8f6677f9965765bca614bca9b97795eed (diff)
Fix the StreamVolume interface not being advertised
gst_pulsesink_interface_supported() was missing a check for it. https://bugzilla.gnome.org/show_bug.cgi?id=598933
-rw-r--r--ext/pulse/pulsesink.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/pulse/pulsesink.c b/ext/pulse/pulsesink.c
index 1fe2b72d4..f1907fe2e 100644
--- a/ext/pulse/pulsesink.c
+++ b/ext/pulse/pulsesink.c
@@ -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;
}