Commit c7345a51 authored by Derek Lesho's avatar Derek Lesho Committed by Alexandre Julliard

winegstreamer: Implement ::ProcessMessage for audio conversion MFT.

parent 8e6a4b23
......@@ -326,9 +326,16 @@ static HRESULT WINAPI audio_converter_ProcessEvent(IMFTransform *iface, DWORD id
static HRESULT WINAPI audio_converter_ProcessMessage(IMFTransform *iface, MFT_MESSAGE_TYPE message, ULONG_PTR param)
{
FIXME("%p, %u %lu.\n", iface, message, param);
TRACE("%p, %u %lu.\n", iface, message, param);
return E_NOTIMPL;
switch(message)
{
case MFT_MESSAGE_NOTIFY_START_OF_STREAM:
return S_OK;
default:
FIXME("Unhandled message type %x.\n", message);
return E_NOTIMPL;
}
}
static HRESULT WINAPI audio_converter_ProcessInput(IMFTransform *iface, DWORD id, IMFSample *sample, DWORD flags)
......
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