projects
/
platform
/
upstream
/
gst-plugins-good.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
217b54a
)
Fix the StreamVolume interface not being advertised
author
Bastien Nocera
<hadess@hadess.net>
Mon, 19 Oct 2009 14:21:57 +0000
(15:21 +0100)
committer
Jan 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
patch
|
blob
|
history
diff --git
a/ext/pulse/pulsesink.c
b/ext/pulse/pulsesink.c
index 1fe2b72d4b9d4d9051be97f98100273bf4508eb5..f1907fe2eb001d420ff8fea946837f8b5d349a3e 100644
(file)
--- 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;
}