mf/session: Forward MR_STREAM_VOLUME_SERVICE requests to SAR node.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Andrew Eikum 2021-10-28 17:33:01 +03:00 committed by Alexandre Julliard
parent ff0a13c86e
commit 43993feb2c

View file

@ -2080,7 +2080,8 @@ static HRESULT WINAPI session_get_service_GetService(IMFGetService *iface, REFGU
{
hr = session_get_video_render_service(session, service, riid, obj);
}
else if (IsEqualGUID(service, &MR_POLICY_VOLUME_SERVICE))
else if (IsEqualGUID(service, &MR_POLICY_VOLUME_SERVICE) ||
IsEqualGUID(service, &MR_STREAM_VOLUME_SERVICE))
{
hr = session_get_audio_render_service(session, service, riid, obj);
}