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
This commit is contained in:
Bastien Nocera 2009-10-19 15:21:57 +01:00 committed by Jan Schmidt
parent 217b54a8f6
commit a1ac55c7a5

View 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;
}