mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 03:56:16 +00:00
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:
parent
217b54a8f6
commit
a1ac55c7a5
1 changed files with 2 additions and 0 deletions
|
@ -1378,6 +1378,8 @@ gst_pulsesink_interface_supported (GstImplementsInterface *
|
||||||
|
|
||||||
if (interface_type == GST_TYPE_PROPERTY_PROBE && this->probe)
|
if (interface_type == GST_TYPE_PROPERTY_PROBE && this->probe)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
if (interface_type == GST_TYPE_STREAM_VOLUME)
|
||||||
|
return TRUE;
|
||||||
|
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue