Commit 766617d6 authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

winegstreamer: Handle EnableDiscreteOutput and SpeakerConfig settings in…

winegstreamer: Handle EnableDiscreteOutput and SpeakerConfig settings in WMSyncReader_SetOutputSetting(). Resident Evil 5 cutscenes have audio and don't hang. Signed-off-by: 's avatarAndrey Gusev <andrey.goosev@gmail.com> Signed-off-by: 's avatarZebediah Figura <zfigura@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 62f9bd39
......@@ -271,6 +271,16 @@ static HRESULT WINAPI WMSyncReader_SetOutputSetting(IWMSyncReader2 *iface, DWORD
FIXME("Ignoring VideoSampleDurations setting.\n");
return S_OK;
}
if (!wcscmp(name, L"EnableDiscreteOutput"))
{
FIXME("Ignoring EnableDiscreteOutput setting.\n");
return S_OK;
}
if (!wcscmp(name, L"SpeakerConfig"))
{
FIXME("Ignoring SpeakerConfig setting.\n");
return S_OK;
}
else
{
FIXME("Unknown setting %s; returning E_NOTIMPL.\n", debugstr_w(name));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment