Anton Baskanov (@baskanov) commented about dlls/amstream/ddrawstream.c:
+ +static ULONG WINAPI ddraw_mem_allocator_AddRef(IMemAllocator *iface) +{ + struct ddraw_stream *stream = impl_from_IMemAllocator(iface); + return IAMMediaStream_AddRef(&stream->IAMMediaStream_iface); +} + +static ULONG WINAPI ddraw_mem_allocator_Release(IMemAllocator *iface) +{ + struct ddraw_stream *stream = impl_from_IMemAllocator(iface); + return IAMMediaStream_Release(&stream->IAMMediaStream_iface); +} + +static HRESULT WINAPI ddraw_mem_allocator_SetProperties(IMemAllocator *iface, ALLOCATOR_PROPERTIES *request, ALLOCATOR_PROPERTIES *actual) +{ + return E_NOTIMPL; Please add `FIXME()`s to the stub functions:
FIXME("iface %p, request %p, actual %p, stub!\n");
return E_NOTIMPL;
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/7715#note_99674