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:
parent
62f9bd39a2
commit
766617d6f0
|
@ -271,6 +271,16 @@ static HRESULT WINAPI WMSyncReader_SetOutputSetting(IWMSyncReader2 *iface, DWORD
|
||||||
FIXME("Ignoring VideoSampleDurations setting.\n");
|
FIXME("Ignoring VideoSampleDurations setting.\n");
|
||||||
return S_OK;
|
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
|
else
|
||||||
{
|
{
|
||||||
FIXME("Unknown setting %s; returning E_NOTIMPL.\n", debugstr_w(name));
|
FIXME("Unknown setting %s; returning E_NOTIMPL.\n", debugstr_w(name));
|
||||||
|
|
Loading…
Reference in New Issue