winegstreamer: Correct mistaken enum value in ProcessMessage.

This is the message session relies on succeeding.

Signed-off-by: Derek Lesho <dlesho@codeweavers.com>
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Derek Lesho 2021-01-18 14:30:43 -05:00 committed by Alexandre Julliard
parent cc116548fd
commit aae9333cd2
1 changed files with 1 additions and 1 deletions

View File

@ -517,7 +517,7 @@ static HRESULT WINAPI audio_converter_ProcessMessage(IMFTransform *iface, MFT_ME
switch(message)
{
case MFT_MESSAGE_NOTIFY_START_OF_STREAM:
case MFT_MESSAGE_NOTIFY_BEGIN_STREAMING:
return S_OK;
default:
FIXME("Unhandled message type %x.\n", message);