Commit d81df26f authored by Aida Jonikienė's avatar Aida Jonikienė Committed by Alexandre Julliard

dsdmo: Only print effect_inplace_Process() FIXME once.

GTA San Andreas really spams this message in certain situations.
parent 602f68f2
......@@ -399,8 +399,19 @@ static ULONG WINAPI effect_inplace_Release(IMediaObjectInPlace *iface)
static HRESULT WINAPI effect_inplace_Process(IMediaObjectInPlace *iface, ULONG size,
BYTE *data, REFERENCE_TIME start, DWORD flags)
{
FIXME("iface %p, size %lu, data %p, start %s, flags %#lx, stub!\n",
iface, size, data, wine_dbgstr_longlong(start), flags);
static unsigned int once;
if (!once++)
{
FIXME("iface %p, size %lu, data %p, start %s, flags %#lx, stub!\n",
iface, size, data, wine_dbgstr_longlong(start), flags);
}
else
{
WARN("iface %p, size %lu, data %p, start %s, flags %#lx, stub!\n",
iface, size, data, wine_dbgstr_longlong(start), flags);
}
return E_NOTIMPL;
}
......
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