winegstreamer: Handle EnableDiscreteOutput and SpeakerConfig settings in WMSyncReader_SetOutputSetting().

Resident Evil 5 cutscenes have audio and don't hang.

Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Zebediah Figura <zfigura@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Andrey Gusev 2022-02-08 13:45:52 +02:00 committed by Alexandre Julliard
parent 62f9bd39a2
commit 766617d6f0
1 changed files with 10 additions and 0 deletions

View File

@ -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));